@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f0f2f5;
  --surface: #ffffff;
  --surface-2: #f0f2f5;
  --ink: #212529;
  --muted: rgba(33, 37, 41, 0.75);
  --line: rgba(33, 37, 41, 0.15);
  --primary: #6ea8fe;
  --primary-dark: #0260eb;
  --accent: #474973;
  --dark: #141e2e;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.topline,
.navbar-shell,
.hero,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.topline {
  display: none;
}

.navbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Assistant", sans-serif;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--ink);
  padding: 0.6rem 0.85rem;
  border-radius: 4px;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.nav-group > button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.6rem 0.85rem;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}

.nav-group > button:hover,
.nav-group.is-open > button {
  color: var(--primary-dark);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  display: none;
  flex-direction: column;
  padding: 0.8rem 0.45rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-group:hover .nav-submenu,
.nav-group.is-open .nav-submenu {
  display: flex;
}

.nav-submenu a {
  padding: 0.65rem 0.85rem;
}

.nav-cta {
  padding: 0.65rem 1rem !important;
  border-radius: 4px;
  background: var(--primary);
  color: white !important;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 2.2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-home {
  gap: 2.9rem;
  padding: 3.8rem 0 2.6rem;
}

.hero-copy,
.page-hero-copy {
  background: var(--surface);
  border: 1px solid rgba(33, 37, 41, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.4rem;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 800;
}

.hero-kicker-title {
  margin: 0 0 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.45rem, 2.45vw, 2.15rem);
  line-height: 1.12;
  max-width: 14ch;
}

.section-kicker-title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.25rem, 3.8vw, 3.45rem);
  line-height: 1.02;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.05;
  font-family: "Assistant", sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.28rem;
}

.lead,
.section-heading p,
.copy-block p,
.card p,
.feature-list,
.page-intro p,
.stat,
.faq-list {
  color: var(--muted);
}

.hero-home .lead {
  max-width: 32rem;
  font-size: 1.18rem;
  line-height: 1.7;
}

.page-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.page-hero-copy p {
  max-width: 32rem;
  font-size: 1.12rem;
  line-height: 1.7;
}

.section-heading > p:last-child {
  max-width: 48rem;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 16px 30px rgba(110, 168, 254, 0.28);
}

.button-secondary {
  background: white;
  border: 1px solid var(--line);
}

.section {
  padding: 2.5rem 0;
}

.hero-home + .section {
  padding-top: 3.2rem;
}

.section-muted {
  background: var(--bg-soft);
}

.section-dark {
  padding: 3.2rem 0;
  background: var(--bg-soft);
  color: white;
}

.section-dark,
.section-dark h2,
.section-dark h3 {
  color: var(--dark);
}

.section-dark .eyebrow,
.section-dark .section-heading p {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.split > div:first-child .section-kicker-title {
  max-width: 14ch;
}

.hero-home .hero-media img {
  min-height: 390px;
  max-height: 520px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid rgba(33, 37, 41, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3,
.card p,
.card ul {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.card h3 {
  margin-top: 1rem;
}

.card p,
.card ul {
  margin-bottom: 1.2rem;
}

.card-link {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(14, 28, 34, 0.16);
}

.horizontal {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
}

.horizontal img {
  height: 100%;
  min-height: 240px;
}

.split,
.page-hero,
.page-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.page-hero {
  grid-template-columns: 1.02fr 1.08fr;
  gap: 2.9rem;
  margin-bottom: 2.5rem;
}

.stacked-images {
  display: grid;
  gap: 1rem;
}

.stacked-images img,
.image-panel img,
.gallery-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list,
.bullet-list,
.faq-list {
  padding-left: 1.1rem;
}

.feature-list li,
.bullet-list li,
.faq-list li {
  margin-bottom: 0.7rem;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.logo-wall img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 1rem;
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  align-items: center;
  text-align: center;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  margin-bottom: 0.8rem;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer a,
.site-footer p {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-logo {
  width: 110px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.8rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.footer-socials a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copyright-bar {
  padding: 0.85rem 1rem 1.4rem;
  text-align: center;
  color: var(--muted);
  background: var(--bg-soft);
  border-top: 1px solid rgba(33, 37, 41, 0.08);
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2.2rem 0 3rem;
}

.page-hero {
  margin-bottom: 2.5rem;
}

.page-hero-copy {
  align-self: center;
}

.page-hero-media img {
  min-height: 390px;
  max-height: 520px;
}

.page-hero-copy p:last-child,
.copy-block p:last-child,
.image-panel p:last-child {
  margin-bottom: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.stat {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.stat strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.image-panel,
.copy-block,
.contact-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  gap: 1.5rem;
}

.contact-card a {
  display: block;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.contact-note {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--primary);
  background: var(--surface-2);
  border-radius: 14px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  background: #fff;
  border: 1px solid rgba(33, 37, 41, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.video-card h3,
.video-card p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  font-family: "Assistant", sans-serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p,
.faq-item ul {
  padding: 0 1.1rem 1rem;
}

@media (max-width: 1080px) {
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-group {
    width: 100%;
  }

  .nav-group::after {
    display: none;
  }

  .nav-group > button,
  .site-nav > a,
  .nav-cta {
    width: 100%;
    text-align: left;
  }

  .nav-submenu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.25rem 0.75rem;
    min-width: 0;
  }

  .nav-group.is-open .nav-submenu {
    display: flex;
  }

  .hero,
  .page-hero,
  .page-section-grid,
  .split,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .two-up,
  .horizontal,
  .gallery-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topline {
    justify-content: flex-start;
  }

  .hero-copy,
  .page-hero-copy,
  .cta-banner {
    padding: 1.5rem;
  }

  .four-up,
  .logo-wall,
  .video-grid {
    grid-template-columns: 1fr;
  }
}
