:root {
  --ink: #1b1b1b;
  --muted: #6a6a6a;
  --accent: #fdc500;
  --accent-deep: #00509d;
  --cream: #f6f3ea;
  --glass: rgba(28, 26, 23, 0.38);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 18px 40px rgba(22, 22, 22, 0.14);
  --shadow-cta: 0 10px 24px rgba(25, 20, 10, 0.18);
}

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.nav-cta,
.hero-cta,
.examples-banner-cta,
.card-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.hero-cta:hover,
.examples-banner-cta:hover,
.card-link:hover {
  transform: translateY(-1px) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .nav-cta,
  .hero-cta,
  .examples-banner-cta,
  .card-link {
    transition: none;
    transform: none;
  }
}






.site-header {
  padding: 26px 56px 8px;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: transform 0.25s ease;
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  background: rgba(246, 243, 234, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 12px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(22, 18, 10, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.brand-mark {
  width: 120px;
  height: 30px;
  display: inline-flex;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-size: 18px;
}

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  color: rgba(34, 34, 34, 0.78);
  font-weight: 500;
  font-size: 14.5px;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
}

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

.nav-cta {
  background: var(--accent);
  color: #1f1609;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(215, 139, 25, 0.25);
}

.nav-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  color: #2a2520;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.hero {
  position: relative;
  padding: 78px 56px 170px;
  min-height: 650px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/test.jpg") center bottom / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 243, 234, 0.98) 0%, rgba(246, 243, 234, 0.86) 32%, rgba(246, 243, 234, 0.35) 58%, rgba(246, 243, 234, 0.05) 78%, rgba(0, 0, 0, 0.12) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-highlight {
  color: var(--accent-deep);
}

.hero-content p {
  margin: 18px auto 0;
  max-width: 700px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-trust {
  margin: 14px auto 0;
  font-size: 12.5px;
  color: rgba(33, 33, 33, 0.6);
  letter-spacing: 0.02em;
}

.hero-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f1a16;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-cta);
}

.cta-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #231609;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.card-strip {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 26px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  z-index: 2;
}

.glass-card {
  padding: 18px 20px 16px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  color: #ffffff;
  min-height: 130px;
}

.card-link-wrapper {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-link-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(22, 18, 10, 0.2);
}

.glass-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.glass-card p {
  margin: 0 0 10px;
  font-size: 13.2px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.card-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-block;
  padding-bottom: 2px;
}

.card-link-wrapper .card-link {
  margin-top: auto;
  align-self: flex-start;
}

@supports not (backdrop-filter: blur(12px)) {
  .glass-card {
    background: rgba(46, 43, 40, 0.52);
  }
}

@media (max-width: 1100px) {
  .site-header {
    padding: 22px 32px 6px;
  }

  .hero {
    padding: 70px 32px 190px;
  }

  .card-strip {
    left: 32px;
    right: 32px;
  }
}

@media (max-width: 920px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 12px;
  }

  .nav-menu {
    order: 3;
    flex: 0 0 100%;
    display: none;
    justify-content: center;
    margin-top: 12px;
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    transform: translateX(-50%);
    width: min(240px, 92%);
    background: rgba(246, 243, 234, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 12px 10px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 30px rgba(28, 24, 16, 0.14);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav-actions {
    order: 2;
    margin-left: auto;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .brand-mark {
    width: 96px;
    height: 26px;
  }

  .card-strip {
    left: 32px;
    right: 32px;
  }

  .hero {
    padding-bottom: 40px;
  }
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .card-strip {
    position: relative;
    left: 0;
    right: 0;
    z-index: 2;
    margin-top: 36px;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
  }

  .glass-card {
    width: min(360px, 100%);
  }
}

.content {
  padding: 80px 72px 100px;
  display: grid;
  gap: 44px;
  background: var(--cream);
  scroll-margin-top: 120px;
}

.site-footer {
  background: #f2efe6;
  border-top: 1px solid rgba(228, 214, 191, 0.8);
  padding: 36px 72px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 13.5px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
}

.cert-showcase {
  display: grid;
  gap: 18px;
}

.cert-header h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
}

.cert-header p {
  margin: 0;
  color: var(--muted);
  max-width: 600px;
}

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

.cert-card {
  padding: 16px;
  border-radius: 18px;
  background: #fffaf0;
  border: 1px solid rgba(228, 214, 191, 0.7);
  box-shadow: 0 16px 26px rgba(24, 18, 8, 0.08);
}

.cert-thumb {
  height: 120px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 80, 157, 0.12), rgba(253, 197, 0, 0.18));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent-deep);
  margin-bottom: 12px;
}

