/* BLOG GRID LAYOUT */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 350px));
  gap: 48px 48px;
  justify-content: center;
  justify-items: stretch;
  margin-top: 40px;
}

.blog-card {
  background: #176282;
  border-radius: 36px;
  width: 350px;
  max-width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
  color: inherit;
  text-decoration: none;
}

.blog-number {
  color: #d8f4ff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.blog-card h2 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
}

.blog-card:hover {
  transform: translateY(-6px) scale(1.03);
}

.blog-card:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 5px;
}
/* RESET */
* {
  margin: 0;
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #3b82f6;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: #020617;
}

/* BODY FIX */
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #020617;
  font-family: 'Poppins', Satoshi;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}

#main-content {
  flex: 1 0 auto;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(2,6,23,0.9);
  backdrop-filter: blur(6px);
  min-height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-frame {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #0a1225;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.logo:hover .logo-frame {
  box-shadow: 0 0 0 1px rgba(59,130,246,0.8), 0 0 10px rgba(59,130,246,0.2);
}


nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: white;
  margin: 10px;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* SECTIONS */
section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px 60px;
}

/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 20px;
}

.footer-card {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px 20px 60px;
  color: #cfd8ff;
  position: relative;
  flex-shrink: 0;
}

.footer-card h2 {
  color: #b5fbff;
  font-size: 2rem;
  text-align: center;
  display: block;
  width: fit-content;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 14px;
  margin: 0 auto 10px;
}

.footer-card p {
  text-align: center;
  margin-top: 6px;
  color: #b5c7dc;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.footer-explore {
  width: min(100%, 900px);
}

.footer-links h4 {
  margin-bottom: 10px;
  color: #2de0ff;
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.footer-links a {
  display: inline-flex;
  color: #edf3ff;
  margin: 4px 0;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact-icons {
  position: absolute;
  right: 28px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-contact-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8f7ff;
  background: rgba(45, 224, 255, 0.12);
  border: 1px solid rgba(181, 251, 255, 0.28);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-contact-icons a:hover {
  transform: translateY(-2px);
  background: rgba(45, 224, 255, 0.22);
  border-color: rgba(181, 251, 255, 0.55);
}

.footer-contact-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-card .copyright {
  text-align: center;
  margin-top: 22px;
  font-size: 0.9rem;
  color: #98a7bf;
}

.hero h2 {
  font-size: 3rem;
}

.ad-screen {
  padding-top: 20px;
}

.ad-screen-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(10, 18, 37, 0.75));
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.14);
  position: relative;
  overflow: hidden;
}

.ad-screen-shell::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.28), transparent 72%);
  pointer-events: none;
}

.ad-copy,
.ad-display {
  position: relative;
  z-index: 1;
}

.ad-eyebrow {
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.ad-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.ad-copy p:last-of-type {
  color: #d8e5f7;
  line-height: 1.7;
  max-width: 58ch;
}

.ad-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ad-cta:hover {
  transform: translateY(-2px);
  background: #2563eb;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.ad-display-frame {
  min-height: 320px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(14, 165, 233, 0.2), rgba(59, 130, 246, 0.08)),
    rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(125, 211, 252, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ad-badge {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ad-display-frame h3 {
  font-size: 2rem;
  color: #f8fbff;
}

.ad-display-frame p {
  color: #d6e4f5;
  line-height: 1.7;
}

.ad-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ad-points span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #cfe7ff;
  font-size: 0.9rem;
}
/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.card {
  background: #0f172a;
  padding: 40px;
  border-radius: 20px;
  width: 300px;
  max-width: 90%;
  transition: 0.3s;
}

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

.service-card:focus-visible {
  outline: 2px solid #7dd3fc;
  outline-offset: 4px;
}

.card:hover {
  transform: translateY(-10px);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
}

.service-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18) 0%, rgba(2, 6, 23, 0.7) 55%, rgba(2, 6, 23, 0.94) 100%);
  z-index: 1;
}

