/* ============================================
   44 DIGITAL MARKETING — Design System
   ============================================ */

:root {
  /* Colors */
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --paper: #fafaf7;
  --paper-warm: #f5f2ea;
  --accent: #ff5722;
  --accent-hover: #e64a19;
  --accent-soft: #fff3ef;
  --muted: #6b6b6b;
  --muted-soft: #a8a8a8;
  --line: #e8e5de;
  --line-strong: #c9c5bb;
  --success: #0a7b4f;

  /* Type */
  --font-display: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.italic-serif {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
  transition: opacity 0.2s var(--ease);
}
.logo:hover { opacity: 0.75; }
.logo-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  color: var(--ink);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.7rem 1.25rem;
  border-radius: 100px;
  transition: background 0.25s var(--ease);
}
.nav-cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle.open span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { top: 13px; transform: rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.98rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(255, 87, 34, 0.4);
}
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
  transition: gap 0.25s var(--ease), color 0.25s;
}
.btn-arrow:hover { gap: 0.85rem; color: var(--accent); }
.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.18), transparent 65%);
  filter: blur(40px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 45%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.12), transparent 65%);
  filter: blur(50px);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.35fr 1fr; gap: 4rem; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.95rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(10, 123, 79, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(10, 123, 79, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(10, 123, 79, 0.08); }
}
.hero h1 {
  margin-bottom: 1.75rem;
}
.hero h1 .accent-word {
  color: var(--accent);
  font-weight: 600;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}
.hero-stat .num small {
  font-size: 0.55em;
  color: var(--accent);
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ============ MARQUEE ============ */
.marquee {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 0.85em;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEADERS ============ */
.section-header {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .eyebrow { margin-bottom: 1rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
}

/* ============ SERVICES GRID ============ */
.services {
  background: var(--paper);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  padding: 2.25rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s var(--ease);
  position: relative;
}
.service-card:hover {
  background: var(--paper-warm);
}
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted-soft);
  letter-spacing: 0.1em;
}
.service-card .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--accent);
  border-radius: 50%;
  margin-bottom: 0.5rem;
  transition: transform 0.3s var(--ease);
}
.service-card:hover .icon {
  transform: rotate(-8deg) scale(1.08);
}
.service-card .icon svg { width: 20px; height: 20px; }
.service-card h3 { margin-bottom: 0.25rem; }
.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  flex-grow: 1;
}
.service-card .service-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s var(--ease), color 0.25s;
}
.service-card:hover .service-link { gap: 0.7rem; color: var(--accent); }
.service-card .service-link::after { content: '→'; }

/* ============ PROCESS / APPROACH ============ */
.approach {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(255, 87, 34, 0.15), transparent 60%);
  pointer-events: none;
}
.approach .container { position: relative; z-index: 1; }
.approach .section-header h2 { color: var(--paper); }
.approach .section-header p { color: var(--muted-soft); }
.approach-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 880px) {
  .approach-steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  padding: 2rem 1.5rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
@media (min-width: 880px) {
  .step {
    padding: 2.5rem 1.5rem 2.5rem 0;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 1.5rem;
  }
  .step:first-child { border-left: none; padding-left: 0; }
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
.step h3 {
  color: var(--paper);
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--muted-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ============ RESULTS / STATS ============ */
.results {
  background: var(--paper-warm);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); }
}
.result-card {
  padding: 2.5rem 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.12);
}
.result-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}
.result-num small {
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 500;
}
.result-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.result-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.2), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 193, 7, 0.12), transparent 50%);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 {
  color: var(--paper);
  margin-bottom: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.cta-banner p {
  color: var(--muted-soft);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.cta-banner .btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 24px -8px rgba(250, 250, 247, 0.3);
}

/* ============ FOOTER ============ */
.footer {
  padding-block: 4rem 2rem;
  background: var(--ink);
  color: var(--muted-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-brand .logo { color: var(--paper); margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.94rem;
  color: var(--muted-soft);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* ============ MOBILE NAV ============ */
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.35s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.25rem; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
  .nav-toggle { display: block; z-index: 101; }
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.08), transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumbs a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { margin: 0 0.5rem; color: var(--muted-soft); }
.page-header h1 {
  max-width: 920px;
  margin-bottom: 1.25rem;
}
.page-header .lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
}

/* ============ CONTENT (Service & About pages) ============ */
.content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .content { grid-template-columns: 1fr 280px; gap: 4rem; }
}
.prose h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.prose ul, .prose ol {
  margin: 1.25rem 0 1.5rem 1.25rem;
  padding-left: 0.5rem;
}
.prose ul li, .prose ol li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  position: relative;
}
.prose ul li::marker { content: '✦  '; color: var(--accent); font-size: 0.85em; }
.prose ol { list-style-type: decimal; list-style-position: outside; }
.prose ol li::marker { color: var(--accent); font-weight: 600; font-family: var(--font-mono); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
}
.sidebar-card {
  padding: 1.75rem;
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: sticky;
  top: 6rem;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.sidebar-card p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-card ul {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.sidebar-card ul li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.sidebar-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ============ FEATURE BLOCKS (for service pages) ============ */
.feature-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}
@media (min-width: 720px) {
  .feature-blocks { grid-template-columns: repeat(2, 1fr); }
}
.feature-block {
  padding: 1.5rem;
  background: var(--paper-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.feature-block h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.feature-block p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ============ FAQ ============ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s;
}
.faq-item.open .plus {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 760px;
}

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-list-item .label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-list-item .value {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-list-item a.value { transition: color 0.2s; }
.contact-list-item a.value:hover { color: var(--accent); }

.form {
  background: var(--paper-warm);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}
.form-success {
  display: none;
  padding: 2rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.form.hidden { display: none; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation: none !important; transition: none !important; }
}

/* ============ UTILITY ============ */
.text-accent { color: var(--accent); }
.center { text-align: center; margin-inline: auto; }
.hidden-mobile { display: none; }
@media (min-width: 720px) { .hidden-mobile { display: inline; } }

/* ============ ACCESSIBILITY ============ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
