/* 
  Paid Search Consulting redesign
  Lightweight static CSS. No frameworks required.
*/

:root {
  --blue: #0f62ff;
  --blue-dark: #0847c4;
  --red: #ef2f2a;
  --green: #19a957;
  --yellow: #f5b400;
  --ink: #07142d;
  --text: #24324a;
  --muted: #66758d;
  --soft: #f6f9ff;
  --line: #e3e9f3;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 20, 45, 0.10);
  --shadow-soft: 0 12px 35px rgba(7, 20, 45, 0.07);
  --radius: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  width: 260px;
  max-height: 110px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 750;
  color: var(--ink);
  font-size: .96rem;
}

.main-nav a {
  padding: 30px 0;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 9px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta,
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 28px rgba(15, 98, 255, .22);
}

.btn-outline {
  color: var(--ink);
  border: 1px solid #cbd6e8;
  background: white;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 40%, rgba(15, 98, 255, .06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.shape-red {
  width: 360px;
  height: 360px;
  top: -160px;
  right: -80px;
  border: 54px solid var(--red);
  opacity: .96;
}

.shape-green {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 190px;
  border: 58px solid var(--green);
  opacity: .98;
}

.shape-yellow {
  width: 390px;
  height: 390px;
  right: 120px;
  bottom: -235px;
  border: 58px solid var(--yellow);
  opacity: .95;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .94fr);
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 14px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: white;
  border: 1px solid #cfd9ea;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.badge span {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.065em;
}

h1 span,
.contact-copy h2 span {
  color: var(--blue);
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mini-points div {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 8px;
  align-items: center;
}

.mini-points strong {
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.1;
}

.mini-points small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.2;
}

.dot {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
}

.dot::after {
  content: "✓";
  color: white;
  font-size: .74rem;
  font-weight: 900;
}

.dot.green { background: var(--green); }
.dot.red { background: var(--red); }
.dot.yellow { background: var(--yellow); }

.hero-dashboard {
  position: relative;
}

.dashboard-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dash-head strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.dash-head span {
  padding: 8px 11px;
  color: var(--muted);
  font-size: .78rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metrics div {
  padding: 15px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
}

.metrics small,
.metrics em {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  font-style: normal;
}

.metrics b {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.2;
}

.metrics em {
  color: var(--green);
  font-weight: 900;
}

.line-chart {
  margin-top: 22px;
}

.line-chart svg {
  width: 100%;
  height: auto;
}

.grid-lines line {
  stroke: #e8eef7;
  stroke-width: 1;
}

.area {
  fill: url(#blueFill);
}

.blue-line,
.green-line {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue-line {
  stroke: var(--blue);
}

.green-line {
  stroke: var(--green);
}

.floating {
  position: absolute;
  left: -55px;
  bottom: 30px;
  width: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.floating small,
.floating span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 750;
}

.floating b {
  display: block;
  color: var(--green);
  font-size: 2rem;
  line-height: 1.05;
}

.trust-strip {
  padding: 28px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-strip p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section {
  padding: 68px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.why-card,
.quote-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.why-card {
  text-align: center;
  border-bottom-width: 4px;
}

.blue-border { border-bottom-color: var(--blue); }
.green-border { border-bottom-color: var(--green); }
.red-border { border-bottom-color: var(--red); }
.yellow-border { border-bottom-color: var(--yellow); }

.icon,
.service-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 999px;
  font-size: 1.55rem;
  font-weight: 950;
}

.blue-icon {
  color: var(--blue);
  background: rgba(15, 98, 255, .10);
}

.green-icon {
  color: var(--green);
  background: rgba(25, 169, 87, .12);
}

.red-icon {
  color: var(--red);
  background: rgba(239, 47, 42, .10);
}

.yellow-icon {
  color: var(--yellow);
  background: rgba(245, 180, 0, .14);
}

.why-card h3,
.services-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.1rem;
}

.why-card p,
.services-grid p {
  margin-bottom: 0;
  color: var(--text);
  font-size: .95rem;
}

.tool-section {
  padding: 36px 0 58px;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
  padding: 32px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f2f7ff, #ffffff);
  box-shadow: inset 0 0 0 1px var(--line);
}

.tool-demo {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #d5deed;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.tool-sidebar {
  padding: 20px 14px;
  background: #f1f6ff;
}

.tool-sidebar strong {
  display: block;
  margin-bottom: 20px;
  color: var(--ink);
}

.tool-sidebar strong span,
.tool-copy h2 {
  color: var(--blue);
}

.tool-sidebar a {
  display: block;
  margin: 5px 0;
  padding: 9px 10px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  border-radius: 9px;
}

.tool-sidebar a.active {
  color: var(--blue);
  background: white;
}

.tool-panel {
  padding: 24px;
}

.tool-status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.tool-status h3 {
  margin-bottom: 4px;
  color: var(--ink);
}

.tool-status p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.tool-status span {
  align-self: start;
  padding: 5px 9px;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(25, 169, 87, .12);
}

.tool-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.tool-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
}

.tool-stats b {
  display: block;
  color: var(--blue);
  font-size: 1.2rem;
}

.tool-stats small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.25;
}

.table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 100px 90px;
  gap: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-size: .84rem;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--muted);
  font-weight: 900;
  background: #f8fbff;
}