.service-card h3 {
  font-size: 1.35rem;
  color: #b5fbff;
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-card p {
  color: #d7e3f5;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-align: center;
}

.services-showcase {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 132px 40px 70px;
  overflow: hidden;
}

.services-showcase-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.services-showcase-heading p {
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-showcase-heading h1 {
  color: #f8fbff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.services-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 52px);
  width: 100%;
  min-width: 100%;
  overflow: visible;
  padding: 0;
}

.services-stage {
  display: flex;
  gap: 34px;
  align-items: stretch;
}

.featured-service-card {
  order: 2;
  flex: 0 1 min(68vw, 980px);
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.34);
  animation: featured-pop 360ms ease;
  transform-origin: center;
}

.featured-service-card.is-changing {
  animation: featured-pop 360ms ease;
}

.featured-service-media {
  min-height: 330px;
  background: #111827;
  overflow: hidden;
  padding: 24px;
}

.featured-service-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  display: block;
  background: #111827;
}

.featured-service-copy {
  min-width: 0;
  padding: 34px 40px;
}

.featured-service-copy h2 {
  color: #f8fbff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

#showcase-service-summary {
  color: #d8e5f7;
  line-height: 1.8;
  max-width: 70ch;
}

.showcase-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.showcase-detail-grid h3 {
  color: #b5fbff;
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.showcase-detail-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #d7e3f5;
  line-height: 1.6;
}

.service-showcase-list {
  display: contents;
}

.showcase-service-option {
  width: clamp(180px, 18vw, 340px);
  height: clamp(128px, 12vw, 180px);
  flex: 0 1 clamp(180px, 18vw, 340px);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.36);
  color: #d7e3f5;
  cursor: pointer;
  text-align: left;
  font: inherit;
  overflow: hidden;
  position: relative;
  transform: none;
  transform-origin: center;
  transition: transform 0.3s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.3s ease;
}

.showcase-service-option.is-previous {
  order: 1;
}

.showcase-service-option.is-next {
  order: 3;
}

.showcase-service-option img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  opacity: 0.42;
  z-index: 0;
}

.showcase-service-option span {
  position: relative;
  z-index: 2;
  min-width: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.showcase-service-option::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.86));
}

.showcase-service-option:hover,
.showcase-service-option:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(15, 23, 42, 0.96);
  outline: none;
}

.showcase-service-option.active {
  border-color: rgba(125, 211, 252, 0.72);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(15, 23, 42, 0.96));
  color: #fff;
}

@keyframes featured-pop {
  from {
    opacity: 0.72;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* SERVICE DETAIL */
.service-detail-page {
  width: 100%;
}

.service-detail-shell {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin: 0;
  padding: 152px 32px 60px 0;
}

.service-picker {
  position: sticky;
  top: 88px;
  max-height: none;
  overflow: visible;
  padding: 18px 12px 18px 18px;
  border-radius: 0 24px 24px 0;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-left: none;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.3);
}

.picker-eyebrow {
  margin-bottom: 14px;
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.service-picker-list {
  display: grid;
  gap: 10px;
}

.service-picker-card {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.36);
  color: #d7e3f5;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-picker-card img {
  width: 44px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.service-picker-card span {
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.service-picker-card:hover,
.service-picker-card:focus-visible {
  transform: translateX(4px);
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(15, 23, 42, 0.96);
  outline: none;
}

.service-picker-card.active {
  border-color: rgba(125, 211, 252, 0.7);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(15, 23, 42, 0.96));
  color: #fff;
}

.service-detail-area {
  min-width: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  padding: 0;
}

.service-detail-visual,
.service-detail-content {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.3);
}

.service-detail-visual {
  min-height: 420px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.service-detail-content {
  min-width: 0;
  min-height: 420px;
  padding: 34px 38px;
}

.detail-eyebrow {
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.service-detail-content h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}

#service-summary {
  color: #d8e5f7;
  line-height: 1.8;
  max-width: 72ch;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 28px;
}

.detail-grid h2 {
  color: #b5fbff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.detail-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #d7e3f5;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.detail-cta:hover {
  transform: translateY(-2px);
  background: #2563eb;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

/* BLOG */
.blog-showcase {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 132px 40px 70px;
  overflow: hidden;
}

.blog-detail-page {
  width: 100%;
}

.blog-detail-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 132px 24px 70px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #7dd3fc;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.blog-detail {
  display: grid;
  grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.blog-detail-visual,
.blog-detail-content {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.3);
}

.blog-detail-visual {
  min-height: 420px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 28px;
}

.blog-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.blog-detail-content {
  min-width: 0;
  min-height: 420px;
  padding: 34px 38px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.1);
  color: #cfe7ff;
  font-size: 0.86rem;
  font-weight: 600;
}

