:root {
  --navy: #024479;
  --navy-dark: #012f56;
  --blue: #005aa8;
  --red: #ff2028;
  --ink: #10233d;
  --muted: #526172;
  --line: #dce6f1;
  --soft: #eef7ff;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 30px;
  --brand-gradient: linear-gradient(263deg, var(--red) 0%, var(--blue) 48%, var(--navy-dark) 100%);
  --brand-gradient-reverse: linear-gradient(263deg, var(--navy-dark) 0%, var(--blue) 48%, var(--red) 100%);
  --card-border-gradient: linear-gradient(135deg, rgba(255, 32, 40, 0.34), rgba(0, 90, 168, 0.28), rgba(255, 255, 255, 0.72));
  --shadow: 0 16px 42px rgba(2, 68, 121, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

h1,
h2,
h3 {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  color: var(--white);
  font-size: 74px;
  margin: 0 0 26px;
}

h2 {
  font-size: 48px;
  margin-bottom: 22px;
}

h2 span {
  font-weight: 700;
  background-image: var(--brand-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
}

.container {
  max-width: 1320px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 54px;
  padding: 9px 10px 9px 24px;
  border-radius: 999px;
  border-width: 0;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  background-size: 200% auto;
  transition: background-position 0.42s ease, box-shadow 0.42s ease, transform 0.42s ease;
}

.btn::before {
  position: absolute;
  top: 0;
  left: -90%;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 120%;
}

.btn::after {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7M17 7H9M17 7V15' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  transition: background-color 0.32s ease, transform 0.32s ease;
}

.btn:hover {
  background-position: right center;
  box-shadow: 0 14px 28px rgba(2, 68, 121, 0.18);
  transform: translateY(-2px);
}

.btn:hover::after {
  background-color: rgba(255, 255, 255, 0.28);
  transform: rotate(45deg);
}

.btn-red {
  color: var(--white);
  background-image: linear-gradient(to right, var(--red) 0%, var(--blue) 50%, var(--red) 100%);
  border-color: var(--red);
}

.btn-red:hover {
  color: var(--white);
  border-color: #d91018;
}

.btn-blue {
  color: var(--white);
  background-image: linear-gradient(to right, var(--blue) 0%, var(--navy-dark) 50%, var(--blue) 100%);
  border-color: var(--blue);
}

.btn-blue:hover {
  color: var(--white);
  border-color: var(--navy-dark);
}

.btn-outline-blue {
  color: var(--blue);
  border: 1px solid rgba(0, 90, 168, 0.45);
  background: rgba(255, 255, 255, 0.68);
}

.btn-outline-blue::after {
  background-color: var(--blue);
}

.btn-outline-blue:hover {
  color: var(--white);
  background: var(--blue);
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: rgba(255, 32, 40, 0.12);
  box-shadow: 0 0 0 5px rgba(255, 32, 40, 0.08);
  content: "";
}

.text-center.section-kicker,
.section-kicker.text-center {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding-top: 22px;
}

.glass-nav {
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.navbar-brand img {
  width: 76px;
  height: auto;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link::after {
  position: absolute;
  right: 18px;
  bottom: 2px;
  left: 18px;
  height: 2px;
  background: #55a7ef;
  content: "";
  opacity: 0;
}

.navbar-dark .navbar-nav .nav-link.active::after,
.navbar-dark .navbar-nav .nav-link:hover::after {
  opacity: 1;
}

.main-menu {
  margin-left: 34px;
}

.nav-cta {
  min-height: 58px;
  padding: 10px 12px 10px 26px;
  font-size: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-phone span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.12)
    url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.91.33 1.8.62 2.65a2 2 0 0 1-.45 2.11L8 9.76a16 16 0 0 0 6.24 6.24l1.28-1.28a2 2 0 0 1 2.11-.45c.85.29 1.74.5 2.65.62A2 2 0 0 1 22 16.92Z' stroke='white' stroke-width='2.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 19px 19px no-repeat;
}

.nav-phone:hover {
  color: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  padding: 118px 0 0;
  background:
    linear-gradient(90deg, rgba(1, 47, 86, 0.96) 0%, rgba(2, 68, 121, 0.9) 45%, rgba(2, 68, 121, 0.35) 100%),
    url("../img/optimized/hero-bg.webp") center / cover,
    var(--navy);
}

.hero-section::after {
  content: none;
}

.hero-row {
  position: relative;
  z-index: 1;
  min-height: calc(80vh - 118px);
}

.hero-copy {
  position: relative;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-actions .btn-outline-light {
  min-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: calc(80vh - 118px);
}

.hero-person {
  width: min(500px, 100%);
  max-height: 560px;
  object-fit: contain;
  object-position: bottom center;
}

.trusted-strip {
  padding: 24px 0 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trusted-logo-carousel {
  overflow: hidden;
  padding: 0;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.trusted-logo-carousel .swiper-wrapper {
  display: flex;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
  will-change: transform;
}

.trusted-logo-carousel:hover .swiper-wrapper {
  animation-play-state: paused;
}

.trusted-logo-carousel::-webkit-scrollbar {
  display: none;
}

.trusted-logo-carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 190px;
  min-height: 70px;
}

.trusted-logo-carousel img {
  display: block;
  max-width: 150px;
  max-height: 58px;
  margin: 0 auto;
  object-fit: contain;
}

@keyframes logoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.image-reveal {
  position: relative;
  overflow: hidden;
  background: rgba(238, 247, 255, 0.72);
}

.image-reveal::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--navy-dark), var(--blue) 54%, rgba(255, 255, 255, 0.92));
  content: "";
  transform: translateX(0);
  transition: transform 0.86s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.image-reveal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 180%;
  height: 0;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-38deg);
  pointer-events: none;
}

.motion-ready .image-reveal.is-visible::before,
.motion-ready .is-visible .image-reveal::before,
body:not(.motion-ready) .image-reveal::before {
  transform: translateX(102%);
}

.image-hover:hover::after {
  height: 240%;
  opacity: 1;
  transition: height 0.58s linear, opacity 0.58s linear;
}

.image-hover img {
  display: block;
  transition: transform 0.74s cubic-bezier(0.16, 1, 0.3, 1), filter 0.74s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-hover:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.06);
}

.story-visual,
.story-image {
  width: 100%;
  max-height: 392px;
  border-radius: var(--radius);
}

.story-image {
  object-fit: cover;
  object-position: center;
}

.story-visual {
  box-shadow: var(--shadow);
}

.story-section {
  background: linear-gradient(180deg, var(--white) 0%, #f8fbff 100%);
}

.topics-section,
.podcast-section {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 247, 255, 0.94) 52%, rgba(224, 241, 255, 0.98) 100%),
    linear-gradient(263deg, rgba(255, 32, 40, 0.08), rgba(0, 90, 168, 0.14));
}

