/* ==========================================================================
   Woop Design System - Framepath Partners
   Derived from Figma Make project: Framepath-Design-System
   ========================================================================== */

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

:root {
  /* Framepath Brand Colors */
  --woop-navy: #0f1e35;
  --woop-navy-mid: #1b2e4a;
  --woop-teal: #055960;
  --woop-teal-accent: #0a8c96;
  --woop-teal-light: #1cc5d2;
  --woop-teal-dark: #04505a;
  --woop-teal-pale: #e0f4f6;
  --woop-sand: #f5f0e8;
  --woop-cream: #fdfbf7;
  --woop-ink: #1a1a2e;
  --woop-muted: #374961;
  --woop-rule: #d0d8e4;
  --woop-footer: #080f1a;

  /* Semantic Tokens */
  --background: var(--woop-cream);
  --foreground: var(--woop-ink);
  --primary: var(--woop-teal);
  --primary-foreground: #ffffff;
  --muted: var(--woop-sand);
  --muted-foreground: var(--woop-muted);
  --border: var(--woop-rule);
  --destructive: #EF4444;

  /* Typography */
  --font-family: 'DM Sans', sans-serif;
  --font-family-heading: 'Playfair Display', serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing & Layout */
  --radius: 0.5rem;
  --radius-sm: 0.25rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --container-lg: 80rem;
  --container-md: 64rem;
  --container-sm: 48rem;
}

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

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--woop-teal-light); }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 2px; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 999;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-weight: var(--font-weight-medium);
}
.skip-link:focus { top: 1rem; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: var(--foreground);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 1rem;
}
.container--md { max-width: var(--container-md); }
.container--sm { max-width: var(--container-sm); }

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* --- Sections --- */
.section { padding: 4rem 0; }
.section--muted { background: var(--muted); }
.section--navy { background: var(--woop-navy); color: #fff; }
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: #fff; }
.section--navy p { color: rgba(255,255,255,0.85); }

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--woop-cream);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  font-weight: var(--font-weight-semibold);
  font-size: 1.125rem;
}
.header__logo:hover { color: var(--foreground); }
.header__logo-badge {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--font-weight-bold);
  font-size: 0.75rem;
}
.header__nav { display: none; align-items: center; gap: 2rem; }
.header__nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: var(--font-weight-medium);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--foreground); }
.header__cta {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground) !important;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  transition: opacity 0.2s;
}
.header__cta:hover { opacity: 0.9; color: var(--primary-foreground) !important; }

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  border-radius: 1px;
  transition: 0.2s;
}

/* Mobile nav */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.header__mobile-nav.is-open { display: flex; }
.header__mobile-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: var(--font-weight-medium);
}
.header__mobile-nav a:hover { color: var(--foreground); }

@media (min-width: 768px) {
  .header__nav { display: flex; }
  .header__toggle { display: none; }
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--woop-navy), var(--woop-navy-mid));
  padding: 5rem 0;
  color: #fff;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 48rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (min-width: 768px) {
  .hero { padding: 8rem 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-family);
  text-decoration: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}
