:root {
  --ink: #082f44;
  --deep: #2370AF;
  --deep-2: #2370AF;
  --blue: #0384CE;
  --blue-2: #2370AF;
  --cyan: #13D5B8;
  --paper: #ffffff;
  --muted: #64748b;
  --line: rgba(8, 47, 68, .13);
  --body-font: "Raleway", sans-serif;
  --heading-font: "Raleway", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

.top-strip,
.cta-strip {
  background: var(--cyan);
}

.top-strip {
  height: 17px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: none;
}

.navbar {
  min-height:80px;
  padding: 0;
}

.site-header .container {
  max-width: 1040px;
  align-items: center;
}

.navbar-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 230px;
  color: var(--deep);
  font-weight: 700;
  padding: 0;
}

.brand-mark {
  display: block;
  width: 224px;
  height: auto;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.navbar-nav {
  gap: 18px;
}

.nav-link {
  position: relative;
  color: #666b75;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 0 13px !important;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--cyan);
}

.section-pad {
  padding: 86px 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  color: #fff;
  background:
    
    url("../img/hero-bg.png") center/cover no-repeat;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 47, 68, .78) 0%, rgba(8, 47, 68, .52) 48%, rgba(35, 112, 175, .28) 100%),
    linear-gradient(180deg, rgba(8, 47, 68, .15) 0%, rgba(8, 47, 68, .42) 100%);
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}


.min-vh-hero {
  min-height: 650px;
}

