/* ==========================================================================
   PWA Media - Reset + Tokens
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

:root {
  --sky-50:  #F0F9FF;
  --sky-100: #E0F2FE;
  --sky-200: #BAE6FD;
  --sky-300: #7DD3FC;
  --sky-400: #38BDF8;
  --sky-500: #0EA5E9;
  --sky-600: #0284C7;
  --sky-700: #0369A1;
  --sky-800: #075985;
  --sky-900: #0C4A6E;

  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;

  --white: #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -12px rgba(2, 132, 199, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --container: 1160px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-700);
  background: var(--sky-100);
  padding: 6px 12px;
  border-radius: 999px;
}

.lead { font-size: 1.125rem; color: var(--ink-700); }
.muted { color: var(--ink-500); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--sky-500);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { background: var(--sky-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--sky-700);
  border: 1px solid var(--sky-200);
}
.btn-ghost:hover { background: var(--sky-50); }
.btn-white { background: var(--white); color: var(--sky-700); }
.btn-white:hover { background: var(--sky-50); }
.btn-arrow::after { content: "→"; font-size: 1rem; line-height: 1; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ink-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 500;
  color: var(--ink-700);
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--sky-700); }
.nav-cta { display: inline-flex; gap: 10px; align-items: center; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ink-700);
}
.menu-toggle:hover { background: var(--ink-100); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--ink-100);
    padding: 8px 24px 16px;
  }
  .nav.open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-100);
  }
  .nav.open .nav-links a:last-child { border-bottom: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(14, 165, 233, 0.12), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(125, 211, 252, 0.18), transparent 60%),
    linear-gradient(180deg, #F6FBFF 0%, #FFFFFF 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--sky-500), var(--sky-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { margin-bottom: 32px; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 12px; color: var(--ink-500); font-size: 0.92rem; }
.hero-trust .dots {
  display: inline-flex;
  gap: 4px;
}
.hero-trust .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky-400);
  box-shadow: 0 0 0 3px var(--sky-100);
}

.hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(100% 100% at 0% 0%, var(--sky-200), transparent 60%),
    radial-gradient(100% 100% at 100% 100%, var(--sky-400), var(--sky-600));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(3, 105, 161, 0.55) 100%);
  pointer-events: none;
}
.hero-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 40%, transparent 80%);
}
.hero-stat-stack { position: relative; display: grid; gap: 10px; }
.hero-stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.hero-stat-card strong { font-size: 1.15rem; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Section chrome
   ========================================================================== */

section { padding: clamp(64px, 8vw, 110px) 0; }
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}
.section-head p { margin-top: 14px; color: var(--ink-500); font-size: 1.08rem; }
.section-head .eyebrow { margin-bottom: 14px; }

.section-alt { background: var(--ink-50); }
.section-dark {
  background: linear-gradient(135deg, var(--sky-800), var(--sky-600));
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-head p { color: rgba(255,255,255,0.82); }

/* ==========================================================================
   Services grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-200);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-100);
  color: var(--sky-700);
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--ink-500); font-size: 0.98rem; }

/* ==========================================================================
   Results band
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.stat .num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FFFFFF, #BAE6FD);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

/* ==========================================================================
   Case studies
   ========================================================================== */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky-100);
}
.case-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.case-card:hover .thumb img { transform: scale(1.04); }
.case-card .body { padding: 22px 24px 26px; }
.case-card .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky-700);
  background: var(--sky-50);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.case-card h3 { margin-bottom: 8px; }
.case-card p { color: var(--ink-500); font-size: 0.95rem; }
.case-card .result {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
  color: var(--sky-700);
  font-weight: 600;
}