.topics-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(1, 47, 86, 0.98), rgba(2, 68, 121, 0.94)),
    url("../img/optimized/video-bg.webp") center / cover;
}

.topics-section::before {
  background:
    linear-gradient(90deg, rgba(255, 32, 40, 0.1), transparent 34%, rgba(65, 176, 240, 0.14)),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 52%, transparent 100%);
}

.topics-intro {
  max-width: 510px;
}

.topics-intro h2,
.topics-intro p,
.topics-section .section-kicker {
  color: var(--white);
}

.topics-intro h2 span {
  color: #7dbfff;
  background-image: linear-gradient(90deg, #7dbfff 0%, #ffffff 42%, #ff686e 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0, 18, 38, 0.24);
}

.topics-intro p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.service-item-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 46px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.topics-section::before,
.podcast-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.podcast-section::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.68) 50%, transparent 100%),
    linear-gradient(90deg, rgba(255, 32, 40, 0.06), transparent 35%, rgba(0, 90, 168, 0.08));
}

.topics-section > .container,
.podcast-section > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 32px;
}

.topic-card {
  position: relative;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.36s ease, box-shadow 0.36s ease, border-color 0.36s ease;
  overflow: hidden;
}

.book-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 64%);
  content: "";
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 0.45s ease, transform 0.65s ease;
}

.book-panel:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.topic-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: var(--white);
  border-radius: 50%;
  background-image: linear-gradient(to right, var(--red) 0%, var(--blue) 50%, var(--red) 100%);
  background-size: 200% auto;
  box-shadow: 0 14px 26px rgba(255, 32, 40, 0.16);
  transition: background-position 0.42s ease, transform 0.42s ease;
}

.topic-card:hover .topic-icon {
  background-position: right center;
  transform: rotate(8deg) scale(1.05);
}

.topic-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.topic-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.topic-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.video-tools-section {
  position: relative;
  max-width: 1800px;
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(1, 47, 86, 0.12) 0%, rgba(1, 47, 86, 0.98) 100%),
    linear-gradient(90deg, rgba(1, 47, 86, 0.92), rgba(2, 68, 121, 0.66) 48%, rgba(1, 47, 86, 0.72)),
    url("../img/optimized/video-bg.webp") center / cover;
  box-shadow: 0 22px 56px rgba(1, 47, 86, 0.18);
}

