:root {
  --blue-900: #06205f;
  --blue-800: #07348f;
  --blue-700: #0b48b2;
  --blue-600: #1160d8;
  --blue-100: #eaf5ff;
  --ink: #07152f;
  --muted: #4c5a74;
  --line: #a9c4f0;
  --white: #ffffff;
  --gold: #c99420;
  --shadow: 0 18px 50px rgba(7, 52, 143, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 93% 11%, rgba(17, 96, 216, 0.08), transparent 27rem),
    radial-gradient(circle at 8% 36%, rgba(138, 206, 255, 0.12), transparent 22rem),
    #fff;
}

body {
  overflow-x: hidden;
}

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

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

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 8px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(169, 196, 240, 0.45);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(7, 52, 143, 0.08);
}

.brand img {
  width: 185px;
  height: auto;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 30px);
  color: #07183c;
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  padding: 12px 0;
}

.pill-button,
.primary-button,
.white-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 18px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(6, 50, 150, 0.18);
}

.pill-button {
  padding: 0 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  white-space: nowrap;
}

.hero-section {
  width: min(1120px, calc(100% - 40px));
  margin: 18px auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.hero-copy {
  max-width: 500px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  color: var(--blue-800);
  font-size: clamp(38px, 4vw, 47px);
  line-height: 1.02;
  letter-spacing: 0;
}

.rule {
  width: 86%;
  height: 4px;
  margin: 0 0 18px;
  border-radius: 4px;
  background: var(--blue-700);
}

.hero-copy p {
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 1.42;
}

.assurance {
  position: relative;
  margin: 8px 0 16px;
  padding-left: 48px;
  font-size: 17px;
  line-height: 1.4;
}

.assurance span {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
}

.hero-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.primary-button {
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  font-size: 17px;
  line-height: 1.25;
  text-align: center;
  animation: button-pulse 2.6s ease-in-out infinite;
}

.primary-button .icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  font-size: 13px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(11, 72, 178, 0.16);
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(234, 245, 255, 0.9);
  box-shadow: 0 8px 22px rgba(7, 52, 143, 0.08);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-trust-badges span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(17, 96, 216, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 455px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 3% 0 4%;
  border-radius: 47% 53% 46% 54% / 42% 44% 56% 58%;
  background: linear-gradient(145deg, #f6fbff, #e1efff);
  box-shadow: var(--shadow);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 530px);
  border-radius: 48% 52% 40% 50% / 42% 45% 55% 58%;
}

.help-section,
.profile-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin: 18px 0 16px;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  color: var(--blue-800);
  font-size: 30px;
}

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

.help-grid article {
  min-height: 205px;
  padding: 18px 16px 20px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, #eef8ff, #e5f2ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: help-card-rise 0.75s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.help-grid article:nth-child(2) {
  animation-delay: 0.08s;
}

.help-grid article:nth-child(3) {
  animation-delay: 0.16s;
}

.help-grid article:nth-child(4) {
  animation-delay: 0.24s;
}

.help-grid article:nth-child(5) {
  animation-delay: 0.32s;
}

.help-grid article:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, #f7fcff, #dff0ff);
  box-shadow: 0 18px 34px rgba(7, 52, 143, 0.15);
}

.round-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 30% 20%, #2678e5, var(--blue-800));
  font-size: 34px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: icon-float 4.6s ease-in-out infinite;
}

.help-grid article:nth-child(2) .round-icon {
  animation-delay: 0.45s;
}

.help-grid article:nth-child(3) .round-icon {
  animation-delay: 0.9s;
}

.help-grid article:nth-child(4) .round-icon {
  animation-delay: 1.35s;
}

.help-grid article:nth-child(5) .round-icon {
  animation-delay: 1.8s;
}

.help-grid article:hover .round-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 24px rgba(7, 52, 143, 0.22);
  animation-play-state: paused;
}

.help-grid h3 {
  min-height: 48px;
  margin-bottom: 8px;
  color: var(--blue-800);
  font-size: 20px;
  line-height: 1.18;
}

.help-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 18px;
  margin-top: 38px;
}

