*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a2540;
  --navy-dark: #061a2e;
  --gold: #c98e1d;
  --gold-hover: #b07d18;
  --white: #ffffff;
  --gray-50: #f5f7f9;
  --gray-100: #e8ecf0;
  --gray-400: #8a96a3;
  --gray-600: #5c6b7a;
  --green: #2e9e5b;
  --green-light: #e8f5ee;
  --orange: #d4882a;
  --red: #d9534f;
  --blue-light: #e8f0f8;
  --container: 1140px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--navy);
  line-height: 1.6;
  background: var(--white);
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 5px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #000000;
  white-space: nowrap;
}

.secure-badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-hover);
}

/* Hero */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--navy) 0%,
      var(--navy) 52%,
      rgba(10, 37, 64, 0.88) 72%,
      rgba(10, 37, 64, 0.55) 100%
    ),
    url("../images/hero-bg.png") center right/cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--white);
  margin-bottom: 16px;
}

.hero-content h1 .highlight {
  color: var(--gold);
}

.hero-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 480px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.hero-score-image {
  max-width: 861px;
  margin-left: auto;
}

.hero-score-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Score Card */
.score-card {
  background: var(--white);
  border: 5px solid #000000;
  border-radius: 25px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-width: 480px;
  margin-left: auto;
}

.score-card--dashboard {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  padding: 24px 24px 20px;
}

.score-card-title {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.score-card--dashboard .score-card-title {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.score-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.score-card--dashboard .score-card-body {
  grid-template-columns: 2fr 3fr;
  gap: 12px;
  align-items: stretch;
}

.score-panel {
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 16px 14px;
  background: var(--white);
}

.score-panel-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 8px;
}

.score-panel--main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.score-panel--categories {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
}

.score-main {
  text-align: center;
}

.score-number {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.score-card--dashboard .score-number {
  font-family: "Inter", sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
}

.score-card--dashboard .score-panel {
  padding: 16px 14px;
}

.score-card--dashboard .score-panel-label {
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.score-card--dashboard .score-label {
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.score-card--dashboard .score-progress {
  max-width: 180px;
}

.score-card--dashboard .score-bar {
  height: 8px;
}

.score-card--dashboard .score-scale {
  font-size: 0.75rem;
}

.score-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin: 4px 0 12px;
}

.score-progress {
  width: 100%;
  max-width: 200px;
  margin-top: 4px;
}

.score-bar {
  width: 100%;
  height: 10px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  width: 74%;
  background: var(--green);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.score-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gray-400);
}

.score-categories {
  font-size: 0.78rem;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

.score-card--dashboard .score-row {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  gap: 8px;
}

.score-card--dashboard .score-row-info {
  font-size: 0.72rem;
  gap: 8px;
  white-space: nowrap;
}

.score-card--dashboard .score-row-icon {
  width: 20px;
  height: 20px;
}

.score-card--dashboard .score-row span:last-child {
  font-size: 0.85rem;
}

.score-card--dashboard .score-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.score-card--dashboard .score-row:first-child {
  padding-top: 0;
}

.score-row:last-child {
  border-bottom: none;
}

.score-row-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

.score-row-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.score-row span:last-child {
  font-weight: 700;
}
.score-row .green {
  color: var(--green);
}
.score-row .gold-score {
  color: var(--gold);
}
.score-row .orange {
  color: var(--orange);
}
.score-row .red {
  color: var(--red);
}

.score-insight {
  margin-top: 20px;
  background: var(--blue-light);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.score-card--dashboard .score-insight {
  margin-top: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.72rem;
  align-items: center;
  gap: 8px;
}

.score-card--dashboard .score-insight svg {
  width: 18px;
  height: 18px;
}

.score-insight svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Section common */
.section {
  padding: 72px 0;
}
.section-gray {
  background: #f4f8fb;
}

.section-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 48px;
  border-radius: 2px;
}

/* Discover grid */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.discover-item {
  text-align: center;
}

.discover-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f6f4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.discover-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.discover-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.discover-item p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-visual {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.step-number {
  position: absolute;
  top: -2px;
  left: -6px;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.1);
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.step h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.step-arrow {
  position: absolute;
  top: 36px;
  right: -18px;
  color: var(--navy);
  opacity: 0.45;
  font-size: 1.2rem;
  z-index: 1;
}

.step:last-child .step-arrow {
  display: none;
}

/* CTA section */
.cta-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.report-mockup {
  max-width: 360px;
}

.report-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.cta-center h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin-bottom: 14px;
}

.cta-center p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.testimonial {
  text-align: left;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.testimonial cite span {
  font-weight: 400;
  color: var(--gray-400);
  display: block;
  font-size: 0.78rem;
}

/* Footer */
footer {
  font-size: 14px;
}

.footer-top {
  background: var(--navy);
  color: var(--white);
  padding: 36px 0;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.footer-logo {
  justify-self: start;
}

.footer-logo .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  line-height: 1.5;
  justify-self: center;
  max-width: 420px;
}

.footer-privacy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
}

.footer-privacy-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-privacy a {
  text-decoration: underline;
}

.footer-bottom {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-600);
  margin-bottom: 6px;
}

.footer-bottom .copyright {
  color: var(--gray-400);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-score-image {
    margin: 0 auto;
    max-width: 100%;
  }
  .score-card {
    margin: 0 auto;
    max-width: 100%;
  }
  .score-card--dashboard {
    margin-left: auto;
    margin-right: auto;
  }
  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-arrow {
    display: none !important;
  }
  .cta-section-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .report-mockup {
    max-width: 360px;
    margin: 0 auto;
  }
  .testimonial {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-top-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .discover-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .score-card-body {
    grid-template-columns: 1fr;
  }
  .score-card--dashboard {
    padding: 20px 16px 16px;
  }
  .score-card--dashboard .score-number {
    font-size: 3rem;
  }
  .secure-badge span {
    display: none;
  }
  .trust-indicators {
    gap: 10px;
  }
  .footer-top-inner {
    text-align: center;
  }
  .footer-logo {
    justify-self: center;
  }
  .footer-disclaimer {
    justify-self: center;
    text-align: center;
  }
  .footer-privacy {
    justify-self: center;
    justify-content: center;
    text-align: center;
  }
}