.blog-detail-content h1 {
  color: #f8fbff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}

#blog-summary {
  color: #d8e5f7;
  line-height: 1.8;
  max-width: 72ch;
}

.blog-detail-grid {
  grid-template-columns: 1fr;
}

.blog-showcase-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.blog-showcase-heading p {
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-showcase-heading h1 {
  color: #f8fbff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.blog-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 52px);
  width: 100%;
  min-width: 100%;
  overflow: visible;
  padding: 0;
}

.featured-blog-card {
  order: 2;
  flex: 0 1 min(68vw, 980px);
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.34);
  animation: featured-pop 360ms ease;
  transform-origin: center;
}

.featured-blog-card.is-changing {
  animation: featured-pop 360ms ease;
}

.featured-blog-media {
  min-height: 330px;
  background: #111827;
  overflow: hidden;
  padding: 24px;
}

.featured-blog-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  display: block;
  background: #111827;
}

.featured-blog-copy {
  min-width: 0;
  padding: 34px 40px;
}

.featured-blog-copy h2 {
  color: #f8fbff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

#showcase-blog-summary {
  color: #d8e5f7;
  line-height: 1.8;
  max-width: 70ch;
}

.showcase-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.showcase-detail-grid h3 {
  color: #b5fbff;
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.showcase-detail-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #d7e3f5;
  line-height: 1.6;
}

.blog-showcase-list {
  display: contents;
}

.showcase-blog-option {
  width: clamp(180px, 18vw, 340px);
  height: clamp(128px, 12vw, 180px);
  flex: 0 1 clamp(180px, 18vw, 340px);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.36);
  color: #d7e3f5;
  cursor: pointer;
  text-align: left;
  font: inherit;
  overflow: hidden;
  position: relative;
  transform: none;
  transform-origin: center;
  transition: transform 0.3s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.3s ease;
}

.showcase-blog-option.is-previous {
  order: 1;
}

.showcase-blog-option.is-next {
  order: 3;
}

.showcase-blog-option img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  opacity: 0.42;
  z-index: 0;
}

.showcase-blog-option span {
  position: relative;
  z-index: 2;
  min-width: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.showcase-blog-option::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.86));
}

.showcase-blog-option:hover,
.showcase-blog-option:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(15, 23, 42, 0.96);
  outline: none;
}

.showcase-blog-option.active {
  border-color: rgba(125, 211, 252, 0.72);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(15, 23, 42, 0.96));
  color: #fff;
}

/* CMA STUDY */
.cma-study-page {
  width: 100%;
}

.cma-study-shell {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 132px 24px 70px;
}

.cma-study-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 30px;
}

.cma-study-hero > div,
.cma-score-panel,
.cma-quiz-card {
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.3);
}

.cma-study-hero > div {
  padding: 34px 38px;
}

.cma-study-hero h1 {
  color: #f8fbff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.cma-study-hero p:not(.detail-eyebrow) {
  color: #d8e5f7;
  line-height: 1.8;
  max-width: 70ch;
}

.cma-score-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.cma-score-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}

.cma-score-panel span {
  color: #7dd3fc;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cma-score-panel strong {
  margin-top: 8px;
  color: #f8fbff;
  font-size: 2rem;
}

.cma-score-panel p {
  margin-top: 8px;
  color: #b5c7dc;
  line-height: 1.5;
  text-align: left;
}

.cma-path-panel {
  margin-bottom: 28px;
  padding: 10px 8px 28px;
  border-radius: 12px;
  overflow: hidden;
}

.cma-path-back {
  width: 42px;
  height: 42px;
  margin: 0 0 18px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(125, 211, 252, 0.36);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.72);
  color: #dff7ff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.cma-path-back[hidden] {
  display: none;
}

