/* ============================================
   WebNode.al — Editorial Tech Aesthetic
   Display: Fraunces (serif) | Body: Inter Tight
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — Deep navy base with mint accent */
  --c-bg:          #0a1628;
  --c-bg-elev:     #0f1d35;
  --c-bg-alt:      #f7f5f0;
  --c-surface:     #ffffff;
  --c-ink:         #0a1628;
  --c-ink-soft:    #475569;
  --c-ink-muted:   #94a3b8;
  --c-line:        rgba(10, 22, 40, 0.08);
  --c-line-dark:   rgba(255, 255, 255, 0.08);
  --c-accent:      #00d4aa;
  --c-accent-2:    #ffd166;
  --c-accent-glow: rgba(0, 212, 170, 0.4);
  --c-on-dark:     #e8edf5;
  --c-on-dark-mu:  #94a3b8;

  /* Typography */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body:    'Inter Tight', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md:  0 4px 20px rgba(10, 22, 40, 0.08);
  --shadow-lg:  0 20px 60px rgba(10, 22, 40, 0.12);
  --shadow-glow: 0 0 40px var(--c-accent-glow);

  /* Transitions */
  --t-fast:  0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:  0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-w: 1280px;
  --header-h: 80px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg-alt);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--c-accent);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.875rem); }
h4 { font-size: 1.125rem; font-family: var(--f-body); font-weight: 600; letter-spacing: 0; }

.display-italic { font-style: italic; font-weight: 300; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}
@media (min-width: 1024px) {
  .section { padding: var(--space-3xl) 0; }
}

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-ink);
  color: white;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ---------- ANNOUNCE BAR ---------- */
.announce-bar {
  background: var(--c-bg);
  color: var(--c-on-dark);
  padding: 0.5rem 0;
  font-size: 0.82rem;
  font-family: var(--f-mono);
}
.announce-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.announce-dot {
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--c-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--c-accent-glow); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-line);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-ink);
}
.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--c-ink);
  transition: transform var(--t-base), color var(--t-fast);
}
.logo:hover .logo-mark {
  transform: rotate(45deg);
  color: var(--c-accent);
}
.logo-text {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-text em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-ink-soft);
}

.primary-nav ul {
  display: flex;
  gap: 2.25rem;
}
.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  color: var(--c-ink);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--t-base);
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
  transition: all var(--t-fast);
}
.lang-switch:hover {
  border-color: var(--c-ink);
  background: var(--c-ink);
  color: white;
}
.lang-current { color: var(--c-ink); font-weight: 700; }
.lang-switch:hover .lang-current { color: white; }
.lang-divider { width: 1px; height: 10px; background: currentColor; opacity: 0.3; }
.lang-other { opacity: 0.5; }

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-ink);
  transition: all var(--t-fast);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-menu nav a {
  font-family: var(--f-display);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 1rem;
}
.mobile-menu-foot {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 920px) {
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }

.btn-primary {
  background: var(--c-ink);
  color: white;
}
.btn-primary:hover {
  background: var(--c-accent);
  color: var(--c-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}
.btn-ghost:hover {
  border-color: var(--c-ink);
  background: var(--c-ink);
  color: white;
}

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

.btn .arrow {
  transition: transform var(--t-base);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: var(--space-xl) 0 var(--space-3xl);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 170, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 209, 102, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--c-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-content { max-width: 640px; }
.hero-title {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-ink-soft);
}
.hero-title .accent {
  color: var(--c-accent);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.1em;
  height: 0.18em;
  background: var(--c-accent);
  opacity: 0.15;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero Visual — abstract network */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}
.hero-card {
  position: absolute;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-card .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 8px var(--c-accent);
}
.hero-card.c1 {
  top: 8%; left: 0;
  animation: float 6s ease-in-out infinite;
}
.hero-card.c2 {
  top: 35%; right: 0;
  animation: float 6s ease-in-out infinite 1.5s;
}
.hero-card.c3 {
  bottom: 8%; left: 12%;
  animation: float 6s ease-in-out infinite 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, var(--c-ink) 0%, var(--c-bg-elev) 50%, var(--c-bg) 100%);
  box-shadow: 
    0 30px 80px rgba(10, 22, 40, 0.3),
    inset -20px -20px 60px rgba(0, 0, 0, 0.4);
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid var(--c-accent);
  opacity: 0.3;
  animation: spin 20s linear infinite;
}
.hero-orb::after {
  content: '';
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  border: 1px dashed var(--c-accent);
  opacity: 0.4;
  animation: spin 30s linear infinite reverse;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- STATS BAR ---------- */
.stats {
  background: var(--c-bg);
  color: var(--c-on-dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--c-line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line-dark) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}
.stat {
  text-align: left;
  border-left: 1px solid var(--c-line-dark);
  padding-left: 1.5rem;
}
.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: white;
  letter-spacing: -0.03em;
}
.stat-number .plus {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 300;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--c-on-dark-mu);
  letter-spacing: 0.01em;
}

