/* ============================================
   NYC Wound — Healthcare Design System
   ============================================ */

/* --- Fonts --- */
/* Plus Jakarta Sans for body, Work Sans for display headings */

:root {
  /* Font families */
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --font-display: 'Work Sans', 'Helvetica Neue', 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);

  /* 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;

  /* Healthcare Palette — Blues, Teals, Clean Whites */
  --color-bg: #f8fafb;
  --color-surface: #ffffff;
  --color-surface-2: #f1f5f8;
  --color-surface-offset: #e8eff4;
  --color-divider: #d3dde6;
  --color-border: #c5d1dc;

  /* Text */
  --color-text: #1a2a3a;
  --color-text-muted: #5a6f82;
  --color-text-faint: #8fa3b5;
  --color-text-inverse: #ffffff;

  /* Primary — Medical Blue */
  --color-primary: #0b6e99;
  --color-primary-hover: #085880;
  --color-primary-active: #064566;
  --color-primary-light: #e6f3fa;
  --color-primary-highlight: #cce7f4;

  /* Secondary — Healing Teal */
  --color-secondary: #0d8a7c;
  --color-secondary-hover: #0a7168;
  --color-secondary-light: #e6f7f5;

  /* Accent — Warm Coral (CTAs, warmth) */
  --color-accent: #d4603a;
  --color-accent-hover: #bf5230;

  /* Success */
  --color-success: #2e7d52;
  --color-success-light: #e8f5ee;

  /* Warning */
  --color-warning: #c17a1e;

  /* Error */
  --color-error: #c43d3d;

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

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 42, 58, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 42, 58, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 42, 58, 0.12);
  --shadow-card: 0 2px 8px rgba(26, 42, 58, 0.06), 0 0 0 1px rgba(26, 42, 58, 0.04);

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

/* ============================================
   LAYOUT
   ============================================ */

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

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

/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 100;
  font-size: var(--text-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo svg,
.header__logo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.header__logo-text span {
  color: var(--color-secondary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

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

.header__nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding: var(--space-1) 0;
}

.header__nav-links a:hover,
.header__nav-links a.active {
  color: var(--color-primary);
}

.header__nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--color-primary-hover);
}

.header__cta svg {
  width: 16px;
  height: 16px;
  display: inline;
}

/* Mobile menu */
.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.header__menu-btn svg {
  width: 24px;
  height: 24px;
}

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

  .header__menu-btn {
    display: flex;
  }

  .header__nav.open .header__nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
    gap: 0;
  }

  .header__nav.open .header__nav-links li {
    border-bottom: 1px solid var(--color-surface-2);
  }

  .header__nav.open .header__nav-links li:last-child {
    border-bottom: none;
  }

  .header__nav.open .header__nav-links a {
    display: block;
    padding: var(--space-3) 0;
    font-size: var(--text-base);
  }

  .header__nav.open .header__cta {
    display: inline-flex;
    margin-top: var(--space-4);
    justify-content: center;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: clamp(var(--space-10), 8vw, var(--space-24)) 0 clamp(var(--space-8), 6vw, var(--space-16));
  overflow: hidden;
  background: linear-gradient(135deg, #0b6e99 0%, #0d8a7c 50%, #0b6e99 100%);
  color: var(--color-text-inverse);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(13, 138, 124, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(11, 110, 153, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(4px);
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  display: inline;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__sub {
  font-size: var(--text-lg);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 560px;
  line-height: 1.5;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  display: inline;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--color-text-inverse);
  color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-light);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn--cta {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--cta:hover {
  background: var(--color-primary-hover);
}

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

.btn--outline:hover {
  background: var(--color-primary-light);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: clamp(var(--space-8), 4vw, var(--space-16)) 0;
}

.section--alt {
  background: var(--color-surface-2);
}

.section--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.section__header {
  margin-bottom: clamp(var(--space-5), 3vw, var(--space-10));
}

.section__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section--primary .section__label {
  color: rgba(255, 255, 255, 0.7);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section--primary .section__title {
  color: var(--color-text-inverse);
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
}

.section--primary .section__desc {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

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

.service-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   STEPS / WHAT TO EXPECT
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
  counter-reset: step;
}

.step-item {
  position: relative;
  padding: var(--space-4);
  counter-increment: step;
}

.step-item::before {
  content: counter(step);
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.step-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.step-item__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   WHY NYC WOUND / FEATURES
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-secondary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
}

.feature-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.feature-item__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   PROVIDERS CTA
   ============================================ */

.providers-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a5d85 100%);
  color: var(--color-text-inverse);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 4vw, var(--space-12));
  position: relative;
  overflow: hidden;
}

.providers-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.providers-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.providers-section__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.providers-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.providers-section__desc {
  font-size: var(--text-base);
  opacity: 0.9;
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.providers-section__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  opacity: 0.85;
}

.providers-section__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.providers-section__list svg {
  width: 16px;
  height: 16px;
  display: inline;
  flex-shrink: 0;
}

.btn--white {
  background: var(--color-text-inverse);
  color: var(--color-primary);
}

.btn--white:hover {
  background: var(--color-primary-light);
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--color-divider);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--color-text-muted);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0 var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: white;
  margin-bottom: var(--space-4);
}