.video-tools-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 32, 40, 0.24), transparent 23%),
    linear-gradient(0deg, rgba(1, 47, 86, 0.86), rgba(1, 47, 86, 0.22));
  content: "";
}

.video-tools-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 124px 0 96px;
}

.video-tools-content h2,
.video-tools-content p,
.video-tools-content .section-kicker {
  color: var(--white);
}

.video-tools-copy {
  max-width: 680px;
}

.video-tools-content h2 {
  max-width: 660px;
  color: var(--white);
  text-shadow: 0 12px 36px rgba(0, 18, 38, 0.28);
}

.video-tools-content h2 span {
  background-image: linear-gradient(90deg, #ffffff 0%, #ff6b70 48%, #55a7ef 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-play-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  transition: color 0.24s ease, transform 0.24s ease;
}

.video-play-link::before {
  display: none;
}

.video-play-link span {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 16px 34px rgba(255, 32, 40, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.video-play-link span::after {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.82);
  animation: playPulse 2.2s ease-out infinite;
}

.video-play-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.video-play-link:hover span {
  box-shadow: 0 18px 38px rgba(255, 32, 40, 0.3);
  transform: scale(1.04);
}

.video-play-link span::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--white);
  content: "";
}

@keyframes playPulse {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  18% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.video-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
}

.video-benefits li {
  position: relative;
  min-height: 62px;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.video-benefits li::before {
  position: absolute;
  left: 18px;
  top: 24px;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid var(--white);
  border-left: 3px solid var(--white);
  content: "";
  transform: rotate(-45deg);
}

.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.podcast-section {
  margin-top: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 248, 255, 0.98) 52%, rgba(232, 244, 255, 0.96) 100%),
    linear-gradient(263deg, rgba(255, 32, 40, 0.06), rgba(0, 90, 168, 0.12));
}

.podcast-section h2 {
  max-width: 520px;
}

.media-frame,
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.media-frame {
  border: 10px solid var(--white);
  background: var(--white);
}

.media-frame img,
.video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.news-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.news-intro {
  min-height: 560px;
  padding-top: 10px;
}

.news-intro h2 {
  margin-bottom: 34px;
}

.article-view-toggle {
  display: inline-flex;
  gap: 8px;
  margin-top: 38px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(2, 68, 121, 0.08);
}

.article-view-toggle button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: transparent;
}

.article-view-toggle button.is-active {
  color: var(--white);
  background: var(--brand-gradient);
}

.list-icon,
.grid-icon {
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
}

.list-icon {
  clip-path: polygon(0 0, 100% 0, 100% 18%, 0 18%, 0 41%, 100% 41%, 100% 59%, 0 59%, 0 82%, 100% 82%, 100% 100%, 0 100%);
}

.grid-icon {
  clip-path: polygon(0 0, 42% 0, 42% 42%, 0 42%, 0 0, 58% 0, 100% 0, 100% 42%, 58% 42%, 58% 0, 0 58%, 42% 58%, 42% 100%, 0 100%, 0 58%, 58% 58%, 100% 58%, 100% 100%, 58% 100%);
}

.news-posts {
  display: grid;
  gap: 34px;
}

.resource-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--card-border-gradient) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(2, 68, 121, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.article-image {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.news-shell[data-view="list"] .resource-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 1.05fr);
  gap: 30px;
  align-items: center;
  padding: 0 0 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.resource-card:hover,
.news-shell[data-view="list"] .resource-card:hover {
  transform: none;
  box-shadow: none;
}

.media-frame:hover,
.video-thumb:hover {
  box-shadow: 0 18px 42px rgba(2, 68, 121, 0.14);
  transform: translateY(-3px);
}

.news-shell[data-view="list"] .article-image {
  height: 220px;
  border-radius: 20px;
}

.news-shell[data-view="grid"] .news-posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resource-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.resource-card div {
  padding: 22px;
}

.news-shell[data-view="list"] .resource-card div {
  padding: 0;
}

.resource-card h3 {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.resource-card p {
  min-height: 52px;
  font-size: 15px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  border-radius: 999px;
  background: var(--brand-gradient);
  font-size: 14px;
  font-weight: 900;
}

.read-more-link::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.18)
    url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7M17 7H9M17 7V15' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 11px 11px no-repeat;
  content: "";
  transition: transform 0.24s ease;
}

.read-more-link:hover {
  color: var(--white);
}

