/* ============================================================
   BANSE LLC — Main Stylesheet
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ============================================================ */

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

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-navy:       #1B3A8C;
  --color-sky:        #4DB8E8;
  --color-accent:     #0A9DCC;
  --color-navy-dark:  #122870;
  --color-white:      #FFFFFF;
  --color-surface:    #F5F8FC;
  --color-text:       #1E293B;
  --color-muted:      #64748B;
  --color-border:     #E2E8F0;
  --color-success:    #10B981;
  --color-error:      #EF4444;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(27,58,140,.10);
  --shadow-lg:  0 12px 40px rgba(27,58,140,.15);

  --nav-height: 76px;
  --max-width:  1160px;
  --section-pad: 96px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p  { max-width: 72ch; }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .75rem;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-pad);
}

.section--surface { background: var(--color-surface); }
.section--navy    { background: var(--color-navy); color: var(--color-white); }
.section--dark    { background: #0F1F5C; color: var(--color-white); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: .6rem; }
.section-header .lead { margin-top: .4rem; }

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s;
}

.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  width: 200px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}

.nav__links a:hover,
.nav__links a.active {
  background: var(--color-surface);
  color: var(--color-navy);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-navy-dark);
  box-shadow: var(--shadow-lg);
}

.btn--sky {
  background: var(--color-sky);
  color: var(--color-white);
}
.btn--sky:hover {
  background: var(--color-accent);
  box-shadow: 0 8px 24px rgba(77,184,232,.35);
}

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

.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--color-white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--color-white);
}

.btn--sm { font-size: .85rem; padding: 10px 20px; }
.btn--lg { font-size: 1.05rem; padding: 16px 36px; }

/* ============================================================
   7. CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: box-shadow .25s, transform .25s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card--surface {
  background: var(--color-surface);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-navy), var(--color-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 { margin-bottom: .5rem; }
.card p  { color: var(--color-muted); font-size: .95rem; }

.card ul {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card ul li {
  font-size: .9rem;
  color: var(--color-muted);
  padding-left: 18px;
  position: relative;
}

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-sky);
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 120px 96px;
  background: linear-gradient(160deg, #EEF3FB 0%, #F5F8FC 50%, #EAF5FC 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(77,184,232,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 60%, rgba(27,58,140,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,58,140,.08);
  border: 1px solid rgba(27,58,140,.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.hero__badge span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-sky);
  display: inline-block;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-navy), var(--color-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead { margin-bottom: 36px; font-size: 1.2rem; max-width: 60ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   9. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--color-navy);
  padding-block: 28px;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-sky);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ============================================================
   10. SERVICE OVERVIEW CARDS (Home)
   ============================================================ */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy), var(--color-sky));
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-navy) 0%, #2952B3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card--odoo .service-card__icon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-sky) 100%);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { font-size: 1.4rem; }
.service-card p  { color: var(--color-muted); flex: 1; }

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block: 4px;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--color-muted);
}

.service-card ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-sky);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ============================================================
   11. WHY BANSE (icon cards)
   ============================================================ */
.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: box-shadow .2s, transform .2s;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,58,140,.1), rgba(77,184,232,.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 { margin-bottom: .4rem; }
.why-card p  { color: var(--color-muted); font-size: .95rem; max-width: 30ch; margin-inline: auto; }

/* ============================================================
   12. ABOUT SNIPPET (Home)
   ============================================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-snippet__text h2 { margin-bottom: 16px; }
.about-snippet__text p  { color: var(--color-muted); margin-bottom: 12px; }
.about-snippet__text .btn { margin-top: 20px; }

.about-snippet__visual {
  background: linear-gradient(135deg, var(--color-navy) 0%, #2952B3 60%, var(--color-sky) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-visual-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-visual-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sky);
  flex-shrink: 0;
  margin-top: 6px;
}

.about-visual-item h4 { color: white; margin-bottom: 2px; }
.about-visual-item p  { color: rgba(255,255,255,.75); font-size: .9rem; max-width: none; }

/* ============================================================
   13. BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card__thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__thumb-icon {
  width: 56px;
  height: 56px;
  opacity: .4;
}

.blog-card__thumb-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
}

.blog-card__body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.blog-card__tag {
  background: rgba(27,58,140,.08);
  color: var(--color-navy);
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: .75rem;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}

.blog-card p {
  color: var(--color-muted);
  font-size: .9rem;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card__link {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.blog-card__link:hover { gap: 10px; color: var(--color-accent); }

/* ============================================================
   14. CONTACT CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a4fa8 60%, var(--color-accent) 100%);
  padding-block: 96px;
  text-align: center;
}

.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin: 0 auto 36px; font-size: 1.1rem; max-width: 54ch; }
.cta-banner .btn-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   15. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--color-navy) 0%, #1a4fa8 100%);
  padding-block: 80px 72px;
  color: white;
}

.page-hero .section-label { color: rgba(255,255,255,.6); }
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 60ch; font-size: 1.1rem; }

/* ============================================================
   16. SERVICES DETAIL CARDS
   ============================================================ */
.service-detail-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: box-shadow .25s, transform .25s;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-detail-card__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.service-detail-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-navy), var(--color-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-card--odoo .service-detail-card__icon {
  background: linear-gradient(135deg, var(--color-accent), var(--color-sky));
}

.service-detail-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-card h3 { margin-bottom: 4px; }
.service-detail-card > p { color: var(--color-muted); font-size: .95rem; margin-bottom: 16px; }

.service-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-detail-card ul li {
  font-size: .9rem;
  color: var(--color-muted);
  padding-left: 18px;
  position: relative;
}

.service-detail-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-sky);
}