/* ==========================================================================
   Testimonials (YouTube)
   ========================================================================== */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-card .frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-900);
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card .caption {
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.video-card .caption strong { color: var(--ink-900); }

/* ==========================================================================
   Why us + Industries
   ========================================================================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar .badge {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sky-100);
  color: var(--sky-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.pillar h3 { font-size: 1.08rem; margin-bottom: 4px; }
.pillar p { color: var(--ink-500); font-size: 0.95rem; }

.industries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.industries li {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  padding: 12px 18px;
  text-align: center;
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] {
  border-color: var(--sky-200);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--sky-600);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 10px;
  color: var(--ink-500);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background:
    radial-gradient(60% 80% at 10% 10%, rgba(14,165,233,0.12), transparent 60%),
    radial-gradient(50% 70% at 90% 90%, rgba(125,211,252,0.18), transparent 60%),
    var(--sky-50);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  border: 1px solid var(--sky-100);
}
.cta-band h2 { max-width: 20ch; margin: 0 auto 14px; }
.cta-band p { color: var(--ink-500); margin-bottom: 24px; max-width: 52ch; margin-inline: auto; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.92rem;
  max-width: 34ch;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-300);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover {
  background: var(--sky-500);
  color: var(--white);
  transform: translateY(-1px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a {
  color: var(--ink-300);
  font-size: 0.95rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  font-size: 0.88rem;
  color: var(--ink-500);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--ink-300); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Legal pages
   ========================================================================== */

.legal {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: 8px; }
.legal .meta {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-100);
}
.legal h2 {
  font-size: 1.35rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--sky-800);
}
.legal h3 { font-size: 1.08rem; margin-top: 20px; margin-bottom: 8px; }
.legal p { margin-bottom: 14px; color: var(--ink-700); }
.legal ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal ul li { margin-bottom: 8px; color: var(--ink-700); }
.legal a { color: var(--sky-700); text-decoration: underline; }
.legal a:hover { color: var(--sky-900); }
.legal strong { color: var(--ink-900); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Trust row (homepage + about)
   ========================================================================== */

.trust-row {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
}
.trust-label {
  text-align: center;
  color: var(--ink-500);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.trust-marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}
.trust-marks li a,
.trust-marks li span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  background: var(--ink-50);
  color: var(--ink-700);
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.trust-marks li a:hover {
  border-color: var(--sky-300);
  background: var(--white);
  color: var(--sky-700);
  transform: translateY(-1px);
}

/* ==========================================================================
   See-all teaser links + multi-button CTA
   ========================================================================== */

.see-all {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ==========================================================================
   Page header band (non-homepage pages)
   ========================================================================== */

.page-header {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(50% 70% at 80% 10%, rgba(14, 165, 233, 0.10), transparent 60%),
    linear-gradient(180deg, #F6FBFF 0%, #FFFFFF 100%);
  text-align: center;
  border-bottom: 1px solid var(--ink-100);
}
.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 { margin-bottom: 14px; }
.page-header p {
  color: var(--ink-500);
  font-size: 1.08rem;
  max-width: 60ch;
  margin-inline: auto;
}

/* ==========================================================================
   Services detail list (services page)
   ========================================================================== */

.service-detail {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.service-detail .service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.service-detail .icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-100);
  color: var(--sky-700);
}
.service-detail h3 {
  font-size: 1.35rem;
  margin: 0;
}
.service-detail p.lead-copy {
  color: var(--ink-700);
  margin-bottom: 22px;
  font-size: 1rem;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-detail-grid h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-bottom: 10px;
}
.service-detail-grid ul {
  list-style: disc;
  padding-left: 20px;
}
.service-detail-grid li {
  color: var(--ink-700);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
@media (max-width: 640px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail { padding: 24px; }
}

/* ==========================================================================
   Pricing philosophy
   ========================================================================== */

.pricing-philosophy {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
}
.pricing-philosophy h2 { margin-bottom: 16px; }
.pricing-philosophy p { color: var(--ink-700); margin-bottom: 14px; max-width: 70ch; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.pricing-grid .tile {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 22px;
}
.pricing-grid h4 { font-size: 1rem; margin-bottom: 8px; color: var(--sky-800); }
.pricing-grid p { font-size: 0.95rem; color: var(--ink-500); margin: 0; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-bottom: 12px;
}
.contact-card address {
  font-style: normal;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 20px;
}
.contact-card a { color: var(--sky-700); font-weight: 500; }
.contact-card a:hover { color: var(--sky-900); }
.contact-card .contact-block { margin-bottom: 22px; }
.contact-card .contact-block:last-child { margin-bottom: 0; }
.contact-card ul.find-us { display: grid; gap: 8px; }
.contact-card ul.find-us li a {
  display: inline-block;
  padding-left: 18px;
  position: relative;
  color: var(--sky-700);
  font-weight: 500;
}
.contact-card ul.find-us li a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--sky-500);
}
.contact-card ul.find-us li a:hover { color: var(--sky-900); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  aspect-ratio: 4 / 5;
  background: var(--ink-100);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-embed { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Case study long-form
   ========================================================================== */

.case-long {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--ink-100);
}
.case-long:first-of-type { border-top: none; }
.case-long .thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sky-100);
}
.case-long .thumb img { width: 100%; height: 100%; object-fit: cover; }
.case-long .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky-700);
  background: var(--sky-50);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.case-long h2 { margin-bottom: 14px; }
.case-long h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-top: 18px;
  margin-bottom: 6px;
}
.case-long p { color: var(--ink-700); margin-bottom: 10px; }
.case-long .result-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--sky-100);
  color: var(--sky-800);
  font-weight: 600;
  font-size: 0.95rem;
}
.case-long .result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.case-long .result-pills .result-pill { margin-top: 0; }
@media (max-width: 860px) {
  .case-long { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Founder bio (about page)
   ========================================================================== */

.founder {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.founder .photo {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}
.founder .role {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-700);
  font-weight: 600;
  margin-bottom: 6px;
}
.founder h3 { font-size: 1.4rem; margin-bottom: 14px; }
.founder p { color: var(--ink-700); margin-bottom: 12px; }
@media (max-width: 640px) {
  .founder {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder .photo { margin-inline: auto; width: 160px; }
}