.cma-path-back:hover,
.cma-path-back:focus-visible {
  background: #1f7da2;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.25);
  outline: none;
}

.cma-level-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 42px;
  align-items: start;
}

.cma-level-card {
  width: min(100%, 250px);
  min-height: 54px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid rgba(2, 6, 23, 0.8);
  border-radius: 8px;
  background: #176282;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  position: relative;
}

.cma-unavailable-card {
  width: min(100%, 250px);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid rgba(2, 6, 23, 0.8);
  border-radius: 8px;
  background: #176282;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.cma-level-card.active,
.cma-level-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.28);
  outline: none;
}

.cma-group-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 260px));
  justify-content: center;
  gap: 42px;
  align-items: start;
  margin-top: 16px;
}

.cma-group-count-1 {
  grid-template-columns: minmax(220px, 260px);
}

.cma-group-list.cma-set-panel {
  grid-template-columns: minmax(220px, 720px);
}

.cma-group-count-2 {
  grid-template-columns: repeat(2, minmax(220px, 260px));
}

.cma-unavailable-card {
  grid-column: 1;
  margin: 0 auto;
}

.cma-group-card {
  width: min(100%, 160px);
  min-height: 54px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid rgba(2, 6, 23, 0.8);
  border-radius: 8px;
  background: #176282;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

article.cma-group-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

article.cma-group-card h3 {
  width: min(100%, 160px);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid rgba(2, 6, 23, 0.8);
  border-radius: 8px;
  background: #176282;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.cma-group-back {
  min-width: 104px;
  min-height: 36px;
  padding: 6px 16px;
  border: 2px solid rgba(2, 6, 23, 0.82);
  border-radius: 6px;
  background: #176282;
  color: #fff;
}

.cma-group-back {
  grid-column: 1 / -1;
  justify-self: center;
}

button.cma-group-card:hover,
button.cma-group-card:focus-visible,
.cma-group-back:hover,
.cma-group-back:focus-visible {
  background: #1f7da2;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.25);
  outline: none;
}

.cma-subject-list {
  width: min(100%, 220px);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.cma-set-list {
  width: min(100%, 720px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.cma-subject-button {
  width: 100%;
  min-height: 38px;
  padding: 7px 12px;
  border: 2px solid rgba(2, 6, 23, 0.82);
  border-radius: 6px;
  background: #176282;
  color: #edf3ff;
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: center;
}

.cma-set-list .cma-subject-button {
  width: auto;
  min-width: 112px;
  flex: 0 1 128px;
}

.cma-subject-button.is-empty {
  opacity: 0.72;
}

.cma-subject-button.active,
.cma-subject-button:focus-visible {
  background: #1f7da2;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.25);
  outline: none;
}

.cma-quiz-card {
  display: none;
  min-height: 500px;
  padding: 34px 38px;
}

.cma-quiz-card.is-open {
  display: block;
}

.cma-back-button {
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.42);
  color: #cfe7ff;
  box-shadow: none;
}

.cma-back-button:hover,
.cma-back-button:focus-visible {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.45);
  outline: none;
}

.cma-quiz-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cma-quiz-topline span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.1);
  color: #cfe7ff;
  font-size: 0.86rem;
  font-weight: 600;
}

.cma-progress-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin: -8px 0 24px;
}

.cma-progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.14);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.18);
}

.cma-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #67e8f9);
  transition: width 0.28s ease;
}

.cma-progress-meter strong {
  color: #dff8ff;
  font-size: 0.88rem;
  white-space: nowrap;
}

.cma-quiz-card h2 {
  color: #f8fbff;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 24px;
}

.cma-options {
  display: grid;
  gap: 12px;
}

.cma-option {
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
  color: #edf3ff;
  text-align: left;
}

.cma-option:hover,
.cma-option:focus-visible {
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.45);
  outline: none;
}

.cma-option.is-correct {
  background: rgba(34, 197, 94, 0.18);
  box-shadow: 0 0 0 1px rgba(134, 239, 172, 0.45);
}

.cma-option.is-wrong {
  background: rgba(239, 68, 68, 0.16);
  box-shadow: 0 0 0 1px rgba(252, 165, 165, 0.45);
}