/* ---------- SERVICES GRID ---------- */
.services-section {
  background: var(--c-bg-alt);
}
.section-head {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}
.section-head h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.section-head p {
  font-size: 1.075rem;
  color: var(--c-ink-soft);
  max-width: 580px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem 2rem;
  transition: all var(--t-base);
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-ink-muted);
  letter-spacing: 0.1em;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--c-ink);
  transition: all var(--t-base);
}
.service-card:hover .service-icon-wrap {
  background: var(--c-ink);
  color: var(--c-accent);
  transform: rotate(-6deg);
}
.service-icon { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--c-ink-soft);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--c-line);
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--c-ink);
}
.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-ink);
}
.service-link svg {
  width: 14px;
  transition: transform var(--t-base);
}
.service-link:hover { color: var(--c-accent); }
.service-link:hover svg { transform: translateX(4px); }

/* ---------- WHY US ---------- */
.why-section {
  background: var(--c-surface);
  position: relative;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 920px) {
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
}
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 560px) {
  .why-features { grid-template-columns: 1fr; }
}
.why-feature {
  padding: 1.75rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.why-feature:hover {
  border-color: var(--c-ink);
  background: var(--c-bg-alt);
}
.why-feature-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.why-feature p {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
}

/* ---------- CTA ---------- */
.cta-section {
  background: var(--c-bg);
  color: var(--c-on-dark);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 50%, var(--c-accent-glow) 0%, transparent 50%),
    radial-gradient(circle at 20% 50%, rgba(255, 209, 102, 0.15) 0%, transparent 50%);
  opacity: 0.5;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-inner h2 {
  color: white;
  margin-bottom: 1rem;
}
.cta-inner h2 em { color: var(--c-accent); font-weight: 300; }
.cta-inner p {
  font-size: 1.075rem;
  color: var(--c-on-dark-mu);
  margin-bottom: 2.25rem;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  background: var(--c-bg-alt);
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--c-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 30%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent);
  opacity: 0.5;
}
.page-header-inner {
  position: relative;
  max-width: 800px;
}
.breadcrumbs {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--c-ink-soft);
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
}
.breadcrumbs a:hover { color: var(--c-ink); }
.breadcrumbs span { margin: 0 0.5rem; opacity: 0.5; }
.page-header h1 { margin-bottom: 1rem; }
.page-header .lead {
  font-size: 1.125rem;
  color: var(--c-ink-soft);
  max-width: 600px;
}

/* ---------- SERVICES DETAIL ---------- */
.service-detail {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-surface);
}
.service-detail:nth-child(even) { background: var(--c-bg-alt); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 920px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--r-lg);
  background: var(--c-ink);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-detail-icon svg { width: 40px; height: 40px; stroke-width: 1.5; }