.cert-card h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.cert-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

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

.benefit-card {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(225, 220, 210, 0.8);
  box-shadow: 0 16px 26px rgba(24, 18, 8, 0.08);
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.order-form {
  background: #fffaf0;
  border: 1px solid rgba(228, 214, 191, 0.7);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(24, 18, 8, 0.08);
  display: grid;
  gap: 16px;
}

.form-success {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(210, 240, 220, 0.6);
  border: 1px solid rgba(120, 190, 150, 0.6);
  color: #1f5a3a;
  font-size: 13.5px;
}

.order-form.is-sent .form-success {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.order-form input,
.order-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(209, 196, 176, 0.8);
  background: #ffffff;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
}

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  font-weight: 500;
  color: var(--muted);
}

.form-check input {
  margin: 0;
}

.form-submit {
  justify-self: start;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

.content-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-deep);
  margin: 0 0 12px;
}

.content-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: start;
}

.content-header h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.content-intro h2 {
  margin: 0 0 12px;
}

.content-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.content-intro strong {
  color: var(--ink);
}

.content-highlight {
  margin-top: 14px;
  font-weight: 600;
  color: #a33c00;
}

.contact-card {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fffaf0;
  border: 1px solid rgba(228, 214, 191, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.contact-details {
  display: grid;
  gap: 6px;
  text-align: right;
}

.contact-details a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
}

.service-accordion {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.75), rgba(245, 240, 230, 0.65)),
    url("img/bg-accordition.jpg") center/cover no-repeat;
  background-blend-mode: screen;
  border: 1px solid rgba(230, 216, 195, 0.6);
  box-shadow: 0 22px 42px rgba(24, 18, 8, 0.12);
  margin-top: 18px;
  margin-bottom: 28px;
}

.accordion-item {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
    radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 60%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 22px 38px rgba(24, 18, 8, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 20px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(26px) saturate(1.25);
  overflow: hidden;
  position: relative;
}

.accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 90% at 10% 0%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 55%),
    radial-gradient(120% 80% at 90% 100%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 60%);
  opacity: 0.7;
  pointer-events: none;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  color: #111112;
}

.accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(0, 80, 157, 0.08);
  color: #6b7785;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon svg {
  width: 20px;
  height: 20px;
}

.accordion-title {
  font-size: 16px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.accordion-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.accordion-item.is-open .accordion-chevron {
  transform: rotate(-135deg);
}

.accordion-item.is-open::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(180px 140px at 92% 22%, rgba(255, 60, 40, 0.9), rgba(255, 60, 40, 0) 70%),
    linear-gradient(90deg, rgba(255, 60, 40, 0.7) 0%, rgba(255, 130, 40, 0.7) 18%, rgba(255, 220, 60, 0.7) 36%, rgba(80, 200, 110, 0.65) 52%, rgba(0, 160, 200, 0.6) 70%, rgba(0, 110, 200, 0.6) 84%, rgba(90, 60, 170, 0.6) 100%);
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(16px);
  clip-path: inset(0 round 18px);
  background-repeat: no-repeat;
  background-size: 140% 140%;
  background-position: 85% 50%;
  animation: flare-sweep 10s ease-in-out infinite;
  animation-fill-mode: both;
}

.accordion-item.is-open::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background:
    radial-gradient(110px 110px at 92% 22%, rgba(255, 80, 60, 0.95), rgba(255, 80, 60, 0) 70%),
    linear-gradient(90deg, rgba(255, 70, 50, 0.55) 0%, rgba(255, 150, 60, 0.55) 20%, rgba(255, 230, 80, 0.55) 38%, rgba(90, 210, 120, 0.5) 56%, rgba(0, 150, 200, 0.5) 72%, rgba(0, 90, 190, 0.5) 86%, rgba(90, 60, 170, 0.5) 100%);
  opacity: 0.28;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  clip-path: inset(0 round 18px);
  background-repeat: no-repeat;
  background-size: 140% 140%;
  background-position: 85% 50%;
  animation: flare-sweep 10s ease-in-out infinite, flare-pulse 4s ease-in-out infinite;
  animation-fill-mode: both;
}

@keyframes flare-sweep {
  0% {
    background-position: 92% 50%;
  }
  50% {
    background-position: 70% 50%;
  }
  100% {
    background-position: 92% 50%;
  }
}

@keyframes flare-pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
}

