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

:root {
  --bg: #070d1f;
  --panel: rgba(11, 26, 47, 0.8);
  --card: rgba(255, 255, 255, 0.06);
  --text: #eaf2ff;
  --muted: #bdd2f3;
  --primary: #31b3ff;
  --accent: #7f5cff;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(3, 8, 20, 0.45);
  --screen-gutter: 0.5rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(49, 179, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(127, 92, 255, 0.2),
      transparent 35%
    ),
    var(--bg);
  line-height: 1.6;
  padding-top: 4.5rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

img {
  width: 100%;
  display: block;
  border-radius: 1.1rem;
}

.container {
  width: min(1440px, calc(100% - (var(--screen-gutter) * 4)));
  margin: 0 auto;
  padding-inline: 0;
}

.section {
  padding: 3.5rem 0;
}

/* Scoped utility classes to tighten stacked section spacing without global side effects */
.section-pad-bottom-tight {
  padding-bottom: 1.25rem;
}

.section-pad-top-tight {
  padding-top: 1.25rem;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

/* Friendly subtitle under section headings (educational copy + hierarchy) */
.section-lead {
  max-width: 65ch;
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.section-lead--tight {
  margin-bottom: 0.35rem;
}

.section-head-text {
  flex: 1;
  min-width: min(100%, 280px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 12, 25, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - (var(--screen-gutter) * 4)));
  margin: 0 auto;
  padding-inline: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand img {
  width: 32px;
  border-radius: 6px;
}

.nav {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  opacity: 0.82;
}

.nav a:hover,
.nav a.is-active {
  color: #fff;
  opacity: 1;
}

.burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  min-height: min(100svh, 920px);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
}

.hero-bg {
  background-image:
    linear-gradient(rgba(4, 10, 20, 0.68), rgba(4, 10, 20, 0.74)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  width: min(1440px, calc(100% - (var(--screen-gutter) * 2)));
  margin: 0 auto;
  padding-inline: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 62ch;
  padding: 1.25rem;
}

.page-hero {
  width: 100%;
  min-height: min(62svh, 640px);
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(rgba(4, 10, 20, 0.42), rgba(4, 10, 20, 0.62)),
    var(--page-hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-content {
  width: min(1440px, calc(100% - (var(--screen-gutter) * 2)));
  margin: 0 auto;
  padding: 2rem 0 2.4rem;
}

.page-hero--home-style {
  align-items: center;
}

.page-hero--home-style .page-hero-content {
  width: min(1440px, calc(100% - (var(--screen-gutter) * 2)));
  margin: 0 auto;
  padding: 1.4rem 0;
}

.page-hero--home-style .page-hero-content > h1 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  max-width: 14ch;
}

.page-hero--home-style .page-hero-content > p {
  max-width: 62ch;
}

.page-hero > .hero-inner {
  justify-self: center;
  width: min(1440px, calc(100% - (var(--screen-gutter) * 2)));
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-inner .page-hero-content {
  width: auto;
  max-width: none;
  margin: 0;
}

.page-hero.page-hero--home-style .hero-inner .page-hero-content.page-hero-copy {
  padding: 1.4rem 1.25rem;
}

@media (min-width: 640px) and (max-width: 1535px) {
  .hero-copy {
    padding-left: 3rem;
  }

  .page-hero.page-hero--home-style .hero-inner .page-hero-content.page-hero-copy {
    padding-left: 3rem;
  }
}

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

.showcase-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.showcase-list li {
  margin-bottom: 0.5rem;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
}

.mini-card h3 i,
.card h3 i {
  color: var(--primary);
  margin-right: 0.45rem;
}

/* Related articles: current page card is subdued; siblings lift on hover */
.related-articles .mini-card.card--interactive {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.related-articles
  .mini-card.card--interactive:not(.related-article--current):hover {
  transform: translateY(-5px);
  border-color: rgba(49, 179, 255, 0.5);
  box-shadow: 0 20px 48px rgba(49, 179, 255, 0.14);
}

.related-articles .mini-card.related-article--current {
  opacity: 0.78;
  cursor: default;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.related-articles .mini-card.related-article--current:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.related-articles-lead {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
}

/* About page focused enhancements */
.about-intro-card {
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.2rem;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
}

.about-image-glow {
  position: relative;
}

.about-image-glow::before {
  content: "";
  position: absolute;
  inset: 8% 10% -6% 10%;
  background: radial-gradient(
    circle,
    rgba(49, 179, 255, 0.32),
    rgba(127, 92, 255, 0.08) 55%,
    transparent 72%
  );
  filter: blur(24px);
  z-index: 0;
}

.about-image-glow img {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(49, 179, 255, 0.28);
  box-shadow: 0 24px 70px rgba(49, 179, 255, 0.2);
}

.eyebrow {
  display: inline-block;
  border: 1px solid rgba(49, 179, 255, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  color: #d7ebff;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(49, 179, 255, 0.4);
  background: linear-gradient(
    120deg,
    rgba(49, 179, 255, 0.8),
    rgba(127, 92, 255, 0.8)
  );
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
}

.link-btn {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}

.services-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.filter-pill {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.filter-pill.is-active {
  background: rgba(10, 25, 52, 0.92);
  border-color: rgba(49, 179, 255, 0.82);
  box-shadow: 0 12px 30px rgba(49, 179, 255, 0.22);
  transform: translateY(-1px);
}

/* Stats: four in a row on large screens → two on tablet → one on phone */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

/* Stat cards: icon beside numbers + subtle hover motion */
.stat-card {
  padding: 1rem 1.1rem;
}

.stat-card__inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.stat-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: rgba(49, 179, 255, 0.18);
  border: 1px solid rgba(49, 179, 255, 0.35);
  color: var(--primary);
  font-size: 1.15rem;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.stat-card:hover .stat-card__icon,
.stat-card:focus-within .stat-card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(49, 179, 255, 0.28);
}

.stat-card__value {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-family: "Sora", sans-serif;
  color: #fff;
  line-height: 1.15;
}

.stat-card__label {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.stat-card--stagger.reveal {
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}

/* Department availability: up to 4 cards per row on large screens, then 2, then 1 */
.department-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.department-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.department-card:hover {
  transform: translateY(-3px);
  border-color: rgba(49, 179, 255, 0.4);
  box-shadow: 0 28px 56px rgba(2, 132, 199, 0.22);
}

.department-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 92, 255, 0.22);
  border: 1px solid rgba(127, 92, 255, 0.4);
  color: #c4b5ff;
  font-size: 1.25rem;
}

.department-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: #fff;
}

.department-card__meta {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.department-card__meta i {
  margin-right: 0.35rem;
  opacity: 0.85;
}

.department-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(49, 179, 255, 0.45);
  background: rgba(49, 179, 255, 0.12);
  color: #d2e9ff;
}

/* Featured service: full card is a link */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 1.2rem;
}

.card-link.ripple-btn {
  position: relative;
}

.card-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.card--interactive {
  display: block;
  height: 100%;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.card:hover.card--interactive,
.card:focus-within.card--interactive {
  transform: translateY(-6px);
  border-color: rgba(49, 179, 255, 0.55);
  box-shadow: 0 30px 70px rgba(49, 179, 255, 0.2);
}

.pricing-badges {
  margin-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.card-link:hover .card--interactive,
.card-link:focus-visible .card--interactive {
  transform: translateY(-6px);
  border-color: rgba(49, 179, 255, 0.55);
  box-shadow: 0 30px 70px rgba(49, 179, 255, 0.2);
}

/* Tab panels: icon bullets for scan-friendly lists */
.tab-panel ul.tab-panel-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.tab-panel-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.tab-panel-list li:last-child {
  margin-bottom: 0;
}

.tab-panel-list .fa-check-circle {
  color: #5ee9a0;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.stat-card,
.card,
.panel,
.sidebar,
.tab-panel,
.table-wrap {
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), var(--card));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stat-card,
.card,
.panel,
.tab-panel {
  padding: 1rem;
}

.card i {
  color: var(--primary);
  font-size: 1.4rem;
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.service-card-head h3 {
  margin: 0;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.blog-media {
  position: relative;
}

.blog-media .card-image {
  margin-bottom: 0.7rem;
}

.blog-visit {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(49, 179, 255, 0.55);
  background: rgba(9, 23, 46, 0.84);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.blog-visit i {
  font-size: 0.85rem;
}

.blog-visit:hover,
.blog-visit:focus-visible {
  transform: translateY(-2px) scale(1.04);
  background: rgba(49, 179, 255, 0.24);
  border-color: rgba(49, 179, 255, 0.88);
  box-shadow: 0 10px 26px rgba(49, 179, 255, 0.3);
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  border: 1px solid rgba(127, 92, 255, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.tab.is-active {
  background: rgba(49, 179, 255, 0.24);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.sidebar {
  padding: 1rem;
  position: sticky;
  top: 6rem;
  align-self: start;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar a {
  color: var(--text);
  text-decoration: none;
}

.department-menu-list li {
  margin-bottom: 0.35rem;
}

.department-menu-list a {
  display: inline-flex;
  padding: 0.2rem 0.35rem;
  border-radius: 0.45rem;
  transition: background 0.25s ease;
}

.department-menu-list a:hover {
  background: rgba(49, 179, 255, 0.12);
}

.dropdown {
  display: none;
  position: absolute;
  top: 3.2rem;
  right: 0;
  min-width: 210px;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: rgba(8, 17, 33, 0.95);
}

.dropdown.is-open {
  display: block;
}

.faq-item {
  margin-bottom: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-panel-gap {
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question-main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-question-badge {
  font-size: 0.7rem;
}

.faq-question-text {
  text-align: left;
}

.faq-toggle {
  color: #d7ebff;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding-inline: 0.9rem;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 120px;
  padding-bottom: 0.9rem;
}

.article-shell {
  max-width: none;
}

.article-shell--plain {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.article-points {
  margin: 0.6rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.article-points li {
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.article-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: #d7ebff;
  border: 1px solid rgba(49, 179, 255, 0.35);
  border-radius: 0.8rem;
  padding: 0.55rem 0.75rem;
  background: rgba(49, 179, 255, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  margin-top: 0.4rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.7rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-split {
  gap: 1.75rem;
  align-items: stretch;
}

.contact-split > * {
  height: 100%;
}

.contact-form-panel {
  height: 100%;
}

.contact-form-panel .eyebrow {
  margin-bottom: 0.65rem;
}

.contact-form-lead {
  margin-bottom: 1rem;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.contact-submit-btn i {
  font-size: 0.95rem;
  color: inherit;
}

.contact-aside-wrap {
  align-self: stretch;
  display: flex;
}

.contact-aside-glow {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 1.25rem;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(49, 179, 255, 0.45),
    rgba(127, 92, 255, 0.35),
    rgba(49, 179, 255, 0.2)
  );
  box-shadow:
    0 28px 64px rgba(49, 179, 255, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 48px rgba(127, 92, 255, 0.12);
}

.contact-aside-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.05rem;
  object-fit: cover;
}

.contact-support-section .section-head {
  margin-bottom: 1.25rem;
}

.contact-support-card .pricing-badges {
  margin-top: 0.15rem;
  margin-bottom: 0.5rem;
}

.site-footer {
  margin-top: 3rem;
  background: rgba(7, 13, 31, 0.92);
}

.footer-banner {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Title + paragraph sit on the photo (bottom-aligned); gradient keeps text readable */
.footer-banner__visual {
  display: flex;
  align-items: flex-end;
  min-height: min(42vw, 320px);
  background-image:
    linear-gradient(
      to top,
      rgba(5, 10, 21, 0.94) 0%,
      rgba(5, 10, 21, 0.55) 45%,
      rgba(5, 10, 21, 0.2) 100%
    ),
    url("https://images.unsplash.com/photo-1526256262350-7da7584cf5eb?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
}

.footer-banner__inner {
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer-banner__content {
  padding: 2rem 0 2.4rem;
  text-align: center;
}

.footer-banner__content h2 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-banner__content p {
  max-width: 66ch;
  margin: 0 auto;
  color: rgba(234, 242, 255, 0.88);
}

/* Border matches `.container` width (page layout), not full viewport */
.footer-grid {
  padding: 2rem var(--screen-gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 1024px) {
  :root {
    --screen-gutter: 1rem;
  }
}

.copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  text-align: center;
  padding: 1rem 0;
  margin: 0;
}

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

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

.ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.7s ease-out;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(12);
    opacity: 0;
  }
}

/* One wrapper per button so shine stays inside pill bounds — not full row width */
.cta-shine-wrap {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 999px;
}

.cta-shine-wrap > .btn {
  position: relative;
  z-index: 1;
}

.cta-shine-wrap::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -55%;
  width: 52%;
  height: 200%;
  transform: skewX(-12deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
  animation: cta-shine 4.5s cubic-bezier(0.35, 0, 0.15, 1) infinite;
  pointer-events: none;
}

.cta-shine-wrap--ghost::after {
  opacity: 0.55;
}

@keyframes cta-shine {
  to {
    transform: translateX(260%) skewX(-12deg);
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .footer-grid,
  .showcase-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .navbar-items {
    position: fixed;
    top: 4.5rem;
    left: auto;
    right: 0;
    width: 85%;
    height: calc(100dvh - 4.5rem);
    max-height: calc(100svh - 4.5rem);
    padding: 0 0 env(safe-area-inset-bottom, 0);
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 10, 21, 0.98);
    backdrop-filter: blur(12px);
    z-index: 45;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
  }

  .navbar-items.is-open {
    transform: translateX(0);
  }

  .nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1.25rem;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 1.05rem;
    opacity: 1;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(49, 179, 255, 0.12);
    color: #fff;
  }

  .burger {
    display: inline-block;
  }

  .hero,
  .split,
  .footer-grid,
  .stats-grid,
  .card-grid,
  .form-grid,
  .showcase-grid-3 {
    grid-template-columns: 1fr;
  }

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

  .services-filters {
    justify-content: flex-start;
  }
}
