:root {
  --deep-teal-900: #0b2f35;
  --deep-teal-800: #11444d;
  --deep-teal-700: #17606b;
  --slate-900: #1e2933;
  --slate-800: #2e3b48;
  --slate-700: #425466;
  --slate-200: #d8e1e8;
  --slate-100: #edf2f6;
  --white: #ffffff;
  --accent-gold: #b9975b;
  --success: #1f8f74;
  --max-width: 1140px;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--slate-900);
  background: linear-gradient(165deg, #f3f7fa 0%, #eaf1f5 55%, #dde8ee 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 47, 53, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  max-width: 350px;
  overflow: hidden;
}

.brand-mark {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
}

.brand-subtitle {
  margin: 0;
  color: var(--slate-200);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.main-nav a {
  color: #dde9f0;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 7px;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-audit {
  background: var(--accent-gold);
  color: #12252c;
  padding: 0.7rem 1.2rem;
  white-space: nowrap;
}

.btn-audit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(185, 151, 91, 0.3);
}

.hero {
  padding: 5.3rem 0 4.5rem;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(11, 47, 53, 0.96), rgba(23, 96, 107, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.22) 0%, transparent 38%);
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.75rem, 3.2vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.hero p {
  margin: 1rem 0 0;
  max-width: 760px;
  color: #dbe7ee;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #e7eff4;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.86rem;
}

main section {
  padding: 4rem 0;
}

h2 {
  margin: 0 0 0.9rem;
  color: var(--slate-900);
  line-height: 1.25;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.lead {
  margin: 0 0 1.4rem;
  color: var(--slate-700);
  max-width: 780px;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #dbe5eb;
  padding: 1.35rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--deep-teal-800);
}

.trust-bar {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo-chip {
  background: #f3f8fb;
  border: 1px solid #d6e2ea;
  color: var(--slate-800);
  padding: 0.6rem 0.85rem;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 600;
}

.logo-chip.logo-image {
  padding: 0.5rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  max-width: 210px;
  overflow: hidden;
}

.trust-logo {
  height: 24px;
  max-width: 170px;
  width: auto;
  display: block;
  object-fit: contain;
}

.signature {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--deep-teal-800);
  font-weight: 700;
}

.highlight {
  border-left: 4px solid var(--accent-gold);
  padding-left: 0.95rem;
  color: var(--slate-700);
}

.seal-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.5rem;
}

.cmrs-seal {
  background: linear-gradient(145deg, #0e5966, #0c3b43);
  color: var(--white);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cmrs-logo {
  height: 30px;
  max-width: 180px;
  width: auto;
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #d5e0e8;
  border-radius: 10px;
  padding: 0.3rem 0.55rem;
}

.check-list {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

.check-list li {
  margin: 0.32rem 0;
}

.faq {
  margin-top: 1rem;
}

.faq details {
  background: var(--white);
  border: 1px solid #d8e3eb;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--deep-teal-800);
}

.contact-shell {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem;
  border: 1px solid #dbe6ee;
}

.form-embed {
  width: 100%;
  min-height: 78vh;
  border: 0;
  border-radius: 10px;
  background: #f5fafc;
}

.site-footer {
  margin-top: 2rem;
  background: var(--slate-900);
  color: #d9e5ec;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  padding: 1.3rem 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-note {
  margin: 0;
  font-size: 0.9rem;
}

.footer-signature {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-mark {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .header-inner {
    padding: 0.7rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-text {
    text-align: left;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .btn-audit {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.7rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 5px;
  }

  .main-nav a {
    font-size: 0.88rem;
    padding: 7px 9px;
  }

  .form-embed {
    min-height: 72vh;
  }
}