.read-more-link:hover::after {
  transform: rotate(45deg);
}

.client-stories-section {
  position: relative;
  max-width: 1800px;
  margin: 0 auto 70px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 32, 40, 0.16), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(85, 167, 239, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(1, 47, 86, 0.99), rgba(2, 68, 121, 0.95)),
    url("../img/optimized/video-bg.webp") center / cover;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.testimonial-intro {
  max-width: 500px;
}

.testimonial-intro .section-kicker,
.testimonial-intro h2,
.testimonial-intro p {
  color: var(--white);
}

.testimonial-intro h2 span {
  background-image: linear-gradient(90deg, #ffffff 0%, #ff7479 48%, #78bdff 100%);
}

.testimonial-panel {
  min-width: 0;
}

.testimonial-slider {
  position: relative;
  min-height: 470px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: 30px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(22px, 0, 0);
  transition: opacity 0.42s ease, transform 0.42s ease, visibility 0.42s ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.testimonial-copy {
  min-height: 390px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 20, 42, 0.16);
}

.testimonial-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.star-rating {
  color: #ffccd0;
  font-size: 16px;
  letter-spacing: 2px;
}

.quote-mark {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  line-height: 0.72;
}

.testimonial-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 700;
}

.testimonial-author {
  margin-top: 36px;
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
  color: var(--white);
}

.testimonial-author span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.testimonial-image {
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(0, 20, 42, 0.2);
}

.testimonial-image img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
}

.testimonial-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  gap: 16px;
}

.testimonial-controls button {
  position: relative;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background-image: linear-gradient(to right, var(--red) 0%, var(--blue) 50%, var(--red) 100%);
  background-size: 200% auto;
  box-shadow: 0 14px 30px rgba(0, 20, 42, 0.16);
  transition: background-position 0.32s ease, transform 0.32s ease;
}

.testimonial-controls button::before {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7M17 7H9M17 7V15' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
  content: "";
  transform: rotate(45deg);
}

.testimonial-controls .testimonial-prev::before {
  transform: rotate(225deg);
}

.testimonial-controls button:hover {
  background-position: right center;
  transform: translateY(-2px);
}

.testimonial-rating-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.testimonial-rating-item {
  position: relative;
  min-height: 140px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.testimonial-rating-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.testimonial-rating-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.book-process-section {
  background:
    linear-gradient(180deg, var(--white), #f7fbff),
    linear-gradient(90deg, rgba(255, 32, 40, 0.04), rgba(0, 90, 168, 0.06));
}

.book-process-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  margin-bottom: 70px;
}

.book-process-heading > div {
  max-width: 780px;
}

.book-process-grid {
  display: grid;
  grid-template-columns: 220px repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.book-showcase {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(238, 247, 255, 0.78)) padding-box,
    var(--card-border-gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 54px rgba(2, 68, 121, 0.12);
}

.book-showcase img {
  max-height: 220px;
  border-radius: 8px;
  box-shadow: 0 22px 36px rgba(2, 68, 121, 0.22);
  transform: rotate(-4deg);
}

.book-step {
  min-height: 240px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.book-step span {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow: 0 16px 34px rgba(0, 90, 168, 0.16);
  font-weight: 900;
}

.book-step h3 {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.book-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.book-panel {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(250px, 0.8fr) 1.5fr;
  gap: 34px;
  align-items: center;
  margin-top: 56px;
  padding: 38px 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 247, 255, 0.76)) padding-box,
    var(--card-border-gradient) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(2, 68, 121, 0.14);
  overflow: hidden;
}

.book-cover img {
  max-height: 230px;
  border-radius: 8px;
  box-shadow: 0 22px 36px rgba(2, 68, 121, 0.22);
  transform: rotate(-3deg);
}

.book-copy h2 {
  margin-bottom: 10px;
}

.book-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.book-points div {
  min-height: 104px;
  padding: 14px 20px;
  border-left: 1px solid #b8cde0;
  text-align: center;
}

.book-points span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
}

.book-points strong {
  display: block;
  font-size: 14px;
}

.cta-band {
  width: min(1500px, calc(100% - 56px));
  padding: 44px 0;
  max-width: none;
  margin: 0 auto 56px;
  border-radius: var(--radius-lg);
  background: var(--brand-gradient-reverse);
  box-shadow: 0 24px 70px rgba(1, 47, 86, 0.2);
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-band h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.proof-section {
  padding-top: 92px;
  background:
    linear-gradient(135deg, rgba(1, 47, 86, 0.98), rgba(2, 68, 121, 0.94)),
    url("../img/optimized/video-bg.webp") center / cover;
}

.proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.95fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: stretch;
}

.proof-feature,
.proof-video,
.proof-quote {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 20, 42, 0.16);
}