.btn--primary:hover { opacity: 0.9; color: var(--primary-foreground); }
.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}
.btn--outline:hover { background: var(--primary); color: var(--primary-foreground); }
.btn--outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}
.btn--outline-white:hover { background: #fff; color: var(--woop-navy); }
.btn--ghost {
  color: #fff;
  background: transparent;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }
.btn--lg { padding: 0.875rem 2rem; font-size: 1.125rem; }

/* --- Stats Bar --- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stats__item { text-align: center; }
.stats__value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.stats__label { font-size: 0.875rem; color: var(--muted-foreground); }

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}
.feature-card__icon {
  width: 3rem;
  height: 3rem;
  background: rgba(5,89,96,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
  transition: all 0.3s;
}
.feature-card:hover .feature-card__icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { color: var(--muted-foreground); }

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Value Proposition (Navy Section) --- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.value-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.value-step {
  display: flex;
  gap: 1rem;
}
.value-step__num {
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: #fff;
  font-weight: var(--font-weight-bold);
  font-size: 0.875rem;
}
.value-step h4 { margin-bottom: 0.5rem; }
.value-step p { color: rgba(255,255,255,0.75); line-height: 1.7; }

.value-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.value-card__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}
.value-card__item + .value-card__item { border-top: 1px solid rgba(255,255,255,0.1); }
.value-card__icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.value-card__label { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.25rem; }
.value-card__text { font-weight: var(--font-weight-semibold); }

@media (min-width: 1024px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Article Cards --- */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.article-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  color: var(--foreground);
}
.article-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  color: var(--foreground);
}
.article-card__image {
  height: 12rem;
  overflow: hidden;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.article-card:hover .article-card__image img { transform: scale(1.05); }
.article-card--featured .article-card__image { height: 20rem; }
.article-card__body { padding: 1.5rem; }
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.article-card__category {
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-card__date,
.article-card__read-time {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.article-card h3 { margin-bottom: 0.5rem; transition: color 0.2s; }
.article-card:hover h3 { color: var(--primary); }
.article-card__excerpt { color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.6; }
.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: var(--font-weight-medium);
  font-size: 0.875rem;
}
.article-card:hover .article-card__link svg { transform: translateX(4px); }
.article-card__link svg { transition: transform 0.2s; }

@media (min-width: 768px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .article-card--featured { grid-column: span 2; }
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--woop-navy), var(--woop-navy-mid));
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { opacity: 0.9; max-width: 40rem; margin: 0 auto 2rem; font-size: 1.125rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Footer --- */
.footer {
  background: var(--woop-footer);
  color: #fff;
  margin-top: auto;
  padding: 3rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer__brand p { color: var(--woop-muted); font-size: 0.875rem; margin-top: 1rem; }
.footer h4 { font-weight: var(--font-weight-semibold); margin-bottom: 1rem; color: #fff; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.875rem; color: var(--woop-muted); }
.footer__links a:hover { color: #fff; }
.footer__social { display: flex; gap: 1rem; margin-bottom: 1rem; }
.footer__social a { color: var(--woop-muted); font-size: 1.25rem; }
.footer__social a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer__bottom p { font-size: 0.875rem; color: var(--woop-muted); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: 0.875rem; color: var(--woop-muted); }
.footer__bottom-links a:hover { color: #fff; }

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* --- Section Headings (centered) --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--muted-foreground); max-width: 40rem; margin: 0 auto; }

/* ==========================================================================
   Article Page Styles
   ========================================================================== */

/* --- Article Hero --- */
.article-hero {
  background: var(--muted);
  padding: 3rem 0;
}
.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.article-hero__back:hover { color: var(--foreground); }
.article-hero__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
}
.article-hero h1 { margin-bottom: 1.5rem; }
.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.article-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* --- Article Content Layout --- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .article-layout { grid-template-columns: 2fr 1fr; }
}

/* --- Prose --- */
.prose { max-width: 65ch; }
.prose p { margin: 1.25rem 0; line-height: 1.8; font-size: 1.0625rem; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose ul, .prose ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
}
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose li strong { color: var(--foreground); }
.prose blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p { font-size: 1.125rem; font-style: italic; color: var(--muted-foreground); margin: 0; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--woop-teal-light); }

/* Step grid used in articles */
.prose .step-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.25rem;
  margin: 1.5rem 0;
}
.prose .step-num {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.prose .step-content h3 { margin-top: 0; margin-bottom: 0.5rem; }
.prose .step-content p { margin-top: 0; }

/* Code blocks */
.prose .code-block {
  background: var(--woop-navy);
  color: var(--woop-teal-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: pre;
  margin: 1.5rem 0;
}

/* Output links used in articles */
.prose .output-links {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.prose .output-links h3 { margin-top: 0; margin-bottom: 0.75rem; }
.prose .output-links ul { margin: 0; }

/* --- Article Sidebar --- */
.article-sidebar { position: sticky; top: 5rem; }
.sidebar-card {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; }
.sidebar-card__actions { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-share-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--foreground);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  transition: all 0.2s;
  width: 100%;
  text-align: left;
}
.sidebar-share-btn:hover { background: var(--primary); color: #fff; }
.sidebar-share-btn svg { color: var(--primary); transition: color 0.2s; flex-shrink: 0; }
.sidebar-share-btn:hover svg { color: #fff; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--woop-navy), var(--woop-navy-mid));
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  color: #fff;
}
.sidebar-cta h4 { color: #fff; margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: 0.875rem; opacity: 0.9; margin-bottom: 1rem; }

/* --- Author Bio --- */
.author-bio {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.author-bio__avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  font-size: 1.25rem;
}
.author-bio__name { font-weight: var(--font-weight-semibold); }
.author-bio__role { font-size: 0.875rem; color: var(--muted-foreground); }

/* --- Related Articles --- */
.related-articles { margin-top: 1rem; }
.related-articles h2 { margin-bottom: 2rem; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* --- Home Article Grid (compact cards without images) --- */
.home-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.home-article-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
  color: var(--foreground);
}
.home-article-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--foreground);
}
.home-article-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.home-article-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.home-article-card:hover h3 { color: var(--primary); }
.home-article-card__date { font-size: 0.8125rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.home-article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: var(--font-weight-medium);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .home-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .home-articles-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Perspective Cards (homepage) --- */
.perspective-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.perspective-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
}
.perspective-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.perspective-card h3 { margin-bottom: 0.75rem; }
.perspective-card p { color: var(--muted-foreground); line-height: 1.7; }

@media (min-width: 1024px) {
  .perspective-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Credentials List --- */
.credentials {
  list-style: none;
  padding: 0;
}
.credentials li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* --- Differentiator Quote --- */
.differentiator {
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  background: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.differentiator p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  position: relative;
}
.service-card__num {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--woop-rule);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-card__rule {
  width: 3rem;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--muted-foreground); line-height: 1.7; }

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-details {
  list-style: none;
  padding: 0;
}
.contact-details li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.contact-details li span:first-child {
  font-weight: var(--font-weight-medium);
  color: var(--muted-foreground);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 1rem;
  background: var(--muted);
  color: var(--foreground);
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,89,96,0.15);
}
.form-textarea { min-height: 8rem; resize: vertical; }
.form-submit {
  padding: 0.75rem 1.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.form-submit:hover { opacity: 0.9; }

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* --- About Grid --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* --- SVG Icons (inline) --- */
.icon { width: 1em; height: 1em; vertical-align: -0.125em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