.service-detail-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--c-ink-muted);
  margin-bottom: 1rem;
}
.service-detail h2 { margin-bottom: 1.25rem; }
.service-detail-desc {
  font-size: 1.075rem;
  color: var(--c-ink-soft);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.service-detail-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.feature-pill {
  padding: 1rem 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-detail:nth-child(even) .feature-pill { background: white; }
.feature-pill .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-pill .check svg { width: 12px; height: 12px; stroke-width: 3; }

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: var(--space-2xl) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info-card {
  background: var(--c-bg);
  color: var(--c-on-dark);
  padding: 3rem 2.5rem;
  border-radius: var(--r-lg);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.contact-info-card h3 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}
.contact-info-card .lead {
  color: var(--c-on-dark-mu);
  margin-bottom: 2.5rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-accent);
}
.contact-info-item .icon svg { width: 20px; height: 20px; }
.contact-info-item .label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-on-dark-mu);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.contact-info-item .value {
  color: white;
  font-size: 1rem;
}
.contact-info-item .value a:hover { color: var(--c-accent); }

/* Contact form */
.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
@media (max-width: 640px) {
  .contact-form { padding: 1.75rem; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--c-ink);
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group label .req { color: var(--c-accent); }
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--c-bg-alt);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--c-ink);
  transition: all var(--t-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--c-ink);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 22, 40, 0.05);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
  font-family: var(--f-body);
}
.form-note {
  font-size: 0.82rem;
  color: var(--c-ink-muted);
  margin-top: 1rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert-success {
  background: rgba(0, 212, 170, 0.1);
  color: #006b56;
  border-left: 3px solid var(--c-accent);
}
.alert-error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  border-left: 3px solid #dc2626;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-bg);
  color: var(--c-on-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.logo-footer { color: white; margin-bottom: 1.5rem; }
.logo-footer .logo-mark { color: var(--c-accent); }
.logo-footer .logo-text em { color: var(--c-on-dark-mu); }

.footer-about {
  color: var(--c-on-dark-mu);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-on-dark-mu);
  transition: all var(--t-fast);
}
.social-links a:hover {
  background: var(--c-accent);
  color: var(--c-ink);
  border-color: var(--c-accent);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--c-on-dark-mu);
  font-size: 0.93rem;
  transition: all var(--t-fast);
}
.footer-links a:hover {
  color: var(--c-accent);
  padding-left: 0.4rem;
}

.newsletter-form {
  position: relative;
  margin-bottom: 1.5rem;
}
.newsletter-form input {
  width: 100%;
  padding: 0.8rem 3rem 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-md);
  color: white;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--c-on-dark-mu); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--c-accent);
}
.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--c-accent);
  color: var(--c-ink);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.newsletter-form button:hover {
  background: white;
  transform: translateY(-50%) translateX(-2px);
}

.footer-contact-info {
  font-size: 0.9rem;
  color: var(--c-on-dark-mu);
}
.footer-contact-info p { margin-bottom: 0.4rem; }
.footer-contact-info a:hover { color: var(--c-accent); }

.footer-bottom {
  border-top: 1px solid var(--c-line-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--c-on-dark-mu);
}
.footer-credit .heart {
  color: var(--c-accent);
  font-style: normal;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-ink);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: var(--shadow-lg);
  transition: all var(--t-fast);
}
.back-to-top.is-visible { display: flex; }
.back-to-top:hover {
  background: var(--c-accent);
  color: var(--c-ink);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---------- ABOUT PAGE ---------- */
.about-content {
  padding: var(--space-2xl) 0;
  background: var(--c-surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-grid h2 { margin-bottom: 1.5rem; }
.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  line-height: 1.75;
}
.about-text p strong {
  color: var(--c-ink);
  font-weight: 600;
}
.about-pull-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--c-ink);
  padding: 2rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin: 2rem 0;
  position: relative;
}
.about-pull-quote::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  color: var(--c-accent);
  font-weight: 700;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item[open] {
  border-color: var(--c-ink);
  box-shadow: var(--shadow-md);
}
.faq-question {
  padding: 1.35rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  letter-spacing: -0.01em;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--c-bg-alt); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--c-ink-soft);
  transition: transform var(--t-base);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--c-accent);
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-ink);
  color: white;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
}
.skip-link:focus { left: 0; }
