body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fbf7ef;
  color: #111;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo a {
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.main-nav a:hover {
  text-decoration: underline;
}

.page {
  padding: 70px 20px;
}

.page h1 {
  font-size: 40px;
  margin: 0 0 14px;
}

.page h2 {
  font-size: 26px;
  margin: 34px 0 12px;
}

.page p {
  line-height: 1.6;
  max-width: 75ch;
}

.order-page,
.order-page *,
.order-page *::before,
.order-page *::after {
  box-sizing: border-box;
}

.order-page .order-card {
  margin-top: 24px;
  width: 100%;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  padding: 22px;
}

.order-page .order-form h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.order-page .form-section + .form-section {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.order-page .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  align-items: start;
}

.order-page .field {
  min-width: 0;
}

.order-page .field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.order-page .field input,
.order-page .field select {
  width: 100%;
  min-width: 0;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
  font-size: 15px;
  color: #111;
}

.order-page .field input:focus,
.order-page .field select:focus {
  outline: none;
  border-color: rgba(212, 160, 23, 0.70);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.18);
}

.order-page .span-2 {
  grid-column: 1 / -1;
}

.order-page .agreement {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.order-page .agreement input {
  margin-top: 3px;
}

.order-page .agreement a {
  color: #111;
  font-weight: 700;
}

.order-page .form-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.order-page .order-status {
  min-height: 20px;
  font-weight: 700;
}

.order-page .order-status.success {
  color: #0f6a2b;
}

.order-page .order-status.error {
  color: #9a1b1b;
}

.pilot-page {
  background: #0b0c10;
  color: #eaeaea;
}

.pilot-page .site-header {
  background: rgba(11, 12, 16, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.pilot-page .logo a,
.pilot-page .main-nav a {
  color: #fff;
}

.pilot-page .main-nav a:hover {
  text-decoration: underline;
}

.pilot-hero {
  position: relative;
  min-height: 72vh;
  background: url('hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 84px 0 64px;
}

.pilot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 16, 0.92) 0%, rgba(11, 12, 16, 0.58) 55%, rgba(11, 12, 16, 0.25) 100%);
}

.pilot-hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.pilot-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.02em;
}

.pilot-lead {
  margin: 0 0 10px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.pilot-copy {
  margin: 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.82);
}

.pilot-hero-actions {
  margin-top: 20px;
}

.pilot-main {
  padding: 54px 0 0;
}

.pilot-section {
  padding: 54px 0;
}

.pilot-section h2 {
  margin: 0 0 14px;
  font-size: 26px;
  color: #fff;
}

