*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #1a2332;
  --ink2: #2d3e50;
  --teal: #1b8a7a;
  --teal-lt: #e8f5f3;
  --teal-mid: #b2dad5;
  --slate: #5a6a7e;
  --border: #e4eaf0;
  --bg: #f8fafb;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.34s;
}

.delay-4 {
  animation-delay: 0.46s;
}

.delay-5 {
  animation-delay: 0.58s;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}

nav .container {
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal);
  color: white !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 9px 20px;
  border-radius: 8px;
  letter-spacing: 0.02em !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: #167a6b !important;
  color: white !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  padding: 152px 0 96px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  mask-image: radial-gradient(
    ellipse 70% 90% at 100% 50%,
    black 10%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 90% at 100% 50%,
    black 10%,
    transparent 75%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal-lt);
  border: 1px solid var(--teal-mid);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2.5s infinite;
}

.badge-text {
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  background: var(--teal);
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: #167a6b;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--teal-mid);
  transform: translateY(-1px);
}

/* trust strip */
.trust-strip {
  display: flex;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.trust-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.trust-desc {
  font-size: 12px;
  color: var(--slate);
  margin-top: 1px;
}

/* ── SECTION SHARED ── */
section {
  padding: 96px 0;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.section-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
#services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.09);
  transform: translateY(-3px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 300;
}

.section-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.inline-link {
  font-size: 15px;
  color: var(--teal);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.inline-link:hover {
  color: #167a6b;
}

/* ── TOOLS ── */
#tools {
  background: var(--white);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.25s;
}

.tool-card:hover {
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.09);
  transform: translateY(-3px);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.tool-icon svg,
.tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tool-name {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.tool-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}

.tools-more {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  font-weight: 400;
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-mid));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.step-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(26, 35, 50, 0.07);
}

.about-card-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.about-card-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-card-bio {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--slate);
}

.about-location svg {
  flex-shrink: 0;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--teal-lt);
  border-radius: 50%;
  z-index: -1;
}

.about-text .section-sub {
  margin-bottom: 32px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.value-text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}

.value-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── CONTACT ── */
#contact {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-text .eyebrow {
  color: var(--teal-mid);
}

.contact-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-heading em {
  font-style: italic;
  color: var(--teal-mid);
}

.contact-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-detail-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.2);
}

.form-heading {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  background: var(--teal);
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.form-submit:hover {
  background: #167a6b;
  transform: translateY(-1px);
}

.form-note {
  font-size: 11px;
  color: var(--slate);
  text-align: center;
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: #111927;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo .logo-name {
  font-size: 16px;
  color: white;
}

.footer-logo .logo-sub {
  color: var(--teal-mid);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── CASE STUDIES ── */

/* Hero */
.cs-hero {
  background: var(--ink);
  padding: 140px 24px 72px;
  position: relative;
  overflow: hidden;
}

.cs-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255,255,255,0.03) 47px, rgba(255,255,255,0.03) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255,255,255,0.03) 47px, rgba(255,255,255,0.03) 48px);
  pointer-events: none;
}

.cs-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cs-back {
  display: inline-block;
  font-size: 13px;
  color: var(--teal-mid);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.cs-back:hover {
  color: var(--teal);
}

.cs-hero .eyebrow {
  color: var(--teal);
  margin-bottom: 20px;
}

.cs-hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cs-hero h1 em {
  font-style: italic;
  color: var(--teal-mid);
}

.cs-subtitle {
  font-size: 17px;
  color: var(--teal-mid);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.65;
}

/* Stats Bar */
.cs-stats-bar {
  background: var(--teal);
  padding: 0 24px;
}

.cs-stats-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.cs-stat {
  padding: 28px 16px;
  text-align: center;
}

.cs-stat-number {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.cs-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Article Body */
.cs-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.cs-article h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  margin-top: 52px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cs-article h2:first-child {
  margin-top: 0;
}

.cs-article p {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 18px;
  line-height: 1.75;
}

.cs-article strong {
  font-weight: 600;
  color: var(--ink);
}

.cs-article ul,
.cs-article ol {
  margin: 16px 0;
  padding-left: 20px;
}

.cs-article li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 8px;
}

/* Callout Block */
.callout {
  background: var(--teal-lt);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.callout p {
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.callout p + p {
  margin-top: 12px;
}

/* Timeline */
.timeline {
  margin: 36px 0;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--teal-mid);
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.timeline-day {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.timeline-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* Deliverables Grid */
.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.deliverable {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
}

.deliverable-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.deliverable-icon svg {
  width: 18px;
  height: 18px;
}

.deliverable-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.deliverable-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
}

/* Result Block */
.result-block {
  background: var(--ink);
  border-radius: 12px;
  padding: 36px 32px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.result-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255,255,255,0.03) 47px, rgba(255,255,255,0.03) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255,255,255,0.03) 47px, rgba(255,255,255,0.03) 48px);
  pointer-events: none;
}

.result-block-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.result-block .result-big {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--teal-mid);
  line-height: 1;
  margin-bottom: 8px;
}

.result-block .result-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.result-row .result-big {
  font-size: 36px;
}

/* CTA Section */
.cs-cta-section {
  background: var(--ink);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cs-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(255,255,255,0.03) 47px, rgba(255,255,255,0.03) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(255,255,255,0.03) 47px, rgba(255,255,255,0.03) 48px);
  pointer-events: none;
}

.cs-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.cs-cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}

.cs-cta-inner p {
  font-size: 15px;
  color: var(--teal-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Listing Page */
.case-studies-listing {
  padding-top: 152px;
  min-height: 100vh;
}

.case-study-card {
  text-decoration: none;
  display: block;
}

.case-study-card-stat {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  #hero {
    padding: 120px 0 72px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .deliverables {
    grid-template-columns: 1fr;
  }

  .cs-stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cs-stat {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .cs-stat:last-child {
    border-bottom: none;
  }

  .trust-strip {
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-h1 {
    font-size: 34px;
  }
}
