/* ============================================================
   Blueprint AI with Kirk — services.css
   Services-page-specific styles only.
   Load after reset.css, nav.css, main.css.
   ============================================================ */


/* ── Page offset below fixed nav ── */
.services-page { padding-top: var(--nav-height); }

/* Section rule centered modifier (services-specific usage) */
.section-rule--center { margin-inline: auto; margin-bottom: var(--space-6); }


/* ══════════════════════════════════════════════════════════════
   1. HERO — dark, full-width banner with photo
   ══════════════════════════════════════════════════════════════ */
.services-hero {
  background: #010101;
  padding: var(--space-24) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}
.services-hero .container,
.services-hero .row {
  position: relative;
  z-index: 1;
}
.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(91, 158, 201, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.services-hero .section-label { margin-bottom: var(--space-4); }

.services-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-6);
  max-width: 14ch;
}

.services-hero h1 span { color: var(--color-ice); }

.services-hero p {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.55);
  max-width: 48ch;
  line-height: var(--leading-loose);
  margin-bottom: var(--space-8);
}

/* One-column hero layout */
.hero-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 420px;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 720px;
}



.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: var(--weight-semibold);
  color: #010101;
  background: var(--color-ice);
  padding: 18px 48px;
  border-radius: var(--radius-full);
  text-decoration: none;
  letter-spacing: 0.01em;
  min-width: 300px;
  transition:
    background var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.btn-hero:hover {
  background: var(--color-ice-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 158, 201, 0.4);
  color: #010101;
}

/* Mobile hero */
@media (max-width: 768px) {
  .services-hero {
    padding: var(--space-16) 0 var(--space-12);
  }

.hero-inner {
  display: block;
  min-height: auto;
}

.hero-text {
  max-width: 100%;
  padding: 0 24px;
}

.hero-text h1 {
  max-width: 12ch;
}

  .services-hero .section-label {
    margin-bottom: var(--space-2);
    font-size: 0.55rem;
    letter-spacing: 0.22em;
  }

.services-hero h1 {
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: var(--space-4);
  max-width: 8ch;
  }

  .services-hero p {
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: var(--space-4);
    max-width: 22ch;
  }



  .btn-hero {
    min-width: 0;
    width: auto;
    padding: 12px 20px;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
  }
}


/* ══════════════════════════════════════════════════════════════
   2. CORE SERVICES — white section with service cards
   ══════════════════════════════════════════════════════════════ */
.core-services {
  background: var(--color-ice-pale); /* 🔥 light blue */
  padding: var(--space-20) 0;
}

.core-services h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-void);
  margin-bottom: var(--space-12);
}

/* Service card */
.svc-card {
  background: #ffffff; /* 🔥 cleaner, more premium */
  border: 1px solid rgba(0, 0, 0, 0.06); /* softer border */
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  height: 100%;
  position: relative;
  overflow: hidden;

  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-ice), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08); /* 🔥 premium shadow */
  border-color: rgba(91, 158, 201, 0.4);
}

.svc-card:hover::before { opacity: 1; }

.svc-icon {
  width: 48px;
  height: 48px;
  background: rgba(91, 158, 201, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-ice);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;              /* ↑ bigger */
  color: var(--color-void);
  margin-bottom: var(--space-2);
}

.svc-tagline {
  font-family: var(--font-sans);
  font-size: var(--text-base);    /* ↑ was too small */
  font-weight: var(--weight-regular); /* ↑ stronger */
  color: #4A6475;                 /* ↑ darker = readable */
  font-style: italic;
  margin-bottom: var(--space-5);
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.svc-list li {
  font-family: var(--font-sans);
  font-size: var(--text-base);    /* ↑ bigger */
  font-weight: var(--weight-regular); /* ↑ stronger */
  color: #2E3F4D;                 /* ↑ much darker */
  line-height: 1.7;
  padding-left: var(--space-5);
  position: relative;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-ice);
  opacity: 0.6;
}

.svc-best-for {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: rgba(0, 0, 0, 0.4);
  border-top: 1px solid #E0EAF2;
  padding-top: var(--space-4);
  margin-top: auto;
}

.svc-best-for strong { color: var(--color-ice); }