.proof-section .section-kicker,
.proof-section h2,
.proof-section p,
.proof-section blockquote,
.proof-section cite {
  color: var(--white);
}

.proof-feature h2 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 42px;
}

.featured-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.featured-logos img {
  display: block;
  width: 100%;
  height: 72px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--white);
  object-fit: contain;
}

.small-note {
  margin-bottom: 0;
  font-size: 14px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(255, 32, 40, 0.32);
}

.play-button::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

blockquote {
  margin: 0;
  font-size: 18px;
}

blockquote span {
  display: block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  line-height: 0.85;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.site-footer {
  padding: 42px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-dark);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
  width: 82px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--white);
}

.social-links,
.footer-podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.subscribe-form {
  display: flex;
  overflow: hidden;
  max-width: 410px;
  margin: 14px 0;
  border-radius: 4px;
  background: var(--white);
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 0;
  outline: 0;
}

.subscribe-form button {
  width: 74px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-weight: 900;
}

.footer-podcast-links a {
  padding: 9px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.copyright {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: center;
}

.reveal,
.reveal-item {
  opacity: 1;
  transform: none;
  transition: none;
}

.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.motion-ready .hero-section.motion-item {
  transform: none;
}

.motion-ready .hero-section.motion-item.is-visible {
  transform: none;
}

@media (min-width: 992px) {
  .topics-intro,
  .news-intro,
  .testimonial-intro {
    position: sticky;
    top: 100px;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .site-header {
    position: static;
    padding: 0;
    background: var(--navy-dark);
  }

  .glass-nav {
    width: 100%;
    border-bottom: 0;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar-brand img {
    width: 68px;
  }

  .navbar-collapse {
    padding-top: 18px;
  }

  .main-menu {
    margin-left: 0;
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    margin-left: 0;
  }

  .nav-phone {
    justify-content: center;
    min-height: 46px;
    font-size: 15px;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero-section {
    min-height: 0;
    padding: 64px 0 0;
  }

  .hero-image-wrap {
    min-height: 420px;
    margin-top: 20px;
  }

  .book-panel {
    grid-template-columns: 130px 1fr;
  }

  .book-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item-list {
    grid-template-columns: 1fr;
  }

  .video-tools-section {
    min-height: 430px;
  }

  .video-tools-content {
    grid-template-columns: 1fr;
    padding: 66px 0;
  }

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

  .news-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .news-intro {
    position: static;
    min-height: auto;
  }

  .news-shell[data-view="list"] .resource-card,
  .book-process-grid {
    grid-template-columns: 1fr;
  }

  .news-shell[data-view="grid"] .news-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .testimonial-slider {
    min-height: 760px;
  }

  .testimonial-rating-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-stories-section {
    margin-bottom: 44px;
  }

  .proof-shell {
    grid-template-columns: 1fr;
  }

  .book-process-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    width: calc(100% - 32px);
    margin-bottom: 36px;
  }
}

@media (min-width: 992px) and (max-width: 1280px) {
  .navbar-brand img {
    width: 68px;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 13px;
  }

  .nav-phone {
    font-size: 13px;
  }

  .nav-cta {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

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

  .hero-actions,
  .podcast-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .podcast-actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-image-wrap {
    min-height: 330px;
  }

  .hero-person {
    max-height: 360px;
  }

  .story-image {
    max-height: 300px;
  }

  .video-benefits,
  .news-shell[data-view="grid"] .news-posts,
  .testimonial-rating-box {
    grid-template-columns: 1fr;
  }

  .testimonial-layout {
    gap: 34px;
  }

  .testimonial-slider {
    min-height: 720px;
  }

  .testimonial-copy {
    min-height: auto;
    padding: 28px;
  }

  .testimonial-copy p {
    font-size: 17px;
  }

  .testimonial-controls {
    right: auto;
    left: 0;
  }

  .video-play-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .book-panel {
    grid-template-columns: 1fr;
    padding: 26px;
    text-align: center;
  }

  .book-cover img {
    transform: none;
  }

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

  .book-points div {
    min-height: auto;
    border-top: 1px solid #b8cde0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .video-play-link span::after {
    animation: none;
  }

  .trusted-logo-carousel .swiper-wrapper {
    animation: none;
  }

  .reveal,
  .reveal-item,
  .motion-ready .motion-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
