@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/* ============================================================
   AI4WEB — Flat-Color Design System
   Palette: electric blue (#1850D8) + black + white + neutrals
   No gradients. No rgba overlays. No color mixing.
   ============================================================ */

:root {
  --brand-blue: #1850D8;
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --neutral-50: #F5F5F5;
  --neutral-200: #E5E5E5;
  --text-muted: #525252;
  --text-strong: #0A0A0A;

  --container: 1180px;
  --container-narrow: 880px;
  --radius: 8px;
  --radius-lg: 12px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 120px;

  --font: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-strong);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { color: var(--brand-black); }
ul, ol { padding-left: 1.25rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text-strong); line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }
p { color: var(--text-muted); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.eyebrow--light { color: var(--brand-white); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: var(--space-7) 0; }
.section--tight { padding: var(--space-6) 0; }
.section--dark { background: var(--brand-black); color: var(--brand-white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--brand-white); }
.section--dark p { color: var(--brand-white); }
.section--alt { background: var(--neutral-50); }
.section--blue { background: var(--brand-blue); color: var(--brand-white); }
.section--blue h1, .section--blue h2, .section--blue h3 { color: var(--brand-white); }
.section--blue p { color: var(--brand-white); }

.text-center { text-align: center; }
.lead { font-size: 19px; line-height: 1.6; max-width: 760px; margin: 16px auto 0; }
.section-title { margin-bottom: 8px; }
.section-subtitle { font-size: 18px; margin: 12px auto 48px; max-width: 720px; text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--brand-white);
  border-bottom: 1px solid var(--neutral-200);
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.site-header__logo img { height: 36px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--text-strong);
  font-weight: 500;
  font-size: 15px;
}
.site-nav a:hover { color: var(--brand-blue); }
.site-nav__item { position: relative; }
.site-nav__item--has-children > a::after { content: " \25BE"; font-size: 11px; }
.site-nav__item--has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -16px;
  width: 240px;
  height: 16px;
}
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: var(--brand-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
  display: none;
  box-shadow: 0 4px 12px var(--neutral-200);
}
.site-nav__item--has-children:hover .site-nav__dropdown,
.site-nav__item--has-children:focus-within .site-nav__dropdown { display: block; }
.site-nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
}
.site-nav__dropdown a:hover { background: var(--neutral-50); color: var(--brand-blue); }
.site-header__cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--text-strong);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  position: relative;
}
.nav-toggle span::before { content: ""; position: absolute; top: -7px; }
.nav-toggle span::after { content: ""; position: absolute; top: 7px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn--primary {
  background: var(--brand-blue);
  color: var(--brand-white);
  border-color: var(--brand-blue);
}
.btn--primary:hover { background: var(--brand-black); border-color: var(--brand-black); color: var(--brand-white); }
.btn--dark {
  background: var(--brand-black);
  color: var(--brand-white);
  border-color: var(--brand-black);
}
.btn--dark:hover { background: var(--brand-blue); border-color: var(--brand-blue); color: var(--brand-white); }
.btn--outline {
  background: transparent;
  color: var(--brand-white);
  border-color: var(--brand-white);
}
.btn--outline:hover { background: var(--brand-white); color: var(--brand-black); }
.btn--outline-dark {
  background: transparent;
  color: var(--brand-black);
  border-color: var(--brand-black);
}
.btn--outline-dark:hover { background: var(--brand-black); color: var(--brand-white); }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.btn-row--left { justify-content: flex-start; }

/* Hero */
.hero {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 110px 24px;
  text-align: center;
}
.hero--bg-image {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../img/ai-local-seo-website-builder-hero.webp') center/cover no-repeat;
}
.hero h1 { color: var(--brand-white); max-width: 920px; margin: 16px auto 0; }
.hero p { color: var(--brand-white); font-size: 20px; max-width: 760px; margin: 24px auto 0; }
.hero__note { font-size: 14px; margin-top: 20px; color: var(--brand-white); }
.hero--with-image { padding: 0; text-align: left; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px;
}
.hero__grid h1 { text-align: left; margin: 0; }
.hero__grid p { text-align: left; margin-left: 0; }
.hero__grid img { border-radius: var(--radius-lg); }

.hero.hero--split {
  padding: 0;
  text-align: left;
}
.hero.hero--split .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 24px 104px;
}
.hero.hero--split .hero__content {
  text-align: left;
  max-width: 640px;
}
.hero.hero--split .hero__content h1 {
  margin: 16px 0 0;
  max-width: 620px;
}
.hero.hero--split .hero__summary {
  font-size: 20px;
  max-width: 620px;
  margin: 24px 0 0;
}
.hero.hero--split .btn-row { justify-content: flex-start; }
.hero.hero--split .hero__note {
  font-size: 14px;
  max-width: 620px;
  margin: 20px 0 0;
}
.hero.hero--split .hero__media {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.hero__video-card {
  width: 100%;
  max-width: 560px;
  background: var(--brand-white);
  border: 1px solid var(--neutral-200);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 28px 60px #00000066;
}
.hero__video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.hero__video-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--brand-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__video-caption {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}
.hero__video-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 16px;
  background: var(--brand-black);
}

