@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --white: #ffffff;
  --black: #050505;
  --text: #111111;
  --muted: #6b7280;
  --soft: #f6f6f4;
  --purple: #7e22ce;
  --purple-soft: rgba(0, 122, 236, 0.356);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

ion-icon {
  font-size: 22px;
  color: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.brand {
  position: absolute;
  left: 5%;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
}

.nav-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--black);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-button:hover {
  background: var(--black);
  color: white;
}

.hero {
  min-height: 100vh;
  padding: 130px 5% 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 15px;
  font-weight: 600;
}

.hero-title {
  margin-top: 24px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-copy {
  max-width: 560px;
  margin: 28px auto 0;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn:hover {
  transform: scaleX(1.03);
}

.btn-dark {
  background: var(--purple-soft);
  color: var(--black);
  box-shadow: 0 16px 34px rgba(18, 133, 255, 0.22);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

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

.logo-strip {
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.strip-track {
  display: flex;
  justify-content: center;
  gap: 42px;
  white-space: nowrap;
  color: #222;
  font-size: 16px;
  font-weight: 600;
}

.section-label {
  display: inline-block;
  color: #555;
  font-size: 14px;
  font-weight: 700;
}

.cert-band {
  padding: 70px 5% 30px;
}

.cert-band-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--black);
  border-radius: 18px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.cert-copy h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.cert-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cert-pill {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--black);
  border-radius: 14px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cert-pill span {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.cert-pill small {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.statement-section {
  min-height: 100vh;
  padding: 90px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement-grid {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.statement-copy {
  max-width: 520px;
}

.statement-copy h2,
.section-heading h2,
.contact-box h2 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 700;
}

.statement-copy p {
  margin-top: 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.85;
}

.statement-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pdf-preview {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.pdf-card-flat {
  width: 100%;
  border: 1px solid var(--black);
  border-radius: 18px;
  background: white;
  overflow: hidden;
}

.pdf-card-header {
  height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 800;
}

.pdf-frame-flat {
  position: relative;
  height: 690px;
  background: #f7f7f7;
  overflow: hidden;
}

.pdf-viewer {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
  overflow: hidden;
}

.pdf-lock {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  pointer-events: all;
}

.services-section {
  padding: 100px 5%;
}

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

.service-list {
  width: min(100%, 950px);
  margin: 60px auto 0;
  border-top: 1px solid var(--black);
}

.service-row {
  min-height: 110px;
  padding: 24px 0;
  border-bottom: 1px solid var(--black);
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 24px;
}

.service-row ion-icon {
  font-size: 44px;
}

.service-row h3 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.info-section {
  padding: 40px 5% 110px;
}

.info-card {
  width: min(100%, 1050px);
  margin: 0 auto;
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--black);
  border-radius: 18px;
  background: #f4f4f4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card div {
  padding: 26px;
  border-radius: 12px;
  background: white;
  border: 1px solid #222;
}

.info-card span {
  color: #555;
  font-size: 13px;
  font-weight: 700;
}

.info-card strong {
  display: block;
  margin-top: 14px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.info-card p {
  margin-top: 12px;
  color: #555;
}

.contact-section {
  padding: 70px 5% 120px;
}

.contact-box {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 48px;
  min-height: 360px;
  border: 1px solid var(--black);
  border-radius: 20px;
  background: var(--soft);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-row {
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--black);
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .site-header {
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .cert-band-inner,
  .statement-grid,
  .contact-box,
  .info-card {
    grid-template-columns: 1fr;
  }

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

  .statement-copy {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .statement-actions {
    justify-content: center;
  }

  .pdf-frame-flat {
    height: 560px;
  }

  .strip-track {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 24px;
  }
}

@media (max-width: 700px) {
  .cert-pills {
    grid-template-columns: 1fr;
  }

  .cert-pill {
    min-height: 120px;
  }
}

@media (max-width: 620px) {
  .site-header {
    justify-content: center;
    padding: 0 22px;
  }

  .brand {
    position: static;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-actions,
  .statement-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cert-band,
  .statement-section,
  .services-section,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .cert-band-inner,
  .info-card,
  .contact-box {
    padding: 22px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .pdf-frame-flat {
    height: 500px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}