/* Accrual Bank - shared stylesheet
   Design language borrowed from a certain orange automation company.
   If you found this file, hi. Yes, the similarity is the joke. */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #FA4616;
  --orange-offset: #A32200;
  --orange-light: #FB6B45;
  --teal: #0BA2B3;
  --teal-light: #5BCBDE;
  --bright-blue: #CCF2FF;
  --deep-blue: #182126;
  --dark-2: #2D373C;
  --grey-text: #646E78;
  --grey-line: #D9D9D9;
  --grey-bg: #F6F6F6;
  --white: #FFFFFF;
  --black: #000000;

  --font-head: 'Poppins', 'Inter', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --max-w: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(24, 33, 38, 0.06);
  --shadow-lg: 0 20px 60px rgba(24, 33, 38, 0.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--deep-blue);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

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

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

/* Navigation */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--grey-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--deep-blue);
}
.logo .dot { color: var(--orange); }
.logo:hover { text-decoration: none; }

.nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul a {
  font-size: 15px;
  font-weight: 500;
  color: var(--deep-blue);
}
.nav ul a:hover { color: var(--orange); text-decoration: none; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-offset); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--deep-blue);
  border-color: var(--deep-blue);
}
.btn-outline:hover { background: var(--deep-blue); color: var(--white); }

.btn-teal {
  background: var(--teal);
  color: var(--black);
}
.btn-teal:hover { background: var(--teal-light); color: var(--black); }

/* Hero */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #FFF 0%, var(--grey-bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--deep-blue);
}
.hero h1 .dot { color: var(--orange); }

.hero .kicker {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero p.sub {
  font-size: 20px;
  color: var(--grey-text);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(250,70,22,0.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(11,162,179,0.18), transparent 60%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-2));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* Section */
section {
  padding: 88px 0;
}
section.tight { padding: 56px 0; }
section.dark {
  background: var(--deep-blue);
  color: var(--white);
}
section.grey { background: var(--grey-bg); }

.eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
section.dark .eyebrow { color: var(--teal-light); }

h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
h2 .dot { color: var(--orange); }
h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.lede {
  font-size: 19px;
  color: var(--grey-text);
  max-width: 720px;
  margin: 0 0 48px;
}
section.dark .lede { color: #B9C1C8; }

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--deep-blue);
}
.stat .num .dot { color: var(--orange); }
.stat .lbl {
  font-size: 14px;
  color: var(--grey-text);
  margin-top: 4px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--deep-blue);
}
.card .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.card p { color: var(--grey-text); }
.card .more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--orange);
}
.card .more:after { content: " ->"; }

section.dark .card {
  background: #212C31;
  border-color: #2D373C;
  color: var(--white);
}
section.dark .card p { color: #B9C1C8; }

/* News list */
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-item {
  border-top: 2px solid var(--deep-blue);
  padding-top: 18px;
}
.news-item .meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 8px;
}
.news-item h3 { font-size: 20px; line-height: 1.3; }

/* CTA band */
.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 64px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band .dot { color: var(--deep-blue); }
.cta-band .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.cta-band .btn-outline:hover { background: var(--white); color: var(--orange); }

/* Quote */
.quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.quote cite {
  font-style: normal;
  color: var(--grey-text);
  font-size: 15px;
}

/* Leadership grid */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.person {
  text-align: left;
}
.avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bright-blue), var(--teal-light));
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 56px;
  color: var(--deep-blue);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.person .role {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.person .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin-top: 2px;
  color: var(--deep-blue);
}
.person .bio {
  color: var(--grey-text);
  font-size: 14px;
  margin-top: 8px;
}

/* Timeline */
.timeline {
  position: relative;
  border-left: 2px solid var(--orange);
  padding-left: 28px;
  margin-left: 14px;
}
.t-item { margin-bottom: 28px; position: relative; }
.t-item:before {
  content: "";
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--white);
}
.t-year {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 18px;
}
.t-text { color: var(--grey-text); }

/* Roles list */
.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.role-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: border-color .15s ease, background .15s ease;
}
.role-card:hover { border-color: var(--orange); background: #FFF7F4; }
.role-card h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  margin: 0;
}
.role-card .meta { color: var(--grey-text); font-size: 13px; margin-top: 4px; }
.role-card .chev { color: var(--orange); font-weight: 700; }

/* Pronunciation call-out */
.pronounce {
  background: var(--bright-blue);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  border-left: 6px solid var(--teal);
}
.pronounce .big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--deep-blue);
}
.pronounce .small { color: var(--dark-2); font-size: 14px; margin-top: 4px; }