.cma-option.is-selected {
  animation: cma-option-glow 0.42s ease;
}

.cma-option:disabled {
  cursor: default;
  transform: none;
}

.cma-feedback {
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  line-height: 1.7;
}

.cma-feedback strong {
  display: block;
  margin-bottom: 4px;
}

.cma-feedback.is-correct {
  background: rgba(34, 197, 94, 0.12);
  color: #d7ffe4;
}

.cma-feedback.is-wrong {
  background: rgba(239, 68, 68, 0.12);
  color: #ffe1e1;
}

.cma-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

.cma-actions button:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.cma-results {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.36);
}

.cma-results h3 {
  margin-bottom: 14px;
  color: #b5fbff;
  font-size: 1.2rem;
}

.cma-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
}

.cma-result-grid div {
  padding: 14px;
  border-radius: 12px;
  background: rgba(125, 211, 252, 0.1);
}

.cma-result-grid span {
  display: block;
  color: #cfe7ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cma-result-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.7rem;
}

.cma-next-set-button {
  width: 100%;
  margin-top: 18px;
  min-height: 54px;
  border-radius: 12px;
  background: linear-gradient(90deg, #16a34a, #0891b2);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(8, 145, 178, 0.22);
}

.cma-next-set-button:hover,
.cma-next-set-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 145, 178, 0.3);
  outline: none;
}

@keyframes cma-option-glow {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 rgba(125, 211, 252, 0);
  }

  55% {
    transform: scale(1.01);
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.18);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes featured-pop {
  from {
    opacity: 0.72;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* CONTACT */
.contact {
  width: min(100%, 1220px);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 142px;
}

.contact-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.34);
}

.contact-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(15, 23, 42, 0.18)),
    rgba(51, 65, 85, 0.34);
}

.contact-eyebrow {
  color: #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-copy h1 {
  max-width: 520px;
  color: #f8fbff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-copy > p:not(.contact-eyebrow) {
  max-width: 58ch;
  color: #d8e5f7;
  line-height: 1.8;
}

.contact-highlights {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-highlights div {
  padding: 14px 16px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.34);
}

.contact-highlights span,
.contact-form label span {
  display: block;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.contact-highlights p {
  color: #edf3ff;
  margin: 0;
  text-align: left;
}

form,
.contact-form {
  position: relative;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
}

.contact-form {
  min-height: 520px;
  justify-content: center;
  padding: 48px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

#form-status {
  min-height: 22px;
  font-size: 0.95rem;
  color: #cfe7ff;
  text-align: left;
}

.celebration-burst {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 3;
}

.celebration-particle {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 18px;
  border-radius: 999px;
  background: hsl(var(--hue), 95%, 68%);
  box-shadow: 0 0 12px hsla(var(--hue), 95%, 68%, 0.45);
  opacity: 0;
  transform:
    rotate(var(--angle))
    translateY(0)
    scale(0.35);
  animation: burst-pop 900ms ease-out forwards;
  animation-delay: var(--delay);
}

@keyframes burst-pop {
  0% {
    opacity: 0;
    transform:
      rotate(var(--angle))
      translateY(0)
      scale(0.35);
  }

  15% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform:
      rotate(var(--angle))
      translateY(calc(var(--distance) * -1))
      scale(1);
  }
}

/* Inputs */
input, textarea {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.48);
  color: #edf3ff;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(237, 243, 255, 0.58);
}

