/* ============================================
   COGNIKE TECHNOLOGIES — Design Tokens
   ============================================ */
:root {
  /* Color */
  --white: #ffffff;
  --paper: #f6f7fb;          /* faint indigo-tinted off white for section banding */
  --ink: #0a0a13;            /* near-black, slight indigo undertone */
  --ink-soft: #444a5e;       /* secondary text */
  --line: #e4e6f0;           /* hairline borders */
  --money: #4338ca;          /* deep indigo — primary */
  --money-deep: #312693;     /* hover / pressed */
  --money-bright: #16b8d6;   /* cyan accent / highlights */
  --money-tint: #eef0fc;     /* light indigo card fill */
  --money-tint-2: #e0e4fa;   /* slightly deeper tint */

  /* Type */
  --font-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

:focus-visible {
  outline: 2px solid var(--money-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ============================================
   Eyebrow / labels
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--money);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--money-bright);
  box-shadow: 0 0 0 3px var(--money-tint-2);
  flex-shrink: 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--money);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--money-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--money);
  color: var(--money-deep);
  transform: translateY(-2px);
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--money-deep); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--money-bright);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px var(--pad) 22px;
}
.mobile-menu a {
  padding: 13px 0;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.mobile-menu a.active { color: var(--money-deep); font-weight: 600; }
.mobile-menu .btn { margin-top: 16px; align-self: flex-start; }
.mobile-menu.open { display: flex; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================
   Network motif (signature decorative element)
   ============================================ */
.net-line {
  stroke: var(--money);
  stroke-width: 1.4;
  fill: none;
  opacity: 0.55;
}
.net-node { fill: var(--money-bright); }
.net-node-dim { fill: var(--money); opacity: 0.5; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px var(--pad) 70px;
  background:
    radial-gradient(720px 420px at 88% -8%, rgba(67, 56, 202, 0.16), transparent 60%),
    radial-gradient(600px 460px at -6% 18%, rgba(22, 184, 214, 0.14), transparent 60%),
    linear-gradient(165deg, var(--white) 0%, var(--paper) 60%, #eef0fc 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(67, 56, 202, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 56, 202, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 75%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--money); }
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 14px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--money-deep);
  margin-bottom: 30px;
}
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin: 0 auto;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
}
.hero-stat span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 320px; order: -1; }
}

/* Small page hero (non-home pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 56px var(--pad) 48px;
  background:
    radial-gradient(560px 320px at 92% 0%, rgba(67, 56, 202, 0.13), transparent 60%),
    radial-gradient(480px 320px at 0% 100%, rgba(22, 184, 214, 0.10), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.page-hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; }
.breadcrumb {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--money-deep); }
.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 1.05rem; max-width: 680px; }

/* ============================================
   Sections
   ============================================ */
section { padding: 78px var(--pad); }
.section-alt { background: var(--paper); }
.section-head {
  max-width: 680px;
  margin-bottom: 46px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 14px 0 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.04rem; }

/* ============================================
   Grids & Cards
   ============================================ */
.grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -18px rgba(11,110,79,0.28);
  border-color: var(--money-tint-2);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--money-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--money-deep); }
.card h3 {
  font-size: 1.12rem;
  margin-bottom: 9px;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--money-deep);
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Service card on services hub: numbered */
.service-card { position: relative; }
.service-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--money);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}

/* ============================================
   Feature list (checks)
   ============================================ */
.check-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}
@media (max-width: 640px) { .check-grid { grid-template-columns: 1fr; } }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.check-item .tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--money-tint);
  color: var(--money-deep);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-item .tick svg { width: 12px; height: 12px; }
.check-item strong { color: var(--ink); font-weight: 600; }

/* ============================================
   Process timeline (real sequence)
   ============================================ */
.process-rail {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.process-rail::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}
.process-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--money);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}
.process-step h3 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: 0.86rem; color: var(--ink-soft); }