/* Footer */
footer {
  background: var(--deep-blue);
  color: #B9C1C8;
  padding: 64px 0 32px;
  font-size: 14px;
}
footer a { color: #B9C1C8; }
footer a:hover { color: var(--white); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.foot-grid h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 8px; }
.foot-bottom {
  border-top: 1px solid #2D373C;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #646E78;
  font-size: 13px;
}
.disclaimer {
  background: #212C31;
  border: 1px dashed #3C464B;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 24px;
  color: #8F9AA0;
  font-size: 12.5px;
  line-height: 1.6;
}
.disclaimer strong { color: var(--orange); }

/* 404 */
.four-oh-four {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.four-oh-four h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.four-oh-four h1 .dot { color: var(--orange); }
.four-oh-four p { font-size: 20px; color: var(--grey-text); max-width: 540px; margin: 0 auto 28px; }

/* Small utilities */
.flex { display: flex; gap: 14px; flex-wrap: wrap; }
.tac { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Long-form article pages */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article .article-header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-line);
}
.article .article-header .eyebrow { margin-bottom: 14px; }
.article h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.article h1 .dot { color: var(--orange); }
.article .article-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--grey-text);
  font-size: 14px;
  flex-wrap: wrap;
}
.article .article-meta .byline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.article .article-meta .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--teal-light));
  color: var(--deep-blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  display: grid; place-items: center;
}
.article .article-meta .dot-sep { color: var(--grey-line); }
.article p, .article li {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--dark-2);
}
.article p + p { margin-top: 16px; }
.article h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 48px 0 14px;
  color: var(--deep-blue);
}
.article h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 36px 0 10px;
}
.article .lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--dark-2);
  font-weight: 500;
  margin-bottom: 24px;
}
.article ul, .article ol {
  padding-left: 22px;
  margin: 14px 0 20px;
}
.article li { margin-bottom: 8px; }
.article blockquote.pull-quote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--deep-blue);
  border-left: 6px solid var(--orange);
  padding: 8px 0 8px 22px;
  margin: 36px 0;
}
.article .sidebar-box {
  background: var(--grey-bg);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin: 32px 0;
}
.article .sidebar-box h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin: 0 0 12px;
}
.article .sidebar-box ul { margin: 0; padding-left: 18px; }
.article .sidebar-box li { font-size: 15px; }
.article figure {
  margin: 40px 0;
}
.article figcaption {
  font-size: 13px;
  color: var(--grey-text);
  margin-top: 8px;
  text-align: center;
}
.article .metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
  padding: 28px;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: var(--radius);
}
.article .metric-row .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.article .metric-row .num .dot { color: var(--orange); }
.article .metric-row .lbl {
  font-size: 13px;
  color: #B9C1C8;
  margin-top: 2px;
}
.article .tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 0;
}
.article .tag-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--bright-blue);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--deep-blue);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.blog-card .art {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--deep-blue), var(--dark-2));
  position: relative;
}
.blog-card .art.alt-a { background: linear-gradient(135deg, #FA4616, #CE340B); }
.blog-card .art.alt-b { background: linear-gradient(135deg, #0BA2B3, #15839A); }
.blog-card .art.alt-c { background: linear-gradient(135deg, #182126, #1E6482); }
.blog-card .art.alt-d { background: linear-gradient(135deg, #0BA2B3, #FA4616); }
.blog-card .art.alt-e { background: linear-gradient(135deg, #1E6482, #0BA2B3); }
.blog-card .art .glyph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.blog-card .body { padding: 22px 24px 26px; }
.blog-card .meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--deep-blue);
  margin: 0 0 8px;
}
.blog-card p { color: var(--grey-text); font-size: 15px; margin: 0; }
.blog-card .author {
  margin-top: 14px;
  color: var(--grey-text);
  font-size: 13px;
}

/* Case study hero */
.case-hero {
  background: var(--deep-blue);
  color: var(--white);
  padding: 80px 0 72px;
}
.case-hero .eyebrow { color: var(--teal-light); }
.case-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.case-hero h1 .dot { color: var(--orange); }
.case-hero .sub { font-size: 19px; color: #B9C1C8; max-width: 720px; }
.case-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #2D373C;
}
.case-meta .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 4px;
}
.case-meta .val { font-weight: 600; color: var(--white); }

/* Dropdown nav */
.has-drop { position: relative; }
.has-drop > a:after {
  content: " ▾";
  font-size: 10px;
  color: var(--grey-text);
  margin-left: 2px;
}
.drop-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease;
}
.has-drop:hover .drop-panel,
.has-drop:focus-within .drop-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.drop-panel a {
  display: block;
  padding: 10px 12px;
  font-size: 14.5px;
  border-radius: 6px;
  color: var(--deep-blue);
}
.drop-panel a:hover { background: var(--grey-bg); color: var(--orange); text-decoration: none; }
.drop-panel .sub-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-text);
  padding: 10px 12px 4px;
}

/* Report / long page callouts */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.kpi {
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 22px;
}
.kpi .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--deep-blue);
}
.kpi .num .dot { color: var(--orange); }
.kpi .lbl { font-size: 13px; color: var(--grey-text); margin-top: 4px; }
.kpi .chg { font-size: 12px; color: var(--teal); margin-top: 6px; font-weight: 600; }
.kpi .chg.down { color: var(--orange); }

/* v2: Illustrations, photo cards, social, city cards */
.illus {
  width: 100%;
  height: auto;
  display: block;
}
.photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bright-blue), var(--teal-light));
  display: grid;
  place-items: center;
}
.photo-card svg { width: 70%; height: auto; }
.photo-card.deep { background: linear-gradient(135deg, var(--deep-blue), var(--dark-2)); }
.photo-card.orange { background: linear-gradient(135deg, var(--orange), var(--orange-offset)); }
.photo-card.teal { background: linear-gradient(135deg, var(--teal), var(--dark-blue)); }
.photo-card.mixed { background: linear-gradient(135deg, #CE340B, #182126); }

.city-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.city-card .city-art {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #5BCBDE 0%, #CCF2FF 40%, #FFF 100%);
  overflow: hidden;
}
.city-card .city-art.night {
  background: linear-gradient(180deg, #1E6482 0%, #182126 100%);
}
.city-card .city-body { padding: 22px 24px 26px; }
.city-card .city-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.city-card .city-body .role {
  color: var(--orange);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.city-card .city-body p {
  color: var(--grey-text);
  font-size: 14.5px;
  margin: 0 0 10px;
}
.city-card .city-body .addr {
  color: var(--deep-blue);
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.4;
}

/* Product icon tile (small) */
.icon-tile {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--bright-blue);
  display: grid; place-items: center;
  margin-bottom: 14px;
  color: var(--deep-blue);
}
.icon-tile.orange { background: #FFE1D6; color: var(--orange); }
.icon-tile.teal { background: #D5F1F5; color: var(--teal); }
.icon-tile.dark { background: var(--deep-blue); color: var(--white); }
.icon-tile svg { width: 28px; height: 28px; }

/* Leader portrait upgrade */
.leader-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.leader-portrait svg { width: 100%; height: 100%; display: block; }

/* Social row (footer) */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2D373C;
  display: grid; place-items: center;
  transition: background .15s ease, transform .15s ease;
}
.social-row a:hover {
  background: var(--orange);
  transform: translateY(-1px);
  text-decoration: none;
}
.social-row svg {
  width: 16px; height: 16px;
  fill: #B9C1C8;
}
.social-row a:hover svg { fill: var(--white); }

/* Hero visual variants */
.hero-visual.light {
  background:
    radial-gradient(circle at 20% 30%, rgba(250,70,22,0.25), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(11,162,179,0.22), transparent 55%),
    linear-gradient(135deg, #F6F6F6, #D5F1F5);
}
.hero-visual.teal-gradient {
  background:
    radial-gradient(circle at 30% 30%, rgba(11,162,179,0.28), transparent 55%),
    linear-gradient(135deg, var(--dark-blue), var(--deep-blue));
}

/* Ribbon / breadcrumb */
.breadcrumbs {
  font-size: 13px;
  color: var(--grey-text);
  margin-bottom: 8px;
}
.breadcrumbs a { color: var(--grey-text); }
.breadcrumbs a:hover { color: var(--orange); }

/* Testimonial card */
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.testimonial blockquote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--deep-blue);
  margin: 0 0 16px;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .who .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-blue), var(--teal-light));
  color: var(--deep-blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: grid; place-items: center;
}
.testimonial .who .txt { font-size: 13px; color: var(--grey-text); }
.testimonial .who .txt strong { color: var(--deep-blue); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16 / 11; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards, .news-list, .team { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav ul { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .case-meta { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .article .metric-row { grid-template-columns: 1fr; }
}
