:root {
  --primary: #00a968;
  --primary-dark: #087444;
  --primary-soft: #e8f8ef;
  --ink: #17212b;
  --muted: #536170;
  --line: #dbe4df;
  --surface: #ffffff;
  --surface-soft: #f6f8f6;
  --accent: #2f3246;
  --shadow: 0 18px 45px rgba(25, 49, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.primary,
.nav-cta {
  color: #fff;
  background: var(--primary);
}

.primary:hover,
.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff;
}

.secondary {
  color: var(--primary-dark);
  background: #fff;
  border: 2px solid var(--primary);
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 249, 0.96) 46%, rgba(240, 248, 244, 0.94) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 36px;
  align-items: center;
  padding: 56px 0;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 14px;
  font-weight: 800;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.02;
}

.hero-subtitle {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.hero-pill {
  margin-bottom: 14px;
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 26px;
}

.hero-points p {
  margin: 0;
  padding-left: 18px;
  position: relative;
  color: #36424e;
}

.hero-points p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
}

.trust-strip div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(219, 228, 223, 0.9);
  border-radius: 8px;
}

.trust-strip span,
.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip span {
  color: var(--primary-dark);
  font-weight: 900;
}

.trust-strip small {
  color: var(--muted);
}

.profile-panel {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  max-width: 300px;
  justify-self: end;
}

.profile-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 280px;
  object-fit: cover;
}

.profile-panel picture,
.achievement-logo-wrap picture,
.funfact-card picture {
  display: block;
  width: 100%;
}

.profile-panel figcaption {
  padding: 20px;
  background: #fff;
}

.profile-panel strong,
.profile-panel span {
  display: block;
}

.profile-panel span {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 16px;
  color: var(--accent);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.section-heading p {
  color: var(--muted);
  font-size: 20px;
}

.feature-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.feature-card,
.product-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(25, 49, 38, 0.08);
}

.feature-card {
  padding: 28px;
  text-align: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-weight: 900;
}

.feature-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feature-card h3,
.product-card h3 {
  color: var(--accent);
}

.feature-card p,
.fit-box p {
  color: var(--muted);
}

.quote-card {
  max-width: 860px;
  margin: 44px auto 0;
  padding: 28px;
  background: var(--surface-soft);
  text-align: center;
}

.quote-card p {
  color: var(--accent);
  font-size: 20px;
  font-style: italic;
}

.quote-card cite {
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 800;
}

.achievement-section {
  background: #09194b;
  color: #fff;
}

.achievement-header-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: center;
}

.achievement-copy h2 {
  margin: 16px 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.achievement-copy > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  text-align: justify;
}

.mdrt-org-logo {
  width: min(360px, 100%);
  margin: 0;
  height: auto;
}

.achievement-logo-wrap {
  margin: 0;
  display: flex;
  justify-content: center;
}

.achievement-logo-wrap picture {
  width: min(360px, 100%);
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.recognition-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.recognition-card.highlight {
  border-color: rgba(238, 195, 105, 0.5);
  background: rgba(238, 195, 105, 0.13);
}

.recognition-card h3 {
  margin-bottom: 10px;
  color: #f1c76c;
  font-size: 30px;
}

.recognition-card p {
  color: rgba(255, 255, 255, 0.78);
}

.year-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.year-list span {
  border-radius: 999px;
  padding: 7px 11px;
  color: #09194b;
  background: #fff;
  font-weight: 800;
}

.achievement-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

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

.picks-section {
  background: var(--surface-soft);
}

.products-section {
  background: #fff;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-align: center;
}

.product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.product-header span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.fit-box {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #b9ebce;
  border-radius: 8px;
  background: #f0fbf5;
}

.fit-box h4 {
  margin: 0 0 8px;
}

.product-card > p {
  color: var(--muted);
}

.product-card .button {
  margin-top: auto;
}

.product-grid.expanded {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-note {
  max-width: 840px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
}

.funfact-section {
  background: var(--surface-soft);
}

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

.funfact-card,
.claim-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(25, 49, 38, 0.08);
}

.funfact-card {
  overflow: hidden;
}

.funfact-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.funfact-card picture {
  height: 100%;
}

.claim-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.claim-card {
  padding: 22px;
}

.claim-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-weight: 900;
}

.claim-card h3 {
  color: var(--accent);
  font-size: 20px;
}

.claim-card p {
  color: var(--muted);
}

.help-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.help-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  color: #fff;
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 52px 0;
}

.site-footer p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-bottom {
  padding: 22px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

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

.legal-page {
  min-height: calc(100vh - 72px);
  background: var(--surface-soft);
}

.legal-section {
  padding: 72px 0 88px;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 49, 38, 0.08);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 18px;
}

.legal-card p {
  color: var(--muted);
  font-size: 18px;
}

.legal-card p + p {
  margin-top: 18px;
}

.legal-meta {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.legal-actions {
  margin-top: 28px;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 12px 0;
  }

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

  .hero-grid,
  .feature-grid,
  .product-grid,
  .product-grid.expanded,
  .funfact-grid,
  .claim-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .profile-panel {
    max-width: 300px;
    justify-self: start;
  }

  .achievement-header-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-logo-wrap {
    justify-content: flex-start;
  }

  .mdrt-org-logo {
    width: min(300px, 100%);
  }
}

@media (max-width: 760px) {
  .recognition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 32px;
  }

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

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .product-header {
    flex-direction: column;
  }

  .profile-panel {
    max-width: 280px;
  }

  .profile-panel img {
    max-height: 260px;
  }

  .legal-card {
    padding: 24px;
  }
}

.qna-section {
  background: var(--surface-soft);
}

.qna-form {
  display: grid;
  gap: 16px;
}

.qna-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.qna-card legend {
  padding: 0 4px;
  font-weight: 800;
  color: var(--accent);
}

.qna-card label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.qna-card input {
  margin-top: 3px;
}

.qna-result {
  margin-top: 22px;
  border: 1px solid #bce8d3;
  background: #eefcf5;
  border-radius: 10px;
  padding: 18px;
}

.qna-result h3 {
  margin: 10px 0;
  color: var(--accent);
}

.qna-result p {
  color: #2d4b3b;
}