.pilot-section p {
  margin: 0;
  max-width: 78ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.pilot-section-dark {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.pilot-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.pilot-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.pilot-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pilot-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.20);
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.pilot-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.pilot-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.pilot-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.pilot-cta {
  padding: 62px 0;
  background: linear-gradient(180deg, rgba(11, 12, 16, 0) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.pilot-footnote {
  margin: 18px 0 0;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
  .pilot-split {
    grid-template-columns: 1fr;
  }
  .pilot-images img {
    height: 220px;
  }
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.case-meta .card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 12px;
  padding: 16px;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 0 16px;
}

.site-footer a {
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  padding: 0;
}

.footer-bottom {
  opacity: 0.8;
  text-align: center;
  padding-top: 18px;
  font-size: 14px;
}

/* HERO SECTION */

.hero {
  position: relative;
  height: 100vh;
  background: url('hero.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cta-button {
  background: #d4a017;
  color: #000;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.cta-secondary {
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

/* VALUE SECTION */

.value {
  padding: 80px 20px;
  background: #f6f1e6;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.value h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.value-item h3 {
  margin-bottom: 10px;
}

.value-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
}

/* HOW IT WORKS */

.how-it-works {
  padding: 80px 20px;
  background: #fffaf2;
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  max-width: 300px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #d4a017;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
}

.value-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TRUST SECTION */

.trust {
  padding: 100px 20px;
  background: #fbf3df;
  text-align: center;
}

.trust h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.how-it-works {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}

.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  max-width: 300px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #d4a017;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}
.cta {
  padding: 100px 20px;
  background: #d4a017;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
}

.cta .cta-button {
  background: #fff;
  color: #000;
}

.page-hero {
  position: relative;
  padding: 110px 20px 64px;
  background: radial-gradient(circle at 20% 15%, rgba(212, 160, 23, 0.22), transparent 40%),
    radial-gradient(circle at 75% 10%, rgba(0, 0, 0, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(251, 247, 239, 0.0), rgba(251, 247, 239, 1));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('hero.jpeg') center/cover no-repeat;
  opacity: 0.16;
}

.page-hero .container {
  position: relative;
}

.kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.16);
  border: 1px solid rgba(212, 160, 23, 0.30);
  color: #111;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: 52px;
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: 18ch;
}

.page-hero p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 70ch;
  margin: 0 0 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.hero-point {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 14px;
}

.page-section {
  padding: 70px 20px;
}

.page-section .container > h2 {
  font-size: 32px;
  margin: 0 0 14px;
}

.page-section .container > p {
  margin: 0 0 18px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.card-soft {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-soft:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}

.card-soft h3 {
  margin: 0 0 8px;
}

.card-soft p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
}

.media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.10);
  background: rgba(255, 255, 255, 0.55);
}

.media img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.media .caption {
  padding: 12px 14px;
  font-weight: 800;
}

.esg-list {
  margin: 14px 0 0;
  padding-left: 20px;
  line-height: 1.7;
}

.note {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 4px solid #d4a017;
  border-radius: 10px;
  padding: 14px 16px;
}

.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.price-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  padding: 16px;
}

.price-card h3 {
  margin: 0 0 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.gallery a {
  display: block;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery a:hover img {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.poster-grid figure {
  margin: 0;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(17, 17, 17, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.poster-grid a {
  display: block;
}

.poster-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.founder-story {
  margin-top: 48px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.10);
  border-radius: 14px;
  border-left: 4px solid #d4a017;
}

.founder-story h2 {
  margin-top: 0;
}

.founder-story .founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
  margin-top: 14px;
}

.founder-story .quote {
  margin: 14px 0 0;
  padding: 14px 16px;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  color: #222;
}

.founder-story .quote p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.founder-story .quote p:last-child {
  margin-bottom: 0;
}

.founder-story .quote footer {
  font-weight: 800;
  color: #111;
  margin-top: 10px;
}

.founder-story .founder-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.founder-story .founder-images a {
  display: block;
}

.founder-story .founder-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.10);
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.founder-story .founder-images a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.founder-story .founder-images a.logo-link {
  grid-column: 1 / -1;
}

.founder-story .founder-images a.logo-link img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: rgba(17, 17, 17, 0.03);
}

.home .tech-trust {
  margin-top: 36px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.home .tech-trust h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff;
}

.home .tech-trust p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.home .tech-trust-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home .tech-trust-images a {
  display: block;
}

.home .tech-trust-images img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.20);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home .tech-trust-images a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

@media (max-width: 980px) {
  .founder-story .founder-grid {
    grid-template-columns: 1fr;
  }
  .home .tech-trust {
    grid-template-columns: 1fr;
  }
  .home .tech-trust-images img {
    height: 160px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-hero .container {
    animation: fadeUp 0.7s ease both;
  }
}

@media (max-width: 980px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 44px;
  }
  .media img {
    height: 260px;
  }
}

.home {
  background: #0b0c10;
  color: #eaeaea;
}

.home .site-header {
  background: rgba(15, 17, 23, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.home .logo a,
.home .main-nav a {
  color: #fff;
}

.home .main-nav a:hover {
  text-decoration: none;
  opacity: 0.85;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(212, 160, 23, 0.30), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.10), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(212, 160, 23, 0.20), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.55));
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.20);
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 24px;
}

.badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 14px;
}

.cta-button {
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.cta-secondary {
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta-secondary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.image-strip {
  padding: 36px 20px 70px;
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.0), rgba(11, 12, 16, 1));
}