.section-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.tool-copy p {
  color: var(--text);
}

.tool-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.tool-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.tool-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: white;
  font-size: .72rem;
  font-weight: 950;
  border-radius: 999px;
  background: var(--green);
}

.services-section {
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.services-grid article {
  padding: 12px 22px 8px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.services-grid article:last-child {
  border-right: 0;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.services-grid p {
  color: var(--muted);
  font-size: .9rem;
}

.testimonials {
  padding: 58px 0;
}

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

.quote-card {
  border-bottom-width: 4px;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.quote-person img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(7, 20, 45, .12);
  object-fit: cover;
  object-position: center;
}

.stars {
  margin-bottom: 14px;
  color: var(--yellow);
  letter-spacing: .12em;
}

.quote-card p {
  color: var(--text);
}

.quote-card strong {
  display: block;
  color: var(--ink);
}

.quote-card small {
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.bottom-green {
  width: 330px;
  height: 330px;
  left: -180px;
  bottom: -160px;
  border: 52px solid var(--green);
}

.bottom-red {
  width: 430px;
  height: 430px;
  right: -250px;
  bottom: -230px;
  border: 58px solid var(--red);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-copy p {
  max-width: 490px;
  color: var(--text);
  font-size: 1.05rem;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--text);
  font-weight: 850;
}

.contact-points span {
  color: var(--green);
}

.lead-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}

.lead-form h3 {
  color: var(--ink);
  margin-bottom: 16px;
}

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

.lead-form label span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid #d8e1ef;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  outline: none;
  background: white;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 98, 255, .10);
}

.full {
  grid-column: 1 / -1;
}

.full-btn {
  width: 100%;
  margin-top: 16px;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--line);
}

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

.footer-inner img {
  width: 150px;
  height: auto;
  transform: translateY(10px);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .tool-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    max-width: 720px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-grid article {
    border-right: 0;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-wrap {
    min-height: 92px;
  }

  .logo img {
    width: 196px;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 80px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .hero {
    padding: 46px 0;
  }

  .shape-red,
  .shape-green,
  .shape-yellow,
  .bottom-green,
  .bottom-red {
    opacity: .20;
  }

  h1 {
    letter-spacing: -.045em;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mini-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .metrics,
  .why-grid,
  .services-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .floating {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .tool-grid {
    padding: 18px;
  }

  .tool-demo {
    grid-template-columns: 1fr;
  }

  .tool-sidebar {
    display: none;
  }

  .tool-panel {
    padding: 18px;
  }

  .tool-stats {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr 82px 82px;
    gap: 8px;
    font-size: .75rem;
  }

  .services-grid article {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .services-grid article:last-child {
    border-bottom: 0;
  }

  .contact-section {
    padding: 56px 0;
  }

  .lead-form {
    padding: 20px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .dash-head {
    display: block;
  }

  .dash-head span {
    display: inline-block;
    margin-top: 10px;
  }

  .dashboard-card {
    padding: 18px;
  }

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

  .hero-text,
  .contact-copy p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 40%, rgba(15,98,255,.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.page-hero .shape-red   { top: -160px; right: -80px; }
.page-hero .shape-green { right: -180px; top: 190px; }
.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero-copy h1 { font-size: clamp(2.6rem, 4.8vw, 4.6rem); }

.stats-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: 0; }
.stat-item b {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.stat-item b em { color: var(--blue); font-style: normal; }
.stat-item p { margin: 5px 0 0; color: var(--muted); font-size: .84rem; font-weight: 800; }

.jacob-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.jacob-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 56px;
  align-items: start;
}
.jacob-sidebar {
  position: sticky;
  top: 100px;
}
.jacob-photo-wrap {
  position: relative;
  margin-bottom: 24px;
}
.jacob-photo {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.jacob-badge-overlay {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: .8rem;
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
}
.jacob-badge-overlay span { color: var(--blue); }
.jacob-creds {
  margin-top: 32px;
  display: grid;
  gap: 10px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.cred-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.cred-item strong {
  display: block;
  color: var(--ink);
  font-size: .84rem;
}
.cred-item small {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 750;
}
.jacob-content .section-label { margin-bottom: 6px; }
.jacob-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}
.jacob-content > p {
  color: var(--text);
  font-size: 1.04rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
.jacob-quote {
  margin: 24px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--blue);
  background: var(--soft);
  border-radius: 0 14px 14px 0;
}
.jacob-quote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
}
.highlights-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-soft);
}
.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: .93rem;
}
.highlights-list li:last-child { border-bottom: 0; }
.hl-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: .85rem;
  font-weight: 950;
}
.skills-block { margin-top: 24px; }
.skills-block h4 {
  color: var(--ink);
  font-size: .9rem;
  margin-bottom: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.skill-row { display: grid; gap: 5px; }
.skill-row span {
  color: var(--text);
  font-size: .84rem;
  font-weight: 750;
  display: flex;
  justify-content: space-between;
}
.skill-row span em {
  font-style: normal;
  color: var(--muted);
  font-size: .78rem;
}
.skill-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #5b9eff);
}
.exp-timeline {
  margin-top: 28px;
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}
.exp-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.exp-item:last-child { border-bottom: 0; padding-bottom: 0; }
.exp-years {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 850;
  padding-top: 2px;
}
.exp-item strong { display: block; color: var(--ink); font-size: .93rem; margin-bottom: 2px; }
.exp-item span   { color: var(--muted); font-size: .84rem; }

.team-section {
  padding: 70px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.about-team-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
  max-width: 1120px;
  margin-inline: auto;
}
.team-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
  border-bottom-width: 4px;
}
.about-team-grid .team-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 32px;
  align-items: start;
}
.about-team-grid .team-photo {
  grid-row: 1 / span 4;
  width: 150px;
  height: 150px;
  margin-bottom: 0;
}
.tc-blue   { border-bottom-color: var(--blue); }
.tc-green  { border-bottom-color: var(--green); }
.tc-red    { border-bottom-color: var(--red); }
.tc-yellow { border-bottom-color: var(--yellow); }
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--line);
  margin-bottom: 16px;
  display: block;
}
.team-initials {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 950;
  margin-bottom: 16px;
  border: 3px solid var(--line);
}
.team-role {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.role-blue   { color: var(--blue);  background: rgba(15,98,255,.10); }
.role-green  { color: var(--green); background: rgba(25,169,87,.11); }
.role-red    { color: var(--red);   background: rgba(239,47,42,.10); }
.role-yellow { color: #9a6e00;      background: rgba(245,180,0,.15); }
.team-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.team-name-row h3 {
  margin-bottom: 0;
}
.team-name-row a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.team-name-row img {
  width: auto;
  height: 22px;
}
.team-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.2rem;
}
.team-card p {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
}
.about-team-grid .skill-tags {
  margin-top: 0;
}
.skill-tag {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
}
.jacob-popup-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  grid-column: 2;
  margin-top: 22px;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 40px rgba(15,98,255,.25);
}
.jacob-popup-cta p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.jacob-popup-cta strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
}
.jacob-popup-cta a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  background: #fff;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 900;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .2s ease;
}
.jacob-popup-cta a:hover {
  transform: translateY(-2px);
}
.partner-badges {
  grid-column: 2;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.partner-badges p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner-badges div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}