.hero-content {
  max-width: 612px;
  padding: 56px 0 42px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 13px 48px 13px 50px;
  color: #fff;
  background: rgba(3, 132, 206, .86);
  border-radius: 999px;
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.pill i {
  color: var(--cyan);
  font-size: .65rem;
}

.pill-dark {
  color: #fff;
  background: var(--blue);
}

.pill-light {
  color: #fff;
  background: rgba(3, 132, 206, .75);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 540px;
  margin-top: 34px;
  font-size: clamp(3rem, 5vw, 5.05rem);
  font-weight: 300;
  line-height: .98;
}

h1 strong {
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.3vw, 3.05rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 24px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.28;
}
.hero-section h1 strong {
  font-weight: 600;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 30px;
  max-width: 710px;
  margin: 26px 0 26px;
  font-size: 1rem;

  line-height: 1.28;
}

.feature-grid > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-check {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

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

.hero-bottom-line {
  max-width: 530px;
  margin: 0 0 10px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, .38);
  color: rgba(255, 255, 255, .92);
  font-size: 1.25rem;
  font-weight: 300;
}

.hero-bottom-line strong {
  font-weight: 800;
}

.btn-primary {
  --bs-btn-bg: var(--cyan);
  --bs-btn-border-color: var(--cyan);
  --bs-btn-hover-bg: #10bfa5;
  --bs-btn-hover-border-color: #10bfa5;
  --bs-btn-color: #05344a;
  --bs-btn-hover-color: #05344a;
  font-weight: 700;
  padding: .83rem 1rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(90deg, #0384CE 0%, #13D5B8 100%);
  border-color: transparent;
  box-shadow: none;
}

.hero-actions .btn i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
}

.hero-card {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: min(420px, 42vw);
  min-height: 192px;
  padding: 52px 52px 44px;
  color: #fff;
  background: var(--blue);
}

.hero-card > span,
.hero-card strong {
  display: block;
  font-family: var(--heading-font);
  font-size: clamp(2.15rem, 3vw, 2.65rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-card strong {
  color: rgba(255, 255, 255, .9);
  font-weight: 400;
}

.hero-card strong span {
  display: inline;
}

.intro-section {
  padding: 92px 0 88px;
  background: #fff;
}

.portrait-wrap {
  position: relative;
  width: min(640px, 100%);
  min-height: 690px;
  margin: 0 auto;
}

.portrait-main {
  width: min(474px, 78%);
  height: auto;
  margin-left: auto;
  object-fit: cover;
  border-radius: 18px;
}

.portrait-small {
    position: absolute;
    left: -48px;
    bottom: 21px;
    width: 326px;
    padding: 18px 14px 40px 52px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(8, 47, 68, .13);
    display:none;
}

.portrait-small img {
  height: 365px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.portrait-small span {
  position: absolute;
  left: -87px;
  top: 50%;
  transform: rotate(-90deg);
  color: var(--blue);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-tile {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 336px;
  min-height: 184px;
  padding: 30px 34px 26px 68px;
  color: #fff;
  background: var(--cyan);
  border-radius: 0 0 18px 0;
  font-family: var(--heading-font);
}

.quote-tile::before {
  content: "\201C";
  position: absolute;
  left: 28px;
  top: 22px;
  color: rgba(255, 255, 255, .32);
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 1;
}

.quote-tile small,
.quote-tile b {
  display: block;
}

.quote-tile small {
  font-size: 1.78rem;
  font-weight: 400;
  line-height: 1.05;
}

.quote-tile b {
  margin-top: 12px;
  font-size: 1.78rem;
  font-weight: 800;
  line-height: 1.05;
}

.content-block h2,
.section-head h2 {
  margin: 18px 0 20px;
  color: var(--blue);
}

.content-block h2 {
  max-width: 560px;
  color: #27327d;
  font-size: clamp(2.2rem, 3.6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.02;
}

.content-block h2 span {
  display: block;
  color: var(--blue);
  font-weight: 400;
}

.content-block h3 {
  margin: 18px 0 10px;
  color: var(--blue);
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.12;
}

.content-block p {
  max-width: 660px;
  margin: 0 0 16px;
  color: #7b8b97;
  font-size: .95rem;
  line-height: 1.18;
}

.content-block p strong {
  color: var(--cyan);
}

.accent-note {
  max-width: 620px;
  margin: 24px 0 18px !important;
  padding: 25px 31px;
  color: #fff !important;
  background: var(--cyan);
  border-radius: 12px;
  font-weight: 500;
  line-height: 1.18 !important;
}

.dark-section,
.questions-section,
.conversation-section,
.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(19, 210, 186, .18), transparent 24%),
    radial-gradient(circle at 8% 86%, rgba(3, 132, 206, .28), transparent 23%),
    var(--deep-2);
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background: #033245 url("../img/create-bg-1.png") center/cover no-repeat;
}

.narrow {
  max-width: 720px;
}

.dark-section .narrow {
  max-width: 900px;
}

.dark-section h2,
.conversation-section h2 {
  margin-top: 28px;
  text-transform: uppercase;
}

.dark-section h2 {
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: .98;
}

.dark-section h2 span,
.conversation-section h2 span {
  display: block;
  color: var(--cyan);
}

.dark-section p,
.conversation-section p {
  color: rgba(255, 255, 255, .82);
}

.stats-row {
  /* max-width: 940px; */
  margin-inline: auto;
  padding-top: 22px;
}

.stat-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  color: #fff;
  background: rgba(35, 112, 175, .72);
  border-radius: 12px;
}

.stat-icon {
  flex: 0 0 65px;
  display: inline-grid;
  place-items: center;
  width: 55px;
  height: 65px;
  background: linear-gradient(135deg, #1a90c7 0%, #13d5b8 100%);
  border-radius: 8px;
}

.stat-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.stat-text {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.08;
}

.stat-text strong {
  display: block;
  color: var(--cyan);
  font-weight: 400;
}

.created-lower {
  margin-top: 52px;
}

.side-title {
  max-width: 270px;
  margin: 0 0 72px 22px;
  color: rgba(255, 255, 255, .58);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: .96;
}

.side-title span {
  color: var(--cyan);
  font-weight: 600;
}

.blue-panel,
.dark-copy {
  padding: 58px 34px 44px;
  background: #1f86bd;
  border-radius: 0;
}

.blue-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blue-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .82);
  font-size: .96rem;
  line-height: 1.22;
}

.blue-panel li + li {
  margin-top: 15px;
}

.blue-panel img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.blue-panel strong {
  color: #fff;
}

.rounded-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.dark-copy {
  background: rgba(3, 132, 206, .38);
}

.dark-copy h3 {
  margin-bottom: 18px;
}

.lived-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  color: #fff;
  background: #073a50 url("../img/create-bg-2.png") center/cover no-repeat;
}

.lived-section .container {
  max-width: 1064px;
}

.lived-image {
  width: 100%;
  max-width: 610px;
  aspect-ratio: 1.03 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.lived-content {
  max-width: 610px;
}

.lived-content h2 {
  color: #fff;
  font-family: var(--body-font);
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  font-weight: 400;
  line-height: 1.1;
}

.lived-content h2 span {
  color: var(--cyan);
}

.lived-content p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 1rem;
  line-height: 1.15;
}

.lived-content h3 {
  margin: 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.lived-card {
  margin: 28px 0 34px;
  padding: 48px 40px;
  background: rgba(35, 112, 175, .72);
  border-radius: 14px;
}

.lived-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.lived-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: rgba(255, 255, 255, .74);
  font-size: 1rem;
  line-height: 1.2;
}

.lived-list img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.lived-note {
  max-width: 585px;
  padding: 24px 32px;
  color: #fff;
  background: #1f86bd;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.cta-strip {
  padding: 25px 0;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.2;
}

.cta-strip .container {
  gap: min(12vw, 130px) !important;
}

.cta-strip span,
.cta-strip strong {
  font-weight: 400;
}

.research-section {
  background: #fff;
}

.research-section .container {
  max-width: 1064px;
}

.section-head {
  max-width: 520px;
  margin-bottom: 30px;
}

.section-head .pill {
  padding: 9px 35px;
  font-size: .78rem;
  text-transform: uppercase;
}

.section-head h2 {
  color: #27327d;
  font-size: clamp(1.8rem, 3vw, 2.95rem);
  font-weight: 500;
  line-height: .96;
}

.section-head h2 span {
  color: var(--blue);
  font-weight: 700;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.research-card {
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

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

.research-card div {
  min-height: 136px;
  padding: 20px 22px 24px;
}

.research-card p {
  margin: 0 0 16px;
  color: #fff;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.16;
}

.research-card strong {
  display: block;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.2;
}

.insight-card a {
  color: #fff;
  font-weight: 800;
}

.owl-theme .owl-dots .owl-dot span {
  background: rgba(3, 132, 206, .28);
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--cyan);
}

.questions-section {
  padding: 0 0 46px;
  color: #fff;
  background: #073a50 url("../img/create-bg-2.png") center/cover no-repeat;
}

.questions-section .container {
  max-width: 1064px;
}

.question-banner {
  max-width: 940px;
  margin: 0 auto;
  padding: 28px 38px 30px;
  text-align: center;
  background: #1f86bd;
  border-radius: 0 0 12px 12px;
}

.question-banner p,
.question-banner strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
}

.question-banner p {
  margin-bottom: 8px;
  font-weight: 600;
}

.question-banner strong {
  font-weight: 700;
}

.question-body {
  margin-top: 28px;
}

.question-list {
  display: grid;
  gap: 20px;
}

.question-list div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 17px 22px;
  color: #fff;
  background: #1f86bd;
  border-radius: 10px;
  font-size: 1.35rem;

  line-height: 1.18;
  font-family: var(--body-font);
}