.image-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.image-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.image-card figcaption {
  padding: 12px 14px;
  font-weight: 700;
  color: #fff;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.image-card img.shift-1 {
  object-position: 50% 35%;
}

.image-card img.shift-2 {
  object-position: 50% 65%;
}

.home .value,
.home .trust,
.home .how-it-works {
  background: #0f1117;
  color: #eaeaea;
}

.home .trust {
  background: #0b0c10;
}

.home .value-item,
.home .trust-item,
.home .step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.home .value-item:hover,
.home .trust-item:hover,
.home .step:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.home .cta {
  background: linear-gradient(135deg, #d4a017 0%, #ffcc33 100%);
  color: #111;
}

.home .cta .cta-button {
  background: #111;
  color: #fff;
}

.home .cta-secondary {
  border-color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home .hero-content {
    animation: fadeUp 0.7s ease both;
  }
  .home .image-card {
    animation: fadeUp 0.7s ease both;
  }
  .home .image-card:nth-child(2) {
    animation-delay: 0.08s;
  }
  .home .image-card:nth-child(3) {
    animation-delay: 0.16s;
  }
}

@media (max-width: 900px) {
  .image-strip-grid {
    grid-template-columns: 1fr;
  }
  .image-card img {
    height: 210px;
  }
  .hero-buttons {
    flex-direction: column;
  }
}

.cert-body {
  background: #fff;
  color: #101214;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.cert-body .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 18, 20, 0.10);
}

.cert-body .cta-button {
  background: #0f6a3a;
  color: #fff;
}

.cert-body .cta-button:hover {
  box-shadow: 0 18px 40px rgba(15, 106, 58, 0.22);
}

.cert-body .cta-secondary {
  color: #0f6a3a;
  border-color: rgba(15, 106, 58, 0.35);
}

.cert-body .cta-secondary:hover {
  opacity: 1;
}

.cert-hero {
  padding: 96px 20px 56px;
  background:
    radial-gradient(circle at 20% 15%, rgba(15, 106, 58, 0.16), transparent 42%),
    radial-gradient(circle at 75% 25%, rgba(22, 163, 74, 0.10), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 250, 246, 1));
  border-bottom: 1px solid rgba(16, 18, 20, 0.06);
}

.cert-hero h1 {
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  max-width: 22ch;
}

.cert-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 106, 58, 0.18);
  background: rgba(15, 106, 58, 0.08);
  color: #0f6a3a;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.cert-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1b2320;
}

.cert-intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 78ch;
  margin: 0 0 22px;
  color: rgba(16, 18, 20, 0.82);
}

.cert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  max-width: 760px;
}

.cert-stat {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
}

.cert-stat-label {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(16, 18, 20, 0.56);
  font-weight: 800;
}

.cert-stat-value {
  font-size: 16px;
  font-weight: 800;
  margin-top: 6px;
}

.cert-section {
  padding: 78px 20px;
}

.cert-section-alt {
  background: #f7fbf8;
  border-top: 1px solid rgba(16, 18, 20, 0.06);
  border-bottom: 1px solid rgba(16, 18, 20, 0.06);
}