.partner-badges img {
  width: auto;
  max-width: 170px;
  max-height: 56px;
  object-fit: contain;
}
.about-cta {
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}
.about-cta h2 { max-width: 600px; margin: 0 auto 14px; }
.about-cta > .container > p { color: var(--muted); max-width: 460px; margin: 0 auto 28px; font-size: 1.04rem; }

@media (max-width: 1040px) {
  .jacob-grid { grid-template-columns: 150px 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .jacob-grid { grid-template-columns: 1fr; }
  .jacob-sidebar { position: static; }
  .jacob-photo { aspect-ratio: 4/3; max-width: 360px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--line); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--line); border-right: 0; }
  .skills-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-item:last-child { border-bottom: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .about-team-grid .team-card {
    display: flex;
  }
  .about-team-grid .team-photo {
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
  }
  .jacob-photo { max-width: 100%; }
  .jacob-popup-cta,
  .partner-badges {
    grid-column: auto;
  }
  .jacob-popup-cta a {
    width: 100%;
    justify-content: center;
  }
  .partner-badges div {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
  }
  .partner-badges img {
    max-width: 24%;
    max-height: 34px;
  }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 40%, rgba(15,98,255,.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.contact-page-hero .shape-red  { top: -160px; right: -80px; }
.contact-page-hero .shape-green { right: -180px; top: 190px; }
.contact-page-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-page-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  max-width: 520px;
}
.contact-page-copy p {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 30px;
}
.contact-info-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-soft);
}
.contact-info-item .info-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.1rem;
}
.contact-info-item .info-body strong {
  display: block;
  color: var(--ink);
  font-size: .92rem;
  margin-bottom: 2px;
}
.contact-info-item .info-body span,
.contact-info-item .info-body a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
}
.contact-info-item .info-body a { color: var(--blue); }
.contact-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: .82rem;
  font-weight: 850;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.guarantee-badge .dot { flex-shrink: 0; }
.contact-form-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 6px;
}
.contact-form-card > p {
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 22px;
}
.why-strip {
  padding: 52px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-strip-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border-bottom-width: 4px;
}
.why-strip-card h4 {
  margin: 14px 0 6px;
  color: var(--ink);
  font-size: 1rem;
}
.why-strip-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

@media (max-width: 1000px) {
  .contact-page-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .why-strip-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 22px; }
}