/* Video embed */
.video-section {
  background: var(--neutral-50);
  padding: 64px 0 80px;
}
.video-section__intro {
  margin-bottom: 32px;
}
.video-section__intro h2 {
  margin-top: 8px;
}
.video-section__intro > p:not(.eyebrow) {
  font-size: 18px;
  max-width: 720px;
  margin: 12px auto 0;
}
.video-embed {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.video-embed__frame {
  display: block;
  width: min(100%, 560px);
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Cards */
.card {
  background: var(--brand-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card h3 { color: var(--brand-blue); font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.card--dark {
  background: var(--brand-black);
  border-color: var(--brand-black);
}
.card--dark h3 { color: var(--brand-white); }
.card--dark p { color: var(--brand-white); }
.card--feature h3 { color: var(--brand-blue); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__num {
  color: var(--brand-blue);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.stats__label { color: var(--text-muted); font-size: 15px; margin-top: 8px; }

/* Step */
.step__eyebrow { color: var(--brand-blue); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.step h3 { color: var(--text-strong); margin: 10px 0; }
.step p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* Industry tile */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.industry-tile {
  background: var(--brand-white);
  color: var(--brand-black);
  padding: 22px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}
.section--dark .industry-tile { background: var(--brand-blue); color: var(--brand-white); }

/* Testimonial */
.testimonial {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.testimonial__stars { color: var(--brand-blue); font-size: 22px; letter-spacing: 2px; }
.testimonial__quote { color: var(--text-strong); font-size: 17px; line-height: 1.6; margin: 16px 0 24px; }
.testimonial__author { color: var(--text-muted); font-size: 14px; font-weight: 500; }

/* CTA strip */
.cta-strip {
  background: var(--brand-blue);
  color: var(--brand-white);
  padding: 100px 24px;
  text-align: center;
}
.cta-strip h2 { color: var(--brand-white); }
.cta-strip p { color: var(--brand-white); font-size: 19px; margin-top: 16px; }
.cta-strip .btn--dark { background: var(--brand-black); border-color: var(--brand-black); }
.cta-strip .btn--dark:hover { background: var(--brand-white); color: var(--brand-black); border-color: var(--brand-white); }

/* Lists with checkmarks */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid var(--neutral-200);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--brand-blue);
  font-weight: 700;
}
.feature-list li:last-child { border-bottom: 0; }

/* Pricing tabs */
.pricing-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.pricing-tabs {
  display: inline-flex;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 100px;
  padding: 5px;
  gap: 4px;
}
.pricing-tab {
  background: transparent;
  border: 0;
  border-radius: 100px;
  padding: 12px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color .15s, color .15s;
  white-space: nowrap;
}
.pricing-tab.is-active {
  background: var(--brand-blue);
  color: var(--brand-white);
}
.pricing-tab:not(.is-active):hover {
  background: var(--brand-white);
  color: var(--brand-black);
}
.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; }
@media (max-width: 480px) {
  .pricing-tab { padding: 10px 18px; font-size: 14px; }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--brand-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: var(--brand-black);
  border-color: var(--brand-black);
  color: var(--brand-white);
}
.pricing-card--featured h3, .pricing-card--featured p, .pricing-card--featured li { color: var(--brand-white); }
.pricing-card--featured .pricing-card__price { color: var(--brand-white); }
.pricing-card--featured .feature-list li { border-color: var(--brand-blue); }
.pricing-card--featured .feature-list li::before { color: var(--brand-blue); }
.pricing-card__name { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-blue); }
.pricing-card--featured .pricing-card__name { color: var(--brand-blue); }
.pricing-card__price { font-size: 48px; font-weight: 700; color: var(--text-strong); margin: 16px 0 8px; }
.pricing-card__price-suffix { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.pricing-card--featured .pricing-card__price-suffix { color: var(--brand-white); }
.pricing-card__tagline { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card .feature-list { margin-bottom: 32px; flex-grow: 1; }
.pricing-badge {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--brand-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* FAQ accordion */
.faq-section h3 { color: var(--text-strong); font-size: 22px; margin-bottom: 16px; margin-top: 40px; }
.faq-section h3:first-child { margin-top: 0; }
.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--brand-white);
}
.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  color: var(--text-strong);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-size: 22px;
  color: var(--brand-blue);
  font-weight: 400;
  margin-left: 16px;
}
.faq-item--open .faq-question::after { content: "−"; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item--open .faq-answer { display: block; }

/* Forms */
.form {
  background: var(--brand-white);
  padding: 40px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 48px auto 0;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-strong);
  background: var(--brand-white);
}
.form-field input:focus,
.form-field textarea:focus { outline: 0; border-color: var(--brand-blue); }
.form-field textarea { min-height: 140px; resize: vertical; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 32px 0; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--neutral-200); }
th { background: var(--brand-black); color: var(--brand-white); font-weight: 500; }
tr:nth-child(even) td { background: var(--neutral-50); }

/* Article / legal pages */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.article h1 { margin-bottom: 16px; }
.article h2 { color: var(--text-strong); margin: 48px 0 16px; font-size: 28px; }
.article h3 { color: var(--text-strong); margin: 32px 0 12px; font-size: 20px; }
.article p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.article ul, .article ol { margin: 12px 0 16px 24px; }
.article li { color: var(--text-muted); margin-bottom: 8px; }
.article strong { color: var(--text-strong); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--brand-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card__body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card__category {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--brand-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.blog-card h3 { font-size: 19px; color: var(--text-strong); margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { color: var(--text-strong); }
.blog-card h3 a:hover { color: var(--brand-blue); }
.blog-card__excerpt { color: var(--text-muted); font-size: 14px; flex-grow: 1; }
.blog-card__meta { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* Footer */
.site-footer {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 72px 24px 32px;
}
.site-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.site-footer__col h4 {
  color: var(--brand-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer__col ul { list-style: none; padding: 0; }
.site-footer__col li { margin-bottom: 12px; }
.site-footer__col a {
  color: var(--brand-white);
  font-size: 14px;
}
.site-footer__col a:hover { color: var(--brand-blue); }
.site-footer__bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--text-muted);
  font-size: 13px;
  color: var(--brand-white);
  text-align: center;
}

/* Roadmap */
.roadmap-quarter {
  background: var(--brand-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.roadmap-quarter__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 8px;
}
.roadmap-quarter h3 { color: var(--text-strong); margin-bottom: 16px; font-size: 24px; }
.roadmap-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 8px;
}
.roadmap-status--shipped { background: var(--brand-blue); color: var(--brand-white); }
.roadmap-status--building { background: var(--brand-black); color: var(--brand-white); }
.roadmap-status--planned { background: var(--neutral-200); color: var(--text-strong); }

/* Two-col content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.two-col img { border-radius: var(--radius-lg); width: 100%; }

/* Templates grid */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.template-card {
  background: var(--brand-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.template-card img { width: 100%; height: 220px; object-fit: cover; }
.template-card__body { padding: 24px; }
.template-card h3 { color: var(--text-strong); font-size: 19px; margin-bottom: 8px; }
.template-card p { font-size: 14px; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }
.center { text-align: center; }
.dark-text { color: var(--text-strong) !important; }
.muted { color: var(--text-muted); }

/* Mobile */
@media (max-width: 900px) {
  .stats, .card-grid, .card-grid--4, .industry-grid, .pricing-grid, .blog-grid, .templates-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .hero.hero--split .hero__grid {
    gap: 36px;
    padding: 84px 24px 88px;
  }
  .hero.hero--split .hero__media { justify-content: center; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-white);
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
    padding: 16px 24px;
    gap: 4px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 0; font-size: 16px; }
  .site-nav__dropdown { position: static; box-shadow: none; border: 0; padding-left: 16px; display: block; }
  .site-header__cta .btn { padding: 10px 16px; font-size: 13px; }
  .stats, .card-grid, .card-grid--4, .industry-grid, .pricing-grid, .blog-grid, .templates-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 70px 24px; }
  .hero.hero--split .hero__grid {
    padding: 72px 24px 76px;
    gap: 28px;
  }
  .hero__video-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__video-caption {
    text-align: left;
  }
  .section { padding: 64px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}

/* ============================================================
   Founders and Team Profiles
   ============================================================ */

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.founder-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.founder-card__image-wrapper {
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
}

.founder-card__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-card h3 {
  font-size: 22px;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.founder-card__title {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.section--blue .founder-card__title {
  color: var(--text-muted);
}

/* Profile Section ("Architect of the Vision") */
.profile-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
}

.profile-subtitle span {
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  font-size: 16px;
  margin-left: 4px;
}

.profile-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin-top: 24px;
  margin-bottom: 12px;
}

.profile-list-item {
  margin-bottom: 16px;
  line-height: 1.6;
}

.profile-list-item strong {
  display: block;
  font-size: 16px;
  color: var(--text-strong);
  margin-bottom: 4px;
}

.profile-bullets {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.profile-bullets li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.profile-quote {
  font-size: 17px;
  border-left: 3px solid var(--brand-blue);
  padding-left: 16px;
  margin-top: 32px;
  color: var(--text-muted);
}

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

.profile-media--portrait {
  width: 100%;
}

.profile-portrait {
  display: block;
  width: 100%;
  max-width: 448px;
  height: auto;
  margin: 0 auto;
  background: var(--brand-white);
  transform: scaleX(-1);
  transform-origin: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