@media (max-width: 980px) {
  .process-rail { grid-template-columns: repeat(3, 1fr); gap: 36px 0; }
  .process-rail::before { display: none; }
}
@media (max-width: 560px) {
  .process-rail { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Stat band
   ============================================ */
.stat-band {
  background: var(--ink);
  color: var(--white);
  padding: 56px var(--pad);
}
.stat-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--money-bright);
}
.stat-grid span { font-size: 0.85rem; color: #c9cfca; }
@media (max-width: 640px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Industries strip
   ============================================ */
.tag-cloud {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag-chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.tag-chip:hover {
  border-color: var(--money);
  color: var(--money-deep);
  background: var(--money-tint);
}

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  background: var(--money);
  color: var(--white);
  border-radius: 22px;
  padding: 54px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.cta-band p { color: #d8f0e3; max-width: 480px; }
.cta-band .btn-primary { background: var(--white); color: var(--money-deep); }
.cta-band .btn-primary:hover { background: var(--ink); color: var(--white); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-band .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: #c9cfca;
  padding: 64px var(--pad) 0;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand .brand-mark svg { width: 28px; height: 28px; }
.footer-col p { font-size: 0.92rem; color: #aab3ad; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 0.93rem; color: #c9cfca; transition: color 0.15s ease; }
.footer-col ul a:hover { color: var(--money-bright); }
.footer-contact li {
  font-size: 0.93rem;
  color: #c9cfca;
  margin-bottom: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; stroke: var(--money-bright); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.social-row a:hover { background: var(--money); border-color: var(--money); }
.social-row svg { width: 16px; height: 16px; stroke: var(--white); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
  color: #8c958f;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { text-align: left; }
}

/* ============================================
   Service detail page
   ============================================ */
.detail-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.detail-block { margin-bottom: 50px; }
.detail-block h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.detail-block > p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }

.subservice-list { display: flex; flex-direction: column; gap: 18px; }
.subservice {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  background: var(--white);
}
.subservice h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.subservice h4::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--money-bright);
  flex-shrink: 0;
}
.subservice p { color: var(--ink-soft); font-size: 0.93rem; }

.sidebar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 22px;
}
.sidebar-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--money-deep);
  margin-bottom: 16px;
}
.sidebar-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-services li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.15s ease;
}
.sidebar-services li:last-child a { border-bottom: none; }
.sidebar-services li a:hover { color: var(--money-deep); }
.sidebar-services li a.active { color: var(--money-deep); font-weight: 600; }
.sidebar-services li a span { font-size: 0.74rem; color: var(--money); font-family: var(--font-display); font-weight: 700; flex-shrink: 0; margin-left: 10px; }
.tech-pill-group { margin-bottom: 14px; }
.tech-pill-group strong { display: block; font-size: 0.84rem; margin-bottom: 8px; color: var(--ink); }
.tech-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-pill {
  font-size: 0.78rem;
  padding: 5px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
}

/* ============================================
   About page bits
   ============================================ */
.mv-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 700px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}
.mv-card.fill { background: var(--money); color: var(--white); border-color: var(--money); }
.mv-card.fill p { color: #d8f0e3; }
.mv-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.mv-card p { color: var(--ink-soft); }

/* ============================================
   Contact page
   ============================================ */
.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.info-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.info-card:first-child { padding-top: 0; }
.info-card .ic {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--money-tint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card .ic svg { width: 21px; height: 21px; stroke: var(--money-deep); }
.info-card h4 { font-size: 0.96rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 0.93rem; }
.info-card a:hover { color: var(--money-deep); }

.hours-table { margin-top: 26px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hours-row strong { color: var(--ink); font-weight: 600; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--money);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn-primary { width: 100%; margin-top: 6px; }

.service-tags-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }

/* ============================================
   Reveal-on-scroll (subtle, respects reduced motion)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   Misc utilities
   ============================================ */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.section-head .btn-row { margin-top: 22px; }