.footer__logo svg,
.footer__logo img {
  width: 36px;
  height: 36px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-4);
}

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

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ============================================
   BLOG CARDS
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

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

.blog-card__visual {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.blog-card__visual--1 {
  background: linear-gradient(135deg, #0b6e99 0%, #0d8a7c 100%);
}
.blog-card__visual--2 {
  background: linear-gradient(135deg, #0d8a7c 0%, #2e9e8f 100%);
}
.blog-card__visual--3 {
  background: linear-gradient(135deg, #085880 0%, #0b6e99 100%);
}
.blog-card__visual--4 {
  background: linear-gradient(135deg, #0a7168 0%, #0b6e99 100%);
}
.blog-card__visual--5 {
  background: linear-gradient(135deg, #064566 0%, #0d8a7c 100%);
}
.blog-card__visual--6 {
  background: linear-gradient(135deg, #0b6e99 0%, #085880 100%);
}

.blog-card__visual svg {
  position: absolute;
  right: var(--space-6);
  bottom: var(--space-4);
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.15);
}

.blog-card__visual-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 18v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.blog-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

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

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.blog-card__link svg {
  width: 16px;
  height: 16px;
  display: inline;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card__link svg {
  transform: translateX(3px);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--color-text);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-info__value a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background: var(--color-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}

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

/* ============================================
   SERVICES PAGE
   ============================================ */

.service-detail {
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--color-divider);
}

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

.service-detail__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.service-detail__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.service-detail__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.service-detail__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.service-detail__body {
  padding-left: 0;
}

.service-detail__body p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.service-detail__body ul {
  list-style: none;
  margin-bottom: var(--space-4);
}

.service-detail__body ul li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.service-detail__body ul li::before {
  content: '';
  position: absolute;
  left: var(--space-2);
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ============================================
   PAGE HERO (Interior pages)
   ============================================ */

.page-hero {
  background: var(--color-surface-2);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
  border-bottom: 1px solid var(--color-divider);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.page-hero__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a5d85 100%);
  color: var(--color-text-inverse);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.cta-banner__desc {
  font-size: var(--text-base);
  opacity: 0.9;
  margin-bottom: var(--space-6);
  max-width: 480px;
  margin-inline: auto;
}

/* ============================================
   SERVICE AREA MAP VISUAL
   ============================================ */

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.service-area__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
}

.service-area__tag svg {
  width: 14px;
  height: 14px;
  display: inline;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITY
   ============================================ */

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

.mx-auto {
  margin-inline: auto;
}