/* ============================================================
   17. BADGE (Gold Partner)
   ============================================================ */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: white;
  border-radius: var(--radius-md);
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.partner-badge svg {
  width: 28px;
  height: 28px;
  fill: gold;
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--color-muted); margin-bottom: 32px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-sky);
  box-shadow: 0 0 0 3px rgba(77,184,232,.15);
}

.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

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

.form-honeypot { display: none; }

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card h3 { margin-bottom: 4px; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-navy), var(--color-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item__icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.info-item__value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.4;
}

.info-item__value a { color: var(--color-navy); }
.info-item__value a:hover { color: var(--color-accent); }

/* Alert banners */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: .92rem;
}

.alert--success {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  color: #065F46;
}

.alert--error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
  color: #991B1B;
}

.alert svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 1px;
}

/* ============================================================
   19. ABOUT PAGE
   ============================================================ */
.founder-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-avatar__initials {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
}

.founder-info h3 { margin-bottom: 4px; }
.founder-info .role {
  font-size: .9rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.founder-info p { color: var(--color-muted); font-size: .95rem; margin-bottom: 10px; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  background: rgba(27,58,140,.07);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   20. BLOG POST PAGE
   ============================================================ */
.post-hero {
  background: linear-gradient(160deg, var(--color-navy) 0%, #1a4fa8 100%);
  padding-block: 80px 72px;
  color: white;
}

.post-hero .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.post-hero .post-tag {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: white;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.post-hero .post-date {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

.post-hero h1 { color: white; margin-bottom: 12px; }
.post-hero .post-author {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.post-body {
  padding-block: 72px;
}

.post-content {
  max-width: 760px;
  margin-inline: auto;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-top: 52px;
  margin-bottom: 14px;
  padding-top: 8px;
  border-top: 2px solid var(--color-border);
}

.post-content h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.post-content p {
  color: var(--color-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
  max-width: none;
  line-height: 1.8;
}

.post-content ul, .post-content ol {
  margin-left: 24px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content li {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.post-content strong { color: var(--color-text); font-weight: 600; }

.post-content blockquote {
  border-left: 4px solid var(--color-sky);
  margin: 28px 0;
  padding: 16px 24px;
  background: rgba(77,184,232,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-content blockquote p {
  font-style: italic;
  font-size: 1.08rem;
  color: var(--color-text);
  margin: 0;
}

.post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
}

.post-cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  margin-top: 56px;
}

.post-cta h3 { margin-bottom: 8px; }
.post-cta p  { color: var(--color-muted); margin: 0 auto 20px; }
.post-cta .btn-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   21. BRAND GUIDE
   ============================================================ */
.brand-swatch {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.brand-swatch__color {
  height: 100px;
}

.brand-swatch__info {
  padding: 12px 16px;
  background: var(--color-white);
}

.brand-swatch__name { font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
.brand-swatch__hex  { font-size: .8rem; color: var(--color-muted); font-family: monospace; }
.brand-swatch__role { font-size: .75rem; color: var(--color-muted); margin-top: 2px; }

.type-specimen {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  border: 1px solid var(--color-border);
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.footer {
  background: #0D1F5A;
  color: white;
  padding-block: 72px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand .footer-logo {
  width: 180px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 32ch;
}

.footer__col h4 {
  color: white;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col ul a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color .2s;
}

.footer__col ul a:hover { color: var(--color-sky); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  color: rgba(255,255,255,.45);
  font-size: .82rem;
  max-width: none;
}

/* ============================================================
   23. FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   24. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .about-snippet { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-avatar { margin-inline: auto; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-height: 68px; }

  .nav__links,
  .nav__cta { display: none; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    z-index: 999;
  }

  .nav__cta.open { display: block; padding: 0 24px 20px; }

  .nav__hamburger { display: flex; }

  .nav { position: sticky; }

  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .post-nav { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .contact-form-card { padding: 28px 20px; }
}
