/* Awesomate section styles — everything block settings can't express.
   Values match design/*.dc.html exports; tokens live in theme.json. */

:root {
  --aw-grad: linear-gradient(135deg, #e9484d, #ef9563);
  --aw-muted: rgba(255, 255, 255, 0.65);
  --aw-muted-2: rgba(255, 255, 255, 0.55);
  --aw-muted-3: rgba(255, 255, 255, 0.5);
  --aw-line: rgba(255, 255, 255, 0.08);
  --aw-card-bg: rgba(255, 255, 255, 0.04);
  --aw-pad-x: clamp(20px, 4.5vw, 56px);
  --aw-font-accent: 'Space Grotesk', 'Inter', sans-serif;
}

body { overflow-x: hidden; }

.aw-section {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--aw-pad-x);
  padding-right: var(--aw-pad-x);
  box-sizing: border-box;
}

/* ---------- helpers ---------- */

.aw-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ef9563;
  margin: 0 0 20px;
}

.aw-grad-text {
  background: var(--aw-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.aw-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.aw-btn--gradient { background: var(--aw-grad); color: #fff; }
.aw-btn--gradient:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(233, 72, 77, 0.4); color: #fff; }
.aw-btn--white { background: #fff; color: #0f1128; font-size: 16px; padding: 18px 36px; }
.aw-btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2); color: #0f1128; }
.aw-btn--outline { border: 1.5px solid rgba(255, 255, 255, 0.3); color: #fff; font-size: 16px; padding: 18px 36px; }
.aw-btn--outline:hover { border-color: #ef9563; color: #ef9563; }
.aw-btn--lg { font-size: 16px; padding: 20px 44px; }

.aw-link { font-size: 14px; font-weight: 700; color: #ef9563; text-decoration: none; }
.aw-link:hover { color: #e9484d; }

/* ---------- header ---------- */

.aw-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.aw-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px var(--aw-pad-x);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.aw-header-logo img { height: 30px; width: auto; display: block; }
.aw-nav { display: flex; align-items: center; gap: 32px; }
.aw-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.aw-nav a:hover { color: #ef9563; }
.aw-nav .aw-btn { font-size: 14px; padding: 12px 24px; }
.aw-btn--login { border: 1.5px solid rgba(255, 255, 255, 0.3); color: #fff; }
.aw-btn--login:hover { border-color: #ef9563; color: #ef9563; }
@media (max-width: 860px) { .aw-nav .aw-btn--login { display: none; } }
@media (max-width: 860px) {
  .aw-nav a:not(.aw-btn), .aw-nav-drop { display: none; }
}

.aw-nav-drop { position: relative; }
.aw-nav-caret { font-size: 9px; opacity: 0.6; }
.aw-nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  display: none;
  min-width: 180px;
  z-index: 30;
}
.aw-nav-drop:hover .aw-nav-menu,
.aw-nav-drop:focus-within .aw-nav-menu { display: block; }
.aw-nav-menu a {
  display: block;
  background: #12172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.aw-nav-menu a:first-child { border-radius: 12px 12px 0 0; }
.aw-nav-menu a:last-child { border-radius: 0 0 12px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.aw-nav-menu a:hover { background: #1a2140; color: #ef9563; }

/* page top padding so the absolute header clears content on pages without a hero */
.aw-page-top { padding-top: 140px; }

/* ---------- hero ---------- */

.aw-hero {
  position: relative;
  min-height: min(860px, 100svh);
  display: flex;
  flex-direction: column;
}
.aw-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.aw-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.6) 0%, rgba(10, 14, 26, 0.25) 45%, #0a0e1a 100%);
}
.aw-hero-content {
  position: relative;
  width: 100%;
  margin: auto auto 0;
  padding: 180px var(--aw-pad-x) 80px;
  max-width: 1440px;
  box-sizing: border-box;
}
.aw-hero-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.aw-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 32px 48px;
}
.aw-hero-sub { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--aw-muted); max-width: 600px; margin: 0; }
.aw-hero-ctas { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- section headings ---------- */

.aw-h2 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.aw-split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px 48px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.aw-split-head .aw-h2 { max-width: 720px; }
.aw-split-head p { font-size: 16px; line-height: 1.65; color: var(--aw-muted-3); max-width: 380px; margin: 0; }

/* ---------- plan ladder ---------- */

.aw-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1080px) { .aw-plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .aw-plans { grid-template-columns: 1fr; } }

.aw-plan-card {
  position: relative;
  background: var(--aw-card-bg);
  border: 1px solid var(--aw-line);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.aw-plan-card:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-4px); }
.aw-plan-card--flagship {
  background: linear-gradient(160deg, rgba(233, 72, 77, 0.16), rgba(239, 149, 99, 0.1));
  border: 1.5px solid #e9484d;
}
.aw-plan-card--flagship:hover {
  background: linear-gradient(160deg, rgba(233, 72, 77, 0.16), rgba(239, 149, 99, 0.1));
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(233, 72, 77, 0.28);
}
.aw-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--aw-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.aw-plan-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 18px;
}
.aw-plan-card--flagship .aw-plan-tier { color: rgba(255, 255, 255, 0.55); }
.aw-plan-name {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 27px;
  color: #fff;
  margin: 0 0 6px;
}
.aw-plan-tag { font-size: 15px; font-weight: 600; color: #ef9563; margin: 0 0 18px; }
.aw-plan-desc { font-size: 14.5px; line-height: 1.6; color: var(--aw-muted-2); margin: 0 0 24px; flex: 1; }
.aw-plan-card--flagship .aw-plan-desc { color: var(--aw-muted); }
.aw-price { font-family: var(--aw-font-accent); font-weight: 700; font-size: 32px; color: #fff; }
.aw-price small { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.45); }

/* ---------- pro promise band ---------- */

.aw-promise {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: clamp(28px, 4.5vw, 64px);
}
@media (max-width: 980px) { .aw-promise { grid-template-columns: 1fr; gap: 40px; } }
.aw-promise .aw-h2 { font-size: clamp(32px, 3.5vw, 46px); line-height: 1.08; margin-bottom: 20px; }
.aw-promise p { font-size: 16.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); margin: 0 0 28px; }
.aw-promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .aw-promise-grid { grid-template-columns: 1fr; } }
.aw-mini-card {
  background: var(--aw-card-bg);
  border: 1px solid var(--aw-line);
  border-radius: 16px;
  padding: 26px;
  transition: border-color 0.18s ease;
}
.aw-mini-card:hover { border-color: rgba(239, 149, 99, 0.5); }
.aw-mini-label { font-family: var(--aw-font-accent); font-size: 14px; font-weight: 700; margin: 0 0 10px; }
.aw-mini-card p:last-child { font-size: 15.5px; font-weight: 600; color: #fff; line-height: 1.45; margin: 0; }

/* ---------- work / case studies ---------- */

.aw-work-rows { display: flex; flex-direction: column; gap: 56px; }
.aw-work-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.aw-work-row--flip { grid-template-columns: 1fr 1.2fr; }
@media (max-width: 900px) {
  .aw-work-row, .aw-work-row--flip { grid-template-columns: 1fr; }
  .aw-work-row--flip .aw-work-copy { order: 1; }
  .aw-work-row--flip .aw-work-img { order: 0; }
}
.aw-work-img {
  width: 100%;
  height: clamp(260px, 32vw, 400px);
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.25s ease;
}
.aw-work-img:hover { transform: scale(1.02); }
.aw-work-copy .aw-client-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 24px; }
.aw-work-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
}
.aw-work-copy p { font-size: 16px; line-height: 1.65; color: var(--aw-muted-2); margin: 0 0 24px; }

/* ---------- stats + logos ---------- */

.aw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  border-top: 1px solid var(--aw-line);
  padding-top: 56px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .aw-stats { grid-template-columns: 1fr; gap: 28px; } }
.aw-stat-num {
  font-family: var(--aw-font-accent);
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  background: var(--aw-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.aw-stat-label { font-size: 15px; color: var(--aw-muted-2); }
.aw-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 32px 56px; }
.aw-logos img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.45; }

/* ---------- light band (team + blog strip) ---------- */

.aw-band-light { background: #f8f7f4; color: #0f1128; }
.aw-band-light .aw-h2, .aw-band-light .aw-work-title { color: #0f1128; }
.aw-band-light .aw-link { color: #e9484d; }
.aw-band-light .aw-link:hover { color: #0f1128; }

.aw-team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .aw-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .aw-team-grid { grid-template-columns: repeat(2, 1fr); } }
.aw-team-card { transition: transform 0.2s ease; }
.aw-team-card:hover { transform: translateY(-8px); }
.aw-team-photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  margin-bottom: 14px;
}
.aw-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.aw-team-name {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #0f1128;
}
.aw-team-role { font-size: 13px; color: #78716c; }

.aw-blogstrip {
  border-top: 1px solid #e8e5df;
  padding-top: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
@media (max-width: 860px) { .aw-blogstrip { grid-template-columns: 1fr; gap: 28px; } }
.aw-blogstrip-head {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  color: #0f1128;
  margin: 0 0 12px;
}
.aw-blogstrip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e5df;
  text-decoration: none;
  transition: padding-left 0.18s ease;
}
.aw-blogstrip-item:hover { padding-left: 12px; }
.aw-blogstrip-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: #0f1128;
}
.aw-blogstrip-meta { font-size: 13px; color: #78716c; flex-shrink: 0; }

/* ---------- CTA band ---------- */

.aw-cta { text-align: center; }
.aw-cta-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 32px;
}

/* ---------- footer ---------- */

.aw-footer { border-top: 1px solid var(--aw-line); }
.aw-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px var(--aw-pad-x);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
}
.aw-footer-inner > img { height: 26px; width: auto; }
.aw-footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 13px; color: var(--aw-muted-3); }
.aw-footer-links a { color: var(--aw-muted-3); text-decoration: none; }
.aw-footer-links a:hover { color: #ef9563; }

/* ---------- spacing utilities used by patterns ---------- */

.aw-pt-lg { padding-top: clamp(56px, 8vw, 96px); }
.aw-pb-lg { padding-bottom: clamp(56px, 8vw, 96px); }
.aw-pt-md { padding-top: 48px; }
.aw-pb-md { padding-bottom: 48px; }

/* ---------- header variants (body-class driven) ----------
   Default: solid dark bar with hairline (Work/Plans/Contact/Blog).
   Overlay: transparent over the hero image (Home, About). */

.aw-header {
  position: static;
  background: #0a0e1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.aw-header-overlay .aw-header {
  position: absolute;
  background: transparent;
  border-bottom: none;
}

.aw-footer { background: #0a0e1a; }

/* light pages: blog index, archives, single posts */
body.blog, body.archive, body.search, body.single-post { background: #f8f7f4; color: #0f1128; }

/* ---------- page heroes (no image) ---------- */

.aw-page-hero { padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(40px, 6vw, 72px); }
.aw-h1 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  max-width: 1000px;
}
.aw-h1--md { font-size: clamp(44px, 6vw, 80px); line-height: 1.02; }
.aw-page-hero-sub { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: rgba(255, 255, 255, 0.6); max-width: 620px; margin: 36px 0 0; }

.aw-chips { display: flex; align-items: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.aw-chip { font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 999px; }
.aw-chip--green { background: rgba(52, 163, 99, 0.15); border: 1px solid rgba(52, 163, 99, 0.4); color: #6ee7a0; }
.aw-chip--dim { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }

.aw-pill {
  font-size: 12px;
  font-weight: 700;
  color: #ef9563;
  border: 1px solid rgba(239, 149, 99, 0.4);
  padding: 4px 12px;
  border-radius: 999px;
}
.aw-pills { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }

/* ---------- about ---------- */

.aw-hero--about { min-height: min(640px, 90svh); }
.aw-hero--about .aw-hero-bg { opacity: 0.45; }
.aw-hero--about .aw-hero-scrim { background: linear-gradient(180deg, rgba(10, 14, 26, 0.6) 0%, rgba(10, 14, 26, 0.3) 50%, #0a0e1a 100%); }
.aw-hero--about .aw-hero-content { padding-bottom: 72px; }
.aw-hero--about .aw-hero-title { font-size: clamp(44px, 6.5vw, 88px); }

.aw-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(56px, 6.5vw, 88px);
  padding-bottom: clamp(56px, 6.5vw, 88px);
}
@media (max-width: 900px) { .aw-story { grid-template-columns: 1fr; } }
.aw-story > img { width: 100%; height: clamp(320px, 40vw, 520px); object-fit: cover; border-radius: 24px; }
.aw-story .aw-h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; margin-bottom: 24px; }
.aw-story p { font-size: 17px; line-height: 1.75; color: rgba(255, 255, 255, 0.6); margin: 0 0 20px; }
.aw-story p:last-child { margin-bottom: 0; }

.aw-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .aw-values { grid-template-columns: 1fr; } }
.aw-value-card {
  background: var(--aw-card-bg);
  border: 1px solid var(--aw-line);
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.18s ease, background 0.18s ease;
}
.aw-value-card:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-4px); }
.aw-value-num { font-family: var(--aw-font-accent); font-size: 14px; font-weight: 700; margin: 0 0 16px; }
.aw-value-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  margin: 0 0 12px;
}
.aw-value-card p:last-child { font-size: 15px; line-height: 1.65; color: var(--aw-muted-2); margin: 0; }

.aw-team-feature { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .aw-team-feature { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aw-team-feature { grid-template-columns: 1fr; } }
.aw-member-card {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aw-member-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(15, 17, 40, 0.14); }
.aw-member-photo { aspect-ratio: 1 / 1; overflow: hidden; }
.aw-member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.aw-member-body { padding: 24px 28px; }
.aw-member-name { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 600; font-size: 23px; color: #0f1128; }
.aw-member-role { font-size: 14px; font-weight: 600; color: #e9484d; margin: 2px 0 10px; }
.aw-member-body p { font-size: 14px; line-height: 1.6; color: #78716c; margin: 0; }
.aw-band-light .aw-eyebrow--red { color: #e9484d; }
.aw-band-light .aw-split-head p { color: #78716c; max-width: 360px; }

/* ---------- work page ---------- */

.aw-project-grid {
  border-top: 1px solid var(--aw-line);
  padding-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .aw-project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aw-project-grid { grid-template-columns: 1fr; } }
.aw-project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: block;
}
.aw-project-card:hover { transform: translateY(-6px); }
.aw-project-card > img { width: 100%; height: 300px; object-fit: cover; display: block; }
.aw-project-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(10, 14, 26, 0.9));
}
.aw-project-name { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 600; font-size: 21px; color: #fff; }
.aw-project-tag { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-top: 4px; }

/* ---------- plans page ---------- */

.aw-plan-card .aw-price--lg { font-size: clamp(36px, 3.5vw, 44px); margin-bottom: 4px; }
.aw-plan-features { display: flex; flex-direction: column; gap: 10px; margin: 0 0 28px; }
.aw-plan-features div { font-size: 13.5px; color: rgba(255, 255, 255, 0.7); }
.aw-plan-card--flagship .aw-plan-features div { color: rgba(255, 255, 255, 0.8); }
.aw-plan-cta {
  text-align: center;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  display: block;
}
.aw-plan-cta:hover { border-color: #ef9563; color: #ef9563; }
.aw-plan-cta--gradient { background: var(--aw-grad); border: none; }
.aw-plan-cta--gradient:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(233, 72, 77, 0.4); color: #fff; }

.aw-promise-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 680px) { .aw-promise-grid--3 { grid-template-columns: 1fr; } }

.aw-matrix { border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 20px; overflow: hidden; }
.aw-matrix-scroll { overflow-x: auto; }
.aw-matrix-inner { min-width: 860px; }
.aw-matrix-head {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 32px;
  gap: 16px;
}
.aw-matrix-head > div { font-size: 14px; font-weight: 700; color: #fff; text-align: center; }
.aw-matrix-head > div:first-child {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aw-muted-3);
  text-align: left;
}
.aw-matrix-head small { display: block; font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.45); }
.aw-matrix-group { padding: 22px 32px 10px; background: rgba(255, 255, 255, 0.02); }
.aw-matrix-group div { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #ef9563; }
.aw-matrix-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 13px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}
.aw-matrix-row:hover { background: rgba(255, 255, 255, 0.03); }
.aw-matrix-row > div { font-size: 14px; font-weight: 600; text-align: center; }
.aw-matrix-row > div:first-child { font-weight: 400; color: rgba(255, 255, 255, 0.75); text-align: left; }
.aw-cell-ok { color: #6ee7a0; }
.aw-cell-no { color: rgba(255, 255, 255, 0.3); }
.aw-cell-plus { color: #ef9563; }
.aw-cell-val { color: rgba(255, 255, 255, 0.85); }
.aw-matrix-legend { display: flex; gap: 24px; margin-top: 20px; font-size: 13px; color: rgba(255, 255, 255, 0.45); flex-wrap: wrap; }
.aw-matrix-legend span:last-child { margin-left: auto; }
@media (max-width: 860px) { .aw-matrix-legend span:last-child { margin-left: 0; } }

/* ---------- contact ---------- */

.aw-contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5.5vw, 80px);
  align-items: start;
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
@media (max-width: 980px) { .aw-contact { grid-template-columns: 1fr; } }
.aw-contact-sub { font-size: 18px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); max-width: 480px; margin: 32px 0 48px; }
.aw-contact-items { display: flex; flex-direction: column; gap: 20px; }
.aw-contact-item { display: flex; align-items: center; gap: 16px; }
.aw-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.aw-contact-icon--red { background: rgba(233, 72, 77, 0.12); border: 1px solid rgba(233, 72, 77, 0.3); color: #e9484d; }
.aw-contact-icon--orange { background: rgba(239, 149, 99, 0.12); border: 1px solid rgba(239, 149, 99, 0.3); color: #ef9563; }
.aw-contact-icon--blue { background: rgba(30, 99, 233, 0.12); border: 1px solid rgba(30, 99, 233, 0.3); color: #5c8df0; }
.aw-contact-label { font-size: 13px; color: rgba(255, 255, 255, 0.45); }
.aw-contact-value { font-size: 15.5px; font-weight: 600; color: #fff; }

.aw-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--aw-line);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 48px);
}
.aw-form { display: flex; flex-direction: column; gap: 20px; }
.aw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .aw-form-row { grid-template-columns: 1fr; } }
.aw-field { display: flex; flex-direction: column; gap: 8px; }
.aw-field label { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.6); }
.aw-field input, .aw-field textarea {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
}
.aw-field input::placeholder, .aw-field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.aw-field input:focus, .aw-field textarea:focus { border-color: #ef9563; }
.aw-field textarea { resize: vertical; }
.aw-topic-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.aw-topic-pills input { position: absolute; opacity: 0; pointer-events: none; }
.aw-topic-pills span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.15s ease;
}
.aw-topic-pills span:hover { border-color: #ef9563; }
.aw-topic-pills input:checked + span { background: var(--aw-grad); border-color: transparent; }
.aw-form-submit {
  text-align: center;
  background: var(--aw-grad);
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  padding: 17px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.aw-form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(233, 72, 77, 0.4); }
.aw-form-note { font-size: 12.5px; color: rgba(255, 255, 255, 0.35); text-align: center; }
.aw-form-note a { color: #ef9563; }
.aw-form-thanks { text-align: center; padding: 64px 24px; }
.aw-form-thanks .tick { font-size: 48px; margin-bottom: 16px; color: #6ee7a0; }
.aw-form-thanks h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #fff;
  margin: 0 0 12px;
}
.aw-form-thanks p { font-size: 15.5px; color: rgba(255, 255, 255, 0.6); margin: 0; }
.aw-honey { position: absolute !important; left: -9999px; }

/* ---------- FAQ accordion ---------- */

.aw-faq { max-width: 872px; scroll-margin-top: 24px; }
.aw-faq-item {
  background: var(--aw-card-bg);
  border: 1px solid var(--aw-line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.aw-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}
.aw-faq-item summary::-webkit-details-marker { display: none; }
.aw-faq-item summary:hover { color: #ef9563; }
.aw-faq-icon { color: #ef9563; font-size: 22px; font-weight: 400; transition: transform 0.2s ease; flex-shrink: 0; }
.aw-faq-item[open] .aw-faq-icon { transform: rotate(45deg); }
.aw-faq-item > p { margin: 0; padding: 0 24px 22px; font-size: 15.5px; line-height: 1.7; color: var(--aw-muted); }

/* ---------- blog (light pages) ---------- */

.aw-blog-hero { padding-top: clamp(48px, 5.5vw, 72px); padding-bottom: 8px; }
.aw-blog-hero .aw-h1 { color: #0f1128; font-size: clamp(48px, 6.5vw, 80px); }
.aw-blog-hero .aw-eyebrow { color: #e9484d; margin-bottom: 16px; }

.aw-featured-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: #0f1128;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 48px;
}
@media (max-width: 900px) { .aw-featured-card { grid-template-columns: 1fr; } }
.aw-featured-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(15, 17, 40, 0.25); }
.aw-featured-card > img, .aw-featured-card .wp-block-post-featured-image img { width: 100%; height: 100%; min-height: 300px; max-height: 420px; object-fit: cover; display: block; }
.aw-featured-body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.aw-featured-badge {
  background: var(--aw-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.aw-featured-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  color: #fff;
  margin: 20px 0 16px;
}
.aw-featured-title a { color: #fff; text-decoration: none; }
.aw-featured-body p { font-size: 15.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.6); margin: 0; }

.aw-cat-pills { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 32px; padding-bottom: 32px; }
.aw-cat-pills a {
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: #0f1128;
  border: 1px solid #e8e5df;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.aw-cat-pills a:hover { border-color: #e9484d; color: #0f1128; }

.aw-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .aw-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .aw-post-grid { grid-template-columns: 1fr; } }
.aw-post-card {
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aw-post-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(15, 17, 40, 0.12); }
.aw-post-card .wp-block-post-featured-image img, .aw-post-card > a > img { width: 100%; height: 190px; object-fit: cover; display: block; }
.aw-post-card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.aw-post-card-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.aw-post-card-cat a { color: #e9484d; text-decoration: none; }
.aw-post-card-title { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 600; font-size: 21px; line-height: 1.25; flex: 1; margin: 0; }
.aw-post-card-title a { color: #0f1128; text-decoration: none; }
.aw-post-card-meta { font-size: 13px; color: #78716c; }

.aw-newsletter { background: #0a0e1a; }
.aw-newsletter-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--aw-pad-x);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px 48px;
  flex-wrap: wrap;
}
.aw-newsletter-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  color: #fff;
  max-width: 560px;
  margin: 0;
}
.aw-newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.aw-newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  min-width: min(300px, 100%);
}
.aw-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.35); }

/* ---------- single post (article) ---------- */

.aw-article-head { max-width: 900px; margin: 0 auto; padding: clamp(48px, 5.5vw, 72px) 32px 40px; text-align: center; box-sizing: border-box; }
.aw-article-crumbs { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; font-size: 13px; font-weight: 700; }
.aw-article-crumbs a { color: #78716c; text-decoration: none; }
.aw-article-crumbs a:hover { color: #e9484d; }
.aw-article-crumbs .cat, .aw-article-crumbs .cat a { letter-spacing: 0.08em; text-transform: uppercase; color: #e9484d; }
.aw-article-title, h1.aw-article-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0f1128;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.aw-article-byline { display: flex; align-items: center; justify-content: center; gap: 14px; }
.aw-article-byline img { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; object-position: top; background: var(--aw-grad); }
.aw-article-byline .who { text-align: left; }
.aw-article-byline .name { font-size: 14.5px; font-weight: 700; color: #0f1128; }
.aw-article-byline .meta { font-size: 13px; color: #78716c; }

.aw-article-feature { max-width: 1200px; margin: 0 auto; padding: 0 32px 56px; box-sizing: border-box; }
.aw-article-feature img { width: 100%; height: clamp(280px, 38vw, 480px); object-fit: cover; border-radius: 24px; display: block; }

.aw-article-body { max-width: 744px; margin: 0 auto; padding: 0 32px clamp(56px, 6vw, 80px); box-sizing: border-box; }
.aw-article-body > * { color: #44403c; font-size: 17px; line-height: 1.8; }
.aw-article-body p { margin: 0 0 20px; }
.aw-article-body h2 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #0f1128;
  margin: 40px 0 16px;
  line-height: 1.2;
}
.aw-article-body h3 { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 600; font-size: 25px; color: #0f1128; margin: 32px 0 14px; }
.aw-article-body a { color: #e9484d; }
.aw-article-body a:hover { color: #0f1128; }
.aw-article-body blockquote {
  border-left: 4px solid #e9484d;
  background: #fff;
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.aw-article-body blockquote p {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.4;
  color: #0f1128;
  margin: 0;
}
.aw-article-body img { max-width: 100%; height: auto; border-radius: 16px; }
.aw-article-body ul, .aw-article-body ol { margin: 0 0 20px; padding-left: 24px; }

.aw-related { max-width: 1200px; margin: 0 auto; padding: 0 32px clamp(56px, 7vw, 96px); box-sizing: border-box; }
.aw-related-inner { border-top: 1px solid #e8e5df; padding-top: 48px; }
.aw-related-title { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 700; font-size: clamp(28px, 3vw, 36px); color: #0f1128; margin: 0 0 32px; }

/* ---------- core-block integration (blog templates) ---------- */

ul.aw-post-grid, ul.wp-block-post-template.aw-post-grid { list-style: none; padding: 0; margin: 0; }
.aw-post-grid > li { display: flex; }
.aw-post-grid > li > .aw-post-card { width: 100%; }
.aw-post-card .wp-block-post-featured-image { margin: 0; }
.aw-post-card .wp-block-post-featured-image a { display: block; }
.aw-post-card-meta { gap: 6px; font-size: 13px; color: #78716c; }
.aw-post-card-meta .wp-block-post-date { font-size: 13px; color: #78716c; }
.aw-post-card-cat { margin: 0; }

ul.aw-cat-pills { list-style: none; padding: 32px 0; margin: 0; display: flex; gap: 10px; flex-wrap: wrap; }
ul.aw-cat-pills li { display: contents; }

.aw-featured-query .wp-block-post-template { list-style: none; padding: 0; margin: 0; }
.aw-featured-card .wp-block-post-featured-image { margin: 0; }
.aw-featured-card .wp-block-post-featured-image a { display: block; height: 100%; }
.aw-featured-cat { font-size: 13px; color: rgba(255, 255, 255, 0.5); margin: 0; align-self: center; }
.aw-featured-cat a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.aw-featured-body .wp-block-post-excerpt__excerpt { font-size: 15.5px; line-height: 1.65; color: rgba(255, 255, 255, 0.6); margin: 0; }
.aw-featured-body .wp-block-post-excerpt__more-text, .aw-featured-body .wp-block-post-excerpt__more-link { display: none; }
.aw-featured-meta { margin-top: 28px; gap: 12px; }
.aw-featured-meta .wp-block-post-author__avatar img { border-radius: 999px; }
.aw-featured-meta .wp-block-post-author__name { font-size: 14px; font-weight: 700; color: #fff; }
.aw-featured-meta .wp-block-post-date { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); align-self: center; }

.aw-blog-hero .aw-featured-title a:hover { color: #ef9563; }

.wp-block-query-pagination { margin-top: 48px; font-weight: 700; }
body.blog .wp-block-query-pagination a, body.archive .wp-block-query-pagination a { color: #e9484d; }

.aw-article-byline .wp-block-post-author { align-items: center; }
.aw-article-byline .wp-block-post-author__avatar img { border-radius: 999px; }
.aw-article-byline .wp-block-post-author__name { font-size: 14.5px; font-weight: 700; color: #0f1128; }
.aw-article-byline .wp-block-post-date { font-size: 13px; color: #78716c; align-self: center; }
.aw-article-head .wp-block-post-title { margin-top: 0; }
.aw-article-crumbs p { margin: 0; color: #d6d3cc; }

.aw-author-card {
  display: flex;
  gap: 24px;
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 20px;
  padding: 32px;
  margin-top: 56px;
  align-items: center;
}
.aw-author-card .wp-block-post-author { display: flex; gap: 24px; align-items: center; }
.aw-author-card .wp-block-post-author__avatar img { border-radius: 999px; width: 88px; height: 88px; }
.aw-author-card .wp-block-post-author__byline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #78716c;
  margin-bottom: 6px;
}
.aw-author-card .wp-block-post-author__name {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #0f1128;
  margin-bottom: 6px;
}
.aw-author-card .wp-block-post-author__bio { font-size: 14.5px; line-height: 1.6; color: #57534e; }

/* archive/search reuse blog hero colors */
body.archive .aw-h1, body.search .aw-h1 { color: #0f1128; }

/* ---------- case studies (dark article) ---------- */

.aw-case-head { padding-top: clamp(48px, 6vw, 72px); padding-bottom: 40px; }
.aw-case-head .aw-eyebrow { margin-bottom: 24px; }
.aw-terms-pills { margin: 24px 0 0; }
.aw-terms-pills a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #ef9563;
  border: 1px solid rgba(239, 149, 99, 0.4);
  padding: 4px 12px;
  border-radius: 999px;
  margin-right: 8px;
  text-decoration: none;
}
.aw-case-sub .wp-block-post-excerpt__excerpt {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--aw-muted);
  max-width: 640px;
  margin: 24px 0 0;
}
.aw-case-sub .wp-block-post-excerpt__more-text, .aw-case-sub .wp-block-post-excerpt__more-link { display: none; }
.aw-case-feature { padding-bottom: clamp(40px, 5vw, 64px); }
.aw-case-feature img { width: 100%; height: clamp(280px, 40vw, 520px); object-fit: cover; border-radius: 24px; display: block; }

.aw-case-body { max-width: 872px; padding-bottom: clamp(48px, 6vw, 80px); }
.aw-case-body > * { color: rgba(255, 255, 255, 0.7); font-size: 17px; line-height: 1.8; }
.aw-case-body p { margin: 0 0 20px; }
.aw-case-body h2 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #fff;
  margin: 40px 0 16px;
  line-height: 1.2;
}
.aw-case-body h3 { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 600; font-size: 24px; color: #fff; margin: 32px 0 14px; }
.aw-case-body a { color: #ef9563; }
.aw-case-body a:hover { color: #e9484d; }
.aw-case-body ul, .aw-case-body ol { margin: 0 0 20px; padding-left: 24px; }
.aw-case-body li { margin-bottom: 8px; }
.aw-case-body blockquote {
  border-left: 4px solid #e9484d;
  background: var(--aw-card-bg);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.aw-case-body blockquote p {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}
.aw-case-body strong { color: #fff; }

.aw-more-work-title { font-size: clamp(28px, 3vw, 40px); margin-bottom: 32px; }
ul.aw-project-grid { list-style: none; margin: 0; }
.aw-project-grid--flush { border-top: none; padding-top: 0; }
.aw-project-grid > li { display: flex; }
.aw-project-grid > li > .aw-project-card { width: 100%; }
.aw-project-card .wp-block-post-featured-image { margin: 0; }
.aw-project-card .wp-block-post-featured-image img { width: 100%; height: 300px; object-fit: cover; display: block; }
.aw-project-caption .aw-project-name { margin: 0; }
.aw-project-caption .aw-project-name a { color: #fff; text-decoration: none; }

a.aw-project-card { text-decoration: none; }

/* ---------- service cards (custom-apps / n8n-hosting) ---------- */

.aw-service-card { padding: 0; overflow: hidden; }
.aw-service-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
}
.aw-service-card > p { margin-left: 32px; margin-right: 32px; }
.aw-service-card > p:last-child { padding-bottom: 32px; }