.question-list img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 6px;
}

.question-image {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  aspect-ratio: .82 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.contact-card-section {
  padding: 36px 0 0;
  background: linear-gradient(var(--cyan) 0 172px, #fff 172px 100%);
}

.contact-card-section .container {
  max-width: 1040px;
}

.contact-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #fff;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-lead p {
  margin: 0;
}

.contact-lead strong {
  display: block;
  margin-top: 18px;
  font-weight: 800;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(320px, 395px) 1fr;
  gap: 32px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 18px 45px rgba(8, 47, 68, .08);
}

.contact-card img {
  height: 376px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.contact-card .pill {
  padding: 13px 46px;
  font-size: 1rem;
  text-transform: uppercase;
}

.contact-card h2 {
  max-width: 450px;
  margin: 26px 0 16px;
  color: #27327d;
  font-size: clamp(2.2rem, 4vw, 3.05rem);
  font-weight: 700;
  line-height: .98;
}

.contact-card h2 span {
  display: block;
  color: var(--cyan);
  font-weight: 600;
}

.contact-card p {
  margin: 0 0 14px;
  color: #7b8b97;
  font-size: 1.08rem;
}

.contact-card .btn {
  min-width: 218px;
  padding: .5rem 1.4rem;
  color: #fff;
  background: linear-gradient(90deg, #0384CE 0%, #13D5B8 100%);
  border-color: transparent;
  font-size: 1.08rem;
  font-weight: 500;
}

.conversation-section {
  padding: 70px 0 128px;
  color: #fff;
  background: #033245 url("../img/create-bg-1.png") center/cover no-repeat;
}

.conversation-section .narrow {
     max-width: 780px;
    background: rgba(0, 0, 0, .2);
    padding: 30px;
    border-radius: 6px;
}

.conversation-section .pill {
  padding: 13px 38px;
  background: rgba(35, 112, 175, .78);
  font-size: 1rem;
  text-transform: uppercase;
}

.conversation-section h2 {
  margin-top: 34px;
  color: #fff;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  font-weight: 700;
  line-height: .95;
  text-transform: uppercase;
}

.conversation-section h2 span {
  color: var(--cyan);
}

.conversation-section p {
  max-width: 670px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, .74);
  font-size: .98rem;
  line-height: 1.25;
}

.conversation-section h3 {
  margin: 34px 0 0;
  color: #fff;
  font-family: var(--body-font);
  font-size: 1.55rem;
  font-weight: 800;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
}

.socials img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.insights-section {
  padding: 86px 0 118px;
  background: #fff;
}

.insights-section .container {
  max-width: 1160px;
}

.insights-section h2 {
  max-width: 620px;
  margin: 26px auto 0;
  color: #27327d;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: .96;
}

.insights-section .pill {
  padding: 14px 58px;
  font-size: 1rem;
  text-transform: uppercase;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.insight-card img {
  width: 100%;
  height: 262px;
  object-fit: cover;
  border-radius: 8px;
}

.insight-card h3 {
  min-height: 58px;
  margin: 28px 0 38px;
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.insight-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid var(--cyan);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
}

.insight-card a i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: linear-gradient(135deg, #0384CE 0%, #13D5B8 100%);
  border-radius: 50%;
  font-size: .9rem;
}

.site-footer {
  padding: 28px 0 30px;
  background: #07445a;
}

.site-footer .container {
  max-width: 1080px;
}

.footer-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 70px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 274px;
  margin: 0 auto;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
}

.footer-copy p {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.footer-divider {
  width: calc(100% - 40px);
  height: 1px;
  margin: 28px auto 24px;
  background: var(--cyan);
}

.footer-bottom {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: auto;
    padding: 14px 0;
  }

  .navbar-brand {
    width: 150px;
  }

  .brand-mark {
    width: 150px;
    height: auto;
  }

  .navbar-collapse {
    padding: 18px 0 8px;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    display: inline-block;
    font-size: 1rem;
    padding: 12px 0 10px !important;
  }

  .nav-link.active::after {
    left: 0;
    right: 0;
  }

  .hero-section,
  .min-vh-hero {
    min-height: 720px;
  }

  .hero-content {
    max-width: 560px;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.75rem, 8vw, 4.25rem);
  }

  .hero-card {
    right: 24px;
    width: min(520px, calc(100% - 48px));
    min-height: 180px;
    padding: 46px 46px 38px;
  }

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

  .section-pad {
    padding: 68px 0;
  }

  .dark-section {
    padding: 68px 0 0;
  }

  .lived-section {
    padding: 68px 0 0;
  }

  .lived-image,
  .lived-content {
    max-width: 100%;
  }

  .lived-note {
    max-width: 100%;
  }

  .research-section .container {
    max-width: 720px;
  }

  .intro-section {
    padding: 68px 0;
  }

  .portrait-wrap {
    min-height: 680px;
  }

  .content-block {
    max-width: 680px;
    margin: 0 auto;
  }

  .portrait-small span {
    display: none;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card img {
    height: auto;
    aspect-ratio: 1.25 / .78;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .top-strip {
    height: 10px;
  }

  .navbar-brand {
    width: 130px;
  }

  .brand-mark {
    width: 130px;
    height: auto;
  }

  .hero-section {
    min-height: auto;
    padding: 0 0 50px;
    background-position: 63% center;
  }

  .min-vh-hero {
    min-height: auto;
  }

.research-card img {
  width: 100%;
height:auto;
  object-fit: cover;
}
  .hero-content {
    padding: 52px 0 34px;
  }
.guide-btn{
 min-width: 100% !important;
        max-width: 100% !important;
     padding: 6px 7px 6px 13px;   
}
  .pill {
    padding: 11px 22px;
    font-size: 1rem;
  }

  h1 {
    max-width: 360px;
    margin-top: 26px;
    font-size: clamp(2.65rem, 12vw, 3.8rem);
  }

  .hero-copy {
    font-size: .95rem;
  }

  .feature-grid {
    font-size: .82rem;
  }

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

  .dark-section h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .stat-card {
    min-height: 104px;
    padding: 22px 24px;
  }

  .created-lower {
    margin-top: 34px;
  }

  .side-title {
    max-width: 100%;
    margin: 0;
    font-size: 2rem;
  }

  .blue-panel li {
    font-size: .9rem;
  }

  .lived-section {
    padding: 52px 0 0;
  }

  .lived-card {
    padding: 32px 24px;
  }

  .lived-list li {
    font-size: .92rem;
  }

  .cta-strip {
    font-size: 1.35rem;
    text-align: center;
  }

  .hero-bottom-line {
    font-size: 1.1rem;
  }

  .hero-card {
    left: auto;
    right: auto;
    bottom: 0;
    width: 100%;
    min-height: 150px;
    margin: 0;
    padding: 34px 30px;
    position: relative;
  }

  .hero-card > span,
  .hero-card strong {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
    white-space: normal;
  }

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

  .portrait-wrap {
    width: 100%;
    min-height: 0;
    padding-left: 0;
  }

  .portrait-main {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    object-position: center top;
  }

  .portrait-small {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    padding: 18px 14px 24px 52px;
  }

  .portrait-small img {
    height: 320px;
  }

  .portrait-small span {
    display: none;
  }

  .quote-tile {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    margin-top: 18px;
    padding: 28px 28px 28px 64px;
    border-radius: 0 0 18px 18px;
  }

  .quote-tile small,
  .quote-tile b {
    font-size: 1.55rem;
  }

  .content-block h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .content-block p {
    font-size: .92rem;
  }

  .blue-panel,
  .dark-copy,
  .question-banner {
    padding: 24px;
  }

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

  .research-card img {
    height: auto;
    aspect-ratio: 1.25 / .82;
  }

  .question-list div {
    font-size: 1.12rem;
  }

  .question-image {
    max-width: 100%;
    aspect-ratio: 1 / .9;
    margin-left: 0;
  }

  .contact-card {
    padding: 18px;
    gap: 26px;
  }

  .contact-card-section {
    padding-top: 30px;
    background: linear-gradient(var(--cyan) 0 210px, #fff 210px 100%);
  }

  .contact-lead {
    font-size: 1rem;
  }

  .contact-card .pill {
    padding: 11px 22px;
    font-size: .9rem;
  }

  .contact-card h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-card .btn {
    width: 100%;
  }

  .conversation-section {
    padding: 56px 0 78px;
  }

  .conversation-section h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .insights-section {
    padding: 62px 0 78px;
  }

  .insights-section .pill {
    padding: 11px 28px;
    font-size: .9rem;
  }

  .insights-section h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .insight-grid {
    margin-top: 38px;
  }

  .insight-card img {
    height: auto;
  }

  .site-footer h3 {
    font-size: 1.55rem;
  }

  .footer-copy p {
    font-size: 1rem;
  }

  .footer-logo img {
    width: 220px;
  }
}

@media (max-width: 420px) {
  .portrait-small {
    padding-left: 44px;
  }

  .portrait-small span {
    display: none;
  }
}

.guide-page {
  background: #fff;
}

.guide-page .site-header {
  position: relative;
}

.guide-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #145e7b;
}

.guide-hero::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 28px;
  width: 230px;
  height: 245px;
  opacity: .16;
  background:
    linear-gradient(30deg, transparent 48%, rgba(19, 213, 184, .7) 49%, rgba(19, 213, 184, .7) 51%, transparent 52%) 0 0 / 58px 50px,
    linear-gradient(150deg, transparent 48%, rgba(19, 213, 184, .7) 49%, rgba(19, 213, 184, .7) 51%, transparent 52%) 0 0 / 58px 50px,
    linear-gradient(90deg, transparent 48%, rgba(19, 213, 184, .7) 49%, rgba(19, 213, 184, .7) 51%, transparent 52%) 0 0 / 58px 50px;
  pointer-events: none;
}

.guide-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 620px;
}

.guide-hero-copy {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 86px 0 64px;
  text-align: center;
}

.guide-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 27px;
  color: #fff;
  background: rgba(3, 132, 206, .86);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.guide-pill i {
  color: var(--cyan);
  font-size: .55rem;
}

.guide-hero .guide-pill {
  gap: 13px;
  padding: 12px 30px;
  font-size: 1.13rem;
  text-transform: none;
}

.guide-hero .guide-pill i {
  font-size: .8rem;
}

.guide-pill-dark {
  background: var(--blue-2);
}

.guide-hero h1 {
  max-width: 720px;
  margin: 39px 0 18px;
  color: #fff;
  font-size: clamp(2.65rem, 3.45vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.guide-kicker {
  color: var(--cyan) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.guide-hero p {
  max-width: 680px;
  margin: 0 auto 23px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.22rem;
  line-height: 1.28;
}

.guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 23px;
  min-width: 395px;
  padding:6px 7px 6px 12px;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(90deg, #0384CE 0%, #13D5B8 100%);
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 800;
}

.guide-btn:hover {
  color: #fff;
}

.guide-btn i {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
}

.guide-hero-image {
  min-height: 620px;
}

.guide-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.guide-audience {
  padding: 74px 0 66px;
}

.guide-audience .container,
.guide-author .container,
.guide-no-course .container {
  max-width: 1140px;
}

.guide-audience h2,
.guide-author h2,
.guide-no-course h2 {
  margin: 24px 0 19px;
  color: #27327d;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: .98;
}

.guide-audience h2 span,
.guide-author h2 span {
  display: block;
  color: var(--blue);
}

.guide-check-list {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.guide-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #64748b;
  font-size: .95rem;
  line-height: 1.25;
}

.guide-check-list img {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.guide-callout {
  max-width: 430px;
  padding: 24px 30px;
  color: #fff;
  background: var(--cyan);
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 800;
}

.guide-audience-img {
  width: min(100%, 413px);
  margin-left: auto;
  object-fit: cover;
  border-radius: 16px;
}

.guide-photo-stack {
position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

.guide-photo-large {
  width: 245px;
  /* height: 380px; */
  margin-left: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.guide-photo-small {

  width: 180px;
  height: 205px;
  object-fit: cover;
  border: 14px solid #fff;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(8, 47, 68, .12); 
}

.guide-inside {
  padding: 64px 0 78px;
  color: #fff;
  background: #07445a;
}

.guide-inside .container {
  max-width: 870px;
}

.guide-inside h2 {
  margin: 28px 0 42px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: .98;
}

.guide-accordion {
  display: grid;
  gap: 14px;
}

.guide-accordion-item p {
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .34s ease, margin .34s ease, opacity .24s ease;
}

.guide-accordion-item.guide-accordion-open p {
  max-height: 130px;
  opacity: 1;
}

.guide-accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 48px;
  color: #fff;
  background: #155f7e;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.2;
  text-align: left;
}

.guide-accordion i {
  color: var(--cyan);
  font-size: 1.3rem;
}

.guide-accordion-open p {
  max-width: 100%;
  margin: 22px 0 34px 48px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
}

.guide-teal-strip {
  padding: 20px 0;
  color: #fff;
  background: var(--cyan);
  text-align: center;
  font-size: .9rem;
  line-height: 1.25;
}

.guide-teal-strip .container {
  max-width: 620px;
}

.guide-author {
  padding: 74px 0;
}

.guide-author-img {
  width: 330px;
  height: 485px;
  object-fit: cover;
  border-radius: 16px;
}

.guide-author h2 {
  max-width: 660px;
}

.guide-author p {
  max-width: 680px;
  margin: 0 0 14px;
  color: #7b8b97;
  font-size: .98rem;
  line-height: 1.35;
}

.guide-author strong,
.guide-author em {
  display: block;
  color: #13a996;
  font-size: .92rem;
  line-height: 1.35;
}

.guide-author strong {
  margin-top: 18px;
}

.guide-author em {
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
}

.guide-access {
  padding: 68px 0 78px;
  color: #fff;
  background: #07445a url("../img/create-bg-1.png") center/cover no-repeat;
}

.guide-access h2 {
  margin: 28px 0 23px;
  color: #fff;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.guide-access h2 span {
  color: var(--cyan);
}

.guide-access p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.05rem;
}

.guide-form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .75);
}

.guide-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.guide-form input::placeholder {
  color: #fff;
  opacity: 1;
}

.guide-form button {
  flex: 0 0 auto;
  margin-bottom: 8px;
  padding: 9px 18px;
  color: #fff;
  background: linear-gradient(90deg, #0384CE 0%, #13D5B8 100%);
  border: 0;
  border-radius: 3px;
  font-size: .85rem;
  font-weight: 800;
}

.guide-access small {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
}

.guide-no-course {
  padding: 64px 0 78px;
}

.guide-no-course h2 {
  color: #07445a;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.guide-no-course p {
  max-width: 470px;
  margin: 0 0 12px;
  color: #7b8b97;
  font-size: .95rem;
  line-height: 1.35;
}

.guide-no-course strong {
  color: #07445a;
  font-size: .9rem;
}

.guide-no-course img {
  width: 100%;

  object-fit: cover;
  border-radius: 8px;
}
.wpcf7-form p{
    margin:15px 0px 0px 0px !important;
    width:100%;
    max-width:100% !important;
}

.footer-copy .socials {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .guide-hero-grid {
    grid-template-columns: 1fr;
  }

  .guide-hero-copy {
    width: 100%;
    margin: 0;
    padding: 58px 24px;
  }

  .guide-hero-image {
    min-height: 360px;
  }

  .guide-photo-stack {
    max-width: 520px;
    margin: 0 auto;
  }

  .guide-audience-img,
  .guide-author-img,
  .guide-no-course img {
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .guide-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .guide-pill {
    padding: 9px 18px;
    font-size: .78rem;
  }

  .guide-audience,
  .guide-author,
  .guide-no-course {
    padding: 54px 0;
  }

  .guide-photo-stack {
    min-height: 0;
  }

  .guide-photo-large {
    width: 70%;
    height: auto;
    aspect-ratio: .72 / 1;
    margin-left: 0;
  }

  .guide-photo-small {
    width: 42%;
    height: auto;
    aspect-ratio: .88 / 1;
    border-width: 9px;
  }

  .guide-inside,
  .guide-access {
    padding: 54px 0 62px;
  }

  .guide-accordion button {
    padding: 17px 20px;
    font-size: .95rem;
  }

  .guide-accordion-open p {
    margin: 18px 20px 28px;
  }

  .guide-audience-img,
  .guide-author-img,
  .guide-no-course img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / .9;
  }

  .guide-form {
    display: grid;
    gap: 12px;
    border-bottom: 0;
  }

  .guide-form input {
    border-bottom: 1px solid rgba(255, 255, 255, .75);
  }

  .guide-form button {
    width: 100%;
    margin: 0;
  }
  .footer-copy .socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 20px;
}
}