.cert-section h2 {
  font-size: 34px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.cert-section p {
  max-width: 85ch;
}

.cert-lead {
  font-size: 18px;
  color: rgba(16, 18, 20, 0.78);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.cert-card {
  background: #fff;
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.cert-card h3 {
  margin: 0 0 8px;
}

.cert-card p {
  margin: 0;
  color: rgba(16, 18, 20, 0.78);
}

.cert-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.cert-list {
  margin: 0 0 14px;
  padding-left: 18px;
  line-height: 1.8;
}

.cert-callout {
  background: rgba(15, 106, 58, 0.08);
  border: 1px solid rgba(15, 106, 58, 0.16);
  border-left: 4px solid #0f6a3a;
  border-radius: 12px;
  padding: 14px 16px;
  color: rgba(16, 18, 20, 0.86);
}

.cert-portal {
  background: #fff;
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.cert-portal-top {
  padding: 16px;
  background: linear-gradient(135deg, rgba(15, 106, 58, 0.12), rgba(255, 255, 255, 0.6));
  border-bottom: 1px solid rgba(16, 18, 20, 0.06);
}

.cert-portal-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.cert-portal-sub {
  margin-top: 4px;
  color: rgba(16, 18, 20, 0.70);
}

.cert-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 16px;
}

.cert-portal-item {
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 12px;
  padding: 12px 12px;
  background: rgba(247, 251, 248, 0.8);
}

.cert-portal-k {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(16, 18, 20, 0.54);
}

.cert-portal-v {
  margin-top: 6px;
  font-weight: 900;
}

.cert-portal-image img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.level-card {
  border-radius: 18px;
  border: 1px solid rgba(16, 18, 20, 0.08);
  padding: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.level-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.level-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0f6a3a;
  background: rgba(15, 106, 58, 0.10);
  border: 1px solid rgba(15, 106, 58, 0.18);
  flex: 0 0 auto;
}

.level-name {
  font-weight: 900;
  margin-top: 2px;
}

.level-desc {
  margin-top: 6px;
  color: rgba(16, 18, 20, 0.76);
}

.level-button {
  align-self: flex-start;
}

.level-bronze .level-icon {
  color: #7a4b1b;
  background: rgba(122, 75, 27, 0.10);
  border-color: rgba(122, 75, 27, 0.18);
}

.level-silver .level-icon {
  color: #4b5563;
  background: rgba(75, 85, 99, 0.10);
  border-color: rgba(75, 85, 99, 0.18);
}

.level-gold .level-icon {
  color: #a16207;
  background: rgba(161, 98, 7, 0.12);
  border-color: rgba(161, 98, 7, 0.20);
}

.level-platinum .level-icon {
  color: #1f2937;
  background: rgba(31, 41, 55, 0.10);
  border-color: rgba(31, 41, 55, 0.18);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.criteria-card {
  background: #fff;
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.criteria-card h3 {
  margin: 0 0 10px;
}

.criteria-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.75;
  color: rgba(16, 18, 20, 0.78);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.process-step {
  background: #fff;
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.process-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0f6a3a;
  background: rgba(15, 106, 58, 0.10);
  border: 1px solid rgba(15, 106, 58, 0.18);
}

.process-title {
  margin-top: 10px;
  font-weight: 900;
}

.process-text {
  margin-top: 8px;
  color: rgba(16, 18, 20, 0.78);
  line-height: 1.7;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.material-item {
  background: #fff;
  border: 1px solid rgba(16, 18, 20, 0.08);
  border-radius: 14px;
  padding: 14px 14px;
  font-weight: 800;
  color: rgba(16, 18, 20, 0.82);
}

.cert-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.cert-image-row img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(16, 18, 20, 0.10);
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid rgba(16, 18, 20, 0.10);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-body {
  margin-top: 10px;
  color: rgba(16, 18, 20, 0.78);
  line-height: 1.7;
  max-width: 85ch;
}

.cert-cta {
  padding: 86px 20px;
  background: linear-gradient(135deg, rgba(15, 106, 58, 0.12), rgba(247, 251, 248, 1));
  border-top: 1px solid rgba(16, 18, 20, 0.06);
}

.cert-cta h2 {
  font-size: 38px;
  margin: 0 0 12px;
}

.cert-contact {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 18, 20, 0.08);
  max-width: 520px;
}

.cert-contact-label {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(16, 18, 20, 0.56);
  margin-bottom: 8px;
}

.cert-body .cert-contact a {
  color: #0f6a3a;
  font-weight: 900;
  text-decoration: none;
}

.cert-body .cert-contact a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: no-preference) {
  .cert-hero .container {
    animation: fadeUp 0.7s ease both;
  }
}

@media (max-width: 980px) {
  .cert-stats {
    grid-template-columns: 1fr;
  }
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .cert-split {
    grid-template-columns: 1fr;
  }
  .level-grid {
    grid-template-columns: 1fr;
  }
  .criteria-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .materials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cert-image-row {
    grid-template-columns: 1fr;
  }
  .cert-hero h1 {
    font-size: 42px;
  }
}