.expert-card,
.credential-card {
  position: relative;
  border-radius: 20px;
  min-height: 440px;
  animation: profile-card-rise 0.85s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.credential-card {
  animation-delay: 0.12s;
}

.expert-card:hover,
.credential-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(7, 52, 143, 0.18);
}

.floating-label {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, calc(-50% + var(--label-parallax, 0px))) scale(var(--label-scale, 1));
  z-index: 2;
  min-width: 190px;
  padding: 8px 18px;
  border-radius: 999px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, #2f8dff, var(--blue-700));
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  animation: label-glow 2.8s ease-in-out infinite;
  will-change: transform;
  transition: transform 0.18s ease-out;
}

.expert-card {
  padding: 32px;
  color: var(--white);
  overflow: visible;
  background:
    radial-gradient(circle at 82% 12%, rgba(64, 160, 255, 0.42), transparent 18rem),
    linear-gradient(145deg, var(--blue-900), var(--blue-700));
}

.expert-top {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 26px;
  align-items: center;
}

.expert-top img {
  width: 178px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.expert-card:hover .expert-top img {
  transform: scale(1.04);
}

.expert-top h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  line-height: 1.1;
}

.expert-top p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 44px 0 26px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  text-align: center;
}

.expert-stats div {
  font-size: 15px;
  line-height: 1.25;
}

.expert-stats span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-weight: 900;
}

blockquote {
  margin: 0;
  padding: 22px 30px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(135deg, rgba(50, 142, 255, 0.9), rgba(13, 75, 177, 0.9));
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
}

.credential-card {
  padding: 28px 28px 24px;
  border: 2px solid var(--blue-700);
  background: var(--white);
  overflow: visible;
}

.credential-card h2 {
  margin: 0 0 14px;
  color: #071bd1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.credential-card img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.credential-card:hover img {
  transform: scale(1.015);
}

.reviews-section {
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto 0;
}

.reviews-window {
  overflow: hidden;
  padding: 4px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: reviews-scroll 34s linear infinite;
}

.reviews-window:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: 330px;
  min-height: 205px;
  padding: 22px;
  border: 1px solid rgba(11, 72, 178, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 247, 255, 0.96)),
    var(--white);
  box-shadow: 0 14px 34px rgba(7, 52, 143, 0.1);
}

.stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 21px;
  letter-spacing: 2px;
  line-height: 1;
}

.review-card p {
  min-height: 84px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.45;
}

.review-card strong {
  color: var(--blue-800);
  font-size: 15px;
}

