/* ============================================================
   SERVICES — shared styles for all service pages + nav dropdown
   ============================================================ */

/* ── Services dropdown in nav ── */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--d-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--teal);
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__dropdown:hover .nav__dropdown-trigger,
.nav__dropdown-trigger:hover { color: #fff; }
.nav__dropdown:hover .nav__dropdown-trigger::after { left: 0; right: 0; }

.nav__dropdown-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.25s;
  opacity: 0.5;
}
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); opacity: 1; }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 240px;
  padding: 20px 8px 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 300;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  inset: 16px 0 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  z-index: -1;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.nav__dropdown-menu a::after { display: none !important; }

/* Mobile services links */
.nav__mobile-services-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 12px 24px 4px;
  display: block;
}

/* ── Service page shared layout ── */
.sv-hero {
  padding: 160px clamp(24px, 6vw, 100px) 100px;
  background: var(--d-bg);
  position: relative;
  overflow: hidden;
}
.sv-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(23,85,84,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.sv-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1eb5a8;
  margin-bottom: 28px;
}
.sv-hero__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #1eb5a8;
}
.sv-hero__h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 450;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 28px;
  max-width: 760px;
}
.sv-hero__em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: #1eb5a8;
  text-shadow: 0 0 18px rgba(30,181,168,0.25), 0 0 40px rgba(30,181,168,0.1);
}
.sv-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 0 48px;
}
.sv-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── What's included ── */
.sv-included {
  padding: 100px clamp(24px, 6vw, 100px);
  background: var(--d-surface);
}
.sv-included__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sv-included__head {
  margin-bottom: 56px;
}
.sv-included__h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 450;
  color: #fff;
  margin: 0 0 12px;
}
.sv-included__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.sv-included__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.sv-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.sv-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(30,181,168,0.07);
  transform: translateY(-4px);
}
.sv-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(30,181,168,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sv-card__icon svg {
  width: 20px;
  height: 20px;
  color: #1eb5a8;
}
.sv-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.sv-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Process strip ── */
.sv-process {
  padding: 100px clamp(24px, 6vw, 100px);
  background: var(--d-bg);
}
.sv-process__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sv-process__h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 450;
  color: #fff;
  margin: 0 0 56px;
}
.sv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.sv-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(30,181,168,0.12), rgba(30,181,168,0.05));
  pointer-events: none;
}
.sv-step {
  padding: 0 24px 0 0;
  position: relative;
}
.sv-step__num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #1eb5a8;
  margin-bottom: 16px;
  display: block;
}
.sv-step__title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.sv-step__text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Results / social proof ── */
.sv-results {
  padding: 80px clamp(24px, 6vw, 100px);
  background: var(--d-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sv-results__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  text-align: center;
}
.sv-results__quote {
  max-width: 680px;
}
.sv-results__quote blockquote {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  font-style: normal;
  font-weight: 400;
  margin: 0 0 16px;
}
.sv-results__quote cite {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sv-results__stats {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
}
.sv-results__stats > div {
  flex: 1;
  min-width: 120px;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sv-results__stats > div:last-child { border-right: none; }
.sv-results__stats > div::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #1eb5a8;
  border-radius: 2px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.sv-stat__num {
  font-family: 'Urbanist', sans-serif;
  font-size: 38px;
  font-weight: 450;
  color: #fff;
  line-height: 1;
  display: block;
}
.sv-stat__label {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

/* ── Bottom CTA ── */
.sv-cta {
  padding: 120px clamp(24px, 6vw, 100px);
  background: var(--d-bg);
  text-align: center;
}
.sv-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--d-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 60px 48px;
}
.sv-cta__h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 450;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
  text-transform: capitalize;
}
.sv-cta__em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: #1eb5a8;
  text-shadow: 0 0 18px rgba(30,181,168,0.25), 0 0 40px rgba(30,181,168,0.1);
  text-transform: none;
}
.sv-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 40px;
}
.sv-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.sv-cta__trust {
  margin: 20px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.24);
  letter-spacing: 0.06em;
}

/* ── Nav active ── */
.nav__link--active { color: #1eb5a8 !important; }

/* ── Card tilt context ── */
.sv-included__grid {
  perspective: 1000px;
}
.sv-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── CTA button transition ── */
.sv-hero__cta .btn,
.sv-cta .btn {
  transition: transform 0.15s ease, background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}

/* ── Step number ── */
.sv-step__num {
  display: inline-block;
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* ── Desktop: centred hero ── */
@media (min-width: 769px) {
  .sv-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sv-hero__h1 { max-width: 900px; }
  .sv-hero__sub { max-width: 620px; }
  .sv-hero__cta { justify-content: center; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .sv-hero { padding: 130px 20px 72px; }
  .sv-included { padding: 72px 20px; }
  .sv-process  { padding: 72px 20px; }
  .sv-results  { padding: 56px 20px; }
  .sv-cta      { padding: 80px 20px; }
  .sv-cta__inner { padding: 40px 28px; border-radius: 16px; }
  .sv-results__inner { gap: 40px; }
  .sv-results__stats > div { padding: 24px 16px; }
  .sv-stat__num { font-size: 30px; }
  .sv-steps::before { display: none; }
  .sv-step { padding: 0 0 32px; }
  .sv-hero__sub { font-size: 16px; }
  .sv-hero__h1  { font-size: clamp(36px, 8vw, 60px); }
  .sv-included__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sv-hero     { padding: 120px 16px 60px; }
  .sv-included { padding: 56px 16px; }
  .sv-process  { padding: 56px 16px; }
  .sv-results  { padding: 48px 16px; }
  .sv-cta      { padding: 64px 16px; }
  .sv-cta__inner { padding: 32px 20px; border-radius: 14px; }
  .sv-cta__h2  { font-size: clamp(28px, 7vw, 44px); }
  .sv-cta__sub { font-size: 15px; }
  .sv-cta__btns { flex-direction: column; align-items: stretch; }
  .sv-cta__btns .btn { justify-content: center; text-align: center; min-height: 48px; }
  .sv-card     { padding: 22px; }
  .sv-card__text { font-size: 14px; }
  .sv-results__stats { flex-direction: column; }
  .sv-results__stats > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .sv-results__stats > div:last-child { border-bottom: none; }
  .sv-results__quote blockquote { font-size: 17px; }
  .sv-step__title { font-size: 15px; }
  .sv-step__text  { font-size: 14px; }
}