.svc-result {
  font-family: var(--font-sans);
  font-size: var(--text-base);    /* ↑ bigger */
  font-weight: var(--weight-medium);
  color: var(--color-void);
  background: rgba(91, 158, 201, 0.12); /* ↑ slightly stronger */
  border-left: 3px solid var(--color-ice); /* ↑ thicker */
  padding: var(--space-4) var(--space-5);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: auto;
}


/* ══════════════════════════════════════════════════════════════
   3. WHAT MAKES US DIFFERENT — dark banner
   ══════════════════════════════════════════════════════════════ */
.different-banner {
  background: #010101;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.different-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(91, 158, 201, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.different-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.1rem);
  color: #fff;
  margin-bottom: var(--space-3);
  line-height: 1.15;
}

.different-banner .sub {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: var(--weight-light);
  font-style: italic;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: var(--space-10);
  line-height: 1.5;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

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

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 158, 201, 0.12);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.diff-item:hover {
  border-color: rgba(91, 158, 201, 0.3);
  background: rgba(91, 158, 201, 0.04);
}

.diff-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(91, 158, 201, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-check svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-ice);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diff-text {
  font-family: var(--font-sans);
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.diff-text strong {
  color: #fff;
  display: block;
  margin-bottom: 6px;
  font-size: 1.22rem;
  font-weight: var(--weight-medium);
  line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════
   4. HOW IT WORKS — off-white section with numbered steps
   ══════════════════════════════════════════════════════════════ */
.how-works {
  background: var(--color-off-white);
  padding: var(--space-20) 0;
}

.how-works h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-void);
  text-align: center;
  margin-bottom: var(--space-12);
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid #E0EAF2;
}

.step-row:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--color-ice);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
}

.step-content { flex: 1; }

.step-title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: var(--weight-semibold);
  color: var(--color-void);
  margin-bottom: var(--space-2);
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: var(--weight-regular);
  color: #4A5E6E;
  line-height: 1.7;
  margin: 0;
  max-width: 48ch;
}


/* ══════════════════════════════════════════════════════════════
   5. WHO THIS IS FOR — dark section with list
   ══════════════════════════════════════════════════════════════ */
.who-for {
  background: #010101;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.who-for::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(91, 158, 201, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.who-for h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: var(--space-10);
}

.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(91, 158, 201, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  position: relative;
  transition:
    border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.who-list li:hover {
  border-color: rgba(91, 158, 201, 0.4);
  background: rgba(91, 158, 201, 0.06);
  transform: translateX(4px);
}

.who-for .who-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(91, 158, 201, 0.15);
  border: 1.5px solid var(--color-ice);
  flex-shrink: 0;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-for .who-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--color-ice);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ══════════════════════════════════════════════════════════════
   6. INVESTMENT / PRICING — off-white, centered card
   ══════════════════════════════════════════════════════════════ */
.investment {
  background: var(--color-off-white);
  padding: var(--space-20) 0;
}

.investment-card {
  background: #fff;
  border: 1px solid #E0EAF2;
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-10);
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.investment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-ice), transparent);
}

.investment-card h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-void);
  margin-bottom: var(--space-4);
}

.investment-card p {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  color: #5A7080;
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
}

.price-range {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-ice);
  margin-bottom: var(--space-2);
}

.price-note {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: #888;
  margin-bottom: var(--space-8);
}

.btn-invest {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ice);
  border: 1.5px solid var(--color-ice);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition:
    background var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.btn-invest:hover {
  background: var(--color-ice);
  color: #010101;
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════════════
   7. FINAL CTA — dark, centered
   ══════════════════════════════════════════════════════════════ */
.final-cta {
  background: #010101;
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(91, 158, 201, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: var(--space-4);
  position: relative;
}

.final-cta p {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-8);
  max-width: 44ch;
  margin-inline: auto;
  line-height: var(--leading-loose);
  position: relative;
}

.btn-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: #010101;
  background: var(--color-ice);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  text-decoration: none;
  position: relative;
  transition:
    background var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.btn-final:hover {
  background: var(--color-ice-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 158, 201, 0.4);
  color: #010101;
}