.accordion-panel {
  padding: 0 22px 0 70px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.accordion-item.is-open .accordion-panel {
  max-height: 220px;
  opacity: 1;
  padding-bottom: 18px;
}

.accordion-panel p {
  margin: 0;
  color: rgba(17, 17, 18, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.accordion-item.is-open .accordion-title {
  color: #0b2f59;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}

.accordion-item.is-open .accordion-panel p {
  color: rgba(12, 30, 52, 0.9);
}

.accordion-item.is-open::before,
.accordion-item.is-open::after {
  filter: blur(22px);
}

.content-certifications,
.content-examples,
.content-benefits {
  display: grid;
  gap: 14px;
}

.content-examples {
  overflow: visible;
  align-items: stretch;
  justify-items: center;
  --examples-width: min(980px, 100%);
  position: relative;
  padding-top: 36px;
}

.content-examples::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: rgba(210, 200, 182, 0.7);
  transform: translateX(-50%);
}

.examples-banner {
  width: var(--examples-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin: 26px 0 32px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 251, 0.7));
  border: 1px solid rgba(214, 225, 235, 0.7);
  box-shadow: 0 18px 30px rgba(24, 18, 8, 0.08);
}

.examples-banner-eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-deep);
}

.examples-banner h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.examples-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.examples-banner-cta {
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #1b1b1b;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 20px rgba(24, 18, 8, 0.1);
}

.examples-vertical {
  width: var(--examples-width);
  max-width: none;
  margin: 0 auto;
  padding: 22px 28px 28px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(238, 245, 250, 0.7)),
    url("img/bg-accordition.jpg") center/cover no-repeat;
  background-blend-mode: screen;
  border: 1px solid rgba(215, 226, 236, 0.7);
  box-shadow: 0 24px 44px rgba(24, 18, 8, 0.12);
}

.content-certifications h3,
.content-examples h3,
.content-benefits h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.content-certifications ul,
.content-benefits ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.examples-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  align-self: stretch;
  width: var(--examples-width);
  max-width: none;
  margin: 0 auto;
  padding: 0 8px;
  margin-bottom: 12px;
}

.examples-heading {
  display: grid;
  gap: 6px;
  flex: 1;
}

.examples-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-deep);
}

.examples-header h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.examples-subtext {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 560px;
}

.examples-stack {
  position: relative;
  display: grid;
  place-items: center;
  padding: 36px 0 44px;
  width: 100%;
  min-height: clamp(420px, 48vw, 560px);
}

.examples-cards {
  position: relative;
  width: 100%;
  height: clamp(280px, 34vw, 360px);
}

.examples-arrow {
  position: absolute;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 18px rgba(24, 18, 8, 0.12);
  cursor: pointer;
  font-size: 16px;
  transform: translateX(-50%);
}

.examples-arrow[data-dir="prev"] {
  top: 0;
}

.examples-arrow[data-dir="next"] {
  bottom: 0;
}

.example-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(900px, 100%);
  height: clamp(260px, 34vw, 340px);
  background: #ffffff;
  border: 1px solid rgba(225, 220, 210, 0.8);
  border-radius: 18px;
  padding: 14px 16px 16px;
  box-shadow: 0 18px 28px rgba(24, 18, 8, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px) scale(0.94);
  transition: transform 0.45s ease, opacity 0.35s ease, box-shadow 0.45s ease;
}

.example-image {
  height: clamp(130px, 16vw, 160px);
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.example-card h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.example-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.example-card.is-active {
  border-color: rgba(0, 80, 157, 0.3);
  box-shadow: 0 22px 34px rgba(24, 18, 8, 0.14);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  z-index: 3;
}

.example-card.is-prev,
.example-card.is-next {
  opacity: 0.45;
  z-index: 2;
}

.example-card.is-prev {
  transform: translateY(-140px) scale(0.94);
}

.example-card.is-next {
  transform: translateY(140px) scale(0.94);
}

@media (max-width: 920px) {
  .content {
    padding: 60px 32px 76px;
  }

  .content-intro {
    grid-template-columns: 1fr;
  }

  .content-header h2 {
    max-width: 100%;
  }

  .examples-vertical {
    padding: 22px 18px;
  }

  .examples-header {
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .examples-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .examples-stack {
    padding: 56px 0 52px;
    min-height: clamp(440px, 82vw, 600px);
  }

  .examples-cards {
    width: 100%;
    height: clamp(260px, 64vw, 340px);
  }

  .example-card {
    width: min(700px, 100%);
    height: clamp(240px, 64vw, 320px);
  }

  .service-accordion {
    padding: 22px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-details {
    text-align: left;
  }

  .accordion-item.is-open::before,
  .accordion-item.is-open::after {
    filter: blur(18px);
    opacity: 0.5;
  }

  .site-footer {
    padding: 32px 24px 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cert-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 921px) {
  .example-image {
    height: clamp(170px, 14vw, 210px);
  }
}