.faq-section {
  width: min(960px, calc(100% - 40px));
  margin: 34px auto 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(11, 72, 178, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
  box-shadow: 0 12px 30px rgba(7, 52, 143, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-list details:hover {
  border-color: rgba(11, 72, 178, 0.32);
  box-shadow: 0 16px 36px rgba(7, 52, 143, 0.12);
  transform: translateY(-2px);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 18px 22px;
  color: var(--blue-800);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
  transition: background 0.2s ease;
}

.faq-list summary:hover {
  background: rgba(234, 245, 255, 0.78);
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.28s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: var(--blue-900);
  box-shadow: 0 8px 18px rgba(7, 52, 143, 0.22);
}

.faq-content {
  height: 0;
  overflow: hidden;
  transition: height 0.28s ease;
}

.faq-list details[open] .faq-content {
  height: auto;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes button-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 25px rgba(6, 50, 150, 0.18);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 18px 36px rgba(6, 50, 150, 0.32);
  }
}

@keyframes help-card-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes icon-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes profile-card-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes label-glow {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(11, 72, 178, 0.2);
  }

  50% {
    box-shadow: 0 12px 28px rgba(47, 141, 255, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-button,
  .help-grid article,
  .round-icon,
  .expert-card,
  .credential-card,
  .floating-label,
  .reveal-on-scroll {
    animation: none;
    transition: none;
  }

  .reviews-track {
    animation: none;
  }

  .reviews-window {
    overflow-x: auto;
  }
}

.cta-band {
  margin-top: 28px;
  padding: 26px max(32px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 72, 182, 0.96), rgba(3, 47, 140, 0.98)),
    var(--blue-800);
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: 34px;
}

.cta-band h2 {
  margin-bottom: 5px;
  font-size: 30px;
  line-height: 1.15;
}

.cta-band p {
  margin: 0;
  font-size: 17px;
}

.white-button {
  min-width: 285px;
  padding: 0 26px;
  color: var(--blue-800);
  background: var(--white);
  font-size: 18px;
}

.trust-strip {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 0;
}

.trust-strip div {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  color: var(--blue-900);
  font-size: 17px;
  font-weight: 700;
  border-left: 1px solid var(--line);
}

.trust-strip div:first-child {
  border-left: 0;
}

.trust-strip span {
  color: var(--blue-700);
  font-size: 32px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    flex-wrap: wrap;
  }

  .hero-section {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-copy {
    max-width: none;
  }

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

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

  .profile-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .review-card {
    width: 310px;
  }

  .cta-band {
    grid-template-columns: auto 1fr;
  }

  .white-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .trust-strip div:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-section,
  .help-section,
  .profile-section,
  .reviews-section,
  .faq-section,
  .trust-strip {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 10px;
    text-align: center;
    justify-items: center;
  }

  .brand img {
    width: 155px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
  }

  .nav a {
    min-height: 38px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--blue-100);
  }

  .header-button {
    justify-self: stretch;
    min-height: 48px;
    width: 100%;
    padding: 10px 18px;
    text-align: center;
    white-space: normal;
  }

  h1 {
    font-size: 33px;
    line-height: 1.08;
  }

  .hero-section {
    gap: 18px;
    margin-top: 18px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .rule {
    width: 100%;
    max-width: 260px;
    margin-inline: auto;
  }

  .assurance {
    padding: 48px 0 0;
  }

  .assurance span {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-actions {
    justify-items: stretch;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-trust-badges span {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .hero-visual {
    min-height: 245px;
  }

  .hero-visual::before {
    inset: 6% 0 2%;
  }

  .hero-visual img {
    width: min(100%, 335px);
  }

  .hero-copy p,
  .assurance {
    font-size: 16px;
  }

  .primary-button,
  .white-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 10px 18px;
    text-align: center;
    white-space: normal;
  }

  .help-grid,
  .expert-stats,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .help-grid article {
    min-height: 0;
  }

  .round-icon {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }

  .help-grid h3 {
    min-height: 0;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading h2 {
    font-size: 26px;
    white-space: nowrap;
  }

  .expert-card,
  .credential-card {
    min-height: 0;
    border-radius: 16px;
  }

  .expert-card {
    padding: 28px 18px 18px;
  }

  .expert-top {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .expert-top img {
    width: 150px;
    justify-self: center;
  }

  .expert-top h2 {
    font-size: 30px;
  }

  .expert-top p {
    font-size: 16px;
  }

  .expert-stats {
    margin-top: 26px;
    gap: 12px;
  }

  .expert-stats div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .expert-stats span {
    margin: 0;
  }

  blockquote {
    padding: 18px;
    font-size: 16px;
  }

  .credential-card {
    padding: 28px 14px 14px;
  }

  .credential-card h2 {
    font-size: 22px;
  }

  .credential-card img {
    height: auto;
  }

  .reviews-window {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .reviews-track {
    gap: 14px;
    animation-duration: 42s;
  }

  .review-card {
    width: min(82vw, 320px);
    min-height: 225px;
    padding: 20px;
  }

  .faq-list summary {
    align-items: flex-start;
    min-height: 0;
    padding: 16px;
    font-size: 16px;
    line-height: 1.3;
  }

  .faq-list p {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 24px 14px;
    text-align: center;
  }

  .cta-icon,
  .white-button {
    justify-self: center;
  }

  .cta-band h2 {
    font-size: 24px;
  }

  .cta-band p {
    font-size: 16px;
  }

  .trust-strip div,
  .trust-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }
}

@media (max-width: 380px) {
  .site-header,
  .hero-section,
  .help-section,
  .profile-section,
  .trust-strip {
    width: min(100% - 20px, 1120px);
  }

  .nav {
    gap: 6px;
  }

  .nav a {
    padding-inline: 9px;
  }

  h1 {
    font-size: 30px;
  }

  .primary-button,
  .white-button,
  .pill-button {
    font-size: 15px;
  }

  .floating-label {
    min-width: 168px;
    font-size: 12px;
  }
}