/* Focus effect */
input:focus, textarea:focus {
  border-color: rgba(125, 211, 252, 0.7);
  background: rgba(2, 6, 23, 0.72);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

/* Button */
button {
  padding: 13px 18px;
  border: none;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

button:hover {
  transform: translateY(-2px);
  background: #2563eb;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.testimonials {
  overflow: hidden;
}

.testimonials-marquee {
  width: 100%;
  margin-top: 32px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #020617, transparent);
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #020617, transparent);
}

.testimonials-cards {
  display: flex !important;
  width: max-content;
  gap: 28px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 0;
  position: relative;
  z-index: 1;
  animation: testimonials-scroll 34s linear infinite;
  will-change: transform;
}

.testimonials-marquee:hover .testimonials-cards {
  animation-play-state: paused;
}

.testimonials .card {
  flex: 0 0 300px;
  min-height: 198px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.testimonials .card p {
  line-height: 1.55;
}

.testimonials .card cite {
  margin-top: 8px;
  color: #fff;
  font-style: italic;
  font-weight: 700;
}

@keyframes testimonials-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(240px, 350px));
    gap: 28px;
  }

  .blog-detail {
    grid-template-columns: 1fr;
  }

  .blog-detail-visual {
    min-height: 300px;
  }

  .ad-screen-shell {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .service-detail-shell {
    grid-template-columns: 1fr;
    padding: 96px 18px 48px;
  }

  .service-picker {
    position: static;
    max-height: none;
    padding: 18px;
    border-left: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
  }

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

  .services-showcase {
    padding: 96px 18px 48px;
  }

  .services-carousel {
    flex-wrap: wrap;
  }

  .featured-service-card {
    order: 1;
    grid-template-columns: 1fr;
    flex-basis: min(100%, 620px);
  }

  .featured-service-media,
  .featured-service-media img {
    min-height: 300px;
  }

  .services-carousel {
    gap: 18px;
  }

  .showcase-service-option {
    order: 2;
    width: 210px;
    height: 132px;
    flex-basis: 210px;
  }

  .contact {
    padding-top: 96px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .cma-study-hero {
    grid-template-columns: 1fr;
  }

  .cma-level-list,
  .cma-group-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cma-unavailable-card {
    grid-column: auto;
  }

  .contact-copy,
  .contact-form {
    min-height: auto;
    padding: 32px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail-visual img,
  .service-detail-content {
    min-height: auto;
  }

  .service-detail-visual img {
    min-height: 280px;
  }

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

  .testimonials .card {
    flex-basis: 280px;
  }

  .footer-links {
    margin-top: 18px;
  }

  .footer-links::after {
    display: none;
  }

  .footer-nav {
    gap: 8px 16px;
  }

  .footer-contact-icons {
    position: absolute;
    right: 16px;
    top: 50%;
    bottom: auto;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
}

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

  .blog-card {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 18px;
    border-radius: 24px;
  }

  .blog-detail-shell {
    padding: 104px 18px 48px;
  }

  .blog-detail-content {
    padding: 24px;
  }

  .ad-screen-shell {
    padding: 22px;
  }

  .ad-display-frame {
    min-height: 280px;
    padding: 22px;
  }

  .ad-display-frame h3 {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .contact-copy,
  .contact-form {
    padding: 24px;
  }

  .contact-shell {
    border-radius: 22px;
  }

  .cma-study-shell {
    padding: 104px 18px 48px;
  }

  .cma-study-hero > div,
  .cma-score-panel,
  .cma-quiz-card {
    padding: 24px;
  }

  .cma-path-panel {
    padding-left: 0;
    padding-right: 0;
  }

  .cma-actions {
    flex-direction: column;
  }

  .cma-result-grid {
    grid-template-columns: 1fr;
  }

  .service-picker-list {
    grid-template-columns: 1fr;
  }

  .featured-service-copy {
    padding: 24px;
  }

  .featured-service-card {
    flex-basis: 100%;
  }

  .showcase-service-option {
    width: 178px;
    height: 112px;
    flex-basis: 178px;
  }
}
/* CENTER ONLY HEADINGS + ABOUT SECTION */

/* Center "What Clients Say" heading */
.testimonials h2 {
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

/* Center About Me section */
.about {
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.legal-page {
  max-width: 980px;
  margin-top: 90px;
  padding-top: 70px;
  line-height: 1.8;
}

.legal-page h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #b5fbff;
}

.legal-page .policy-date {
  margin-bottom: 28px;
  color: #cbd5e1;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 20px 0 8px;
  color: #7dd3fc;
}

.legal-page p {
  color: #e2e8f0;
}

.legal-page a {
  color: #93c5fd;
}

.legal-page a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .legal-page {
    margin-top: 72px;
    padding-top: 40px;
  }

  .legal-page h1 {
    font-size: 1.8rem;
  }
}
