@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --primary: #635bff;
  --primary-dark: #2a23f7;
  --secondary: #ff7b7b;
  --accent: #27d889;
  --dark: #0f172a;
  --midnight: #0b1020;
  --muted: #94a3b8;
  --body: #e2e8f0;
  --gradient: linear-gradient(120deg, #6c5ce7, #00c6ff);
  --card-gradient: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
  --shadow: 0 15px 45px rgba(15, 23, 42, 0.25);
  --header-height: 120px;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--midnight);
  color: #f8fafc;
  margin: 0;
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.page-wrapper {
  position: relative;
  overflow: hidden;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0 0h10v10H0zM10 10h10v10H10z'/%3E%3C/svg%3E");
  opacity: 0.7;
  mix-blend-mode: screen;
  z-index: 2;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 1rem 0;
}

.section-heading p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--gradient);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
  box-shadow: 0 15px 35px rgba(99, 92, 255, 0.35);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(99, 92, 255, 0.45);
}

.btn-header {
  background: linear-gradient(120deg, #f65a83, #7d7cff, #27d889);
  box-shadow: none;
  padding-right: 0.5rem;
  gap: 0.5rem;
}

.btn-header:hover {
  box-shadow: none;
}

.btn-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe26f, #ff5aac);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b1020;
  font-size: 0.95rem;
  animation: arrowPulse 2s infinite;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
  border: none;
  z-index: 20;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2.5rem);
  margin: 0 auto;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 16, 32, 0.75);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

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

.nav-right {
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.logo span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-center .nav-links {
  justify-content: center;
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease;
}

.icon-btn:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.search-wrap {
  position: relative;
}

.search-form {
  position: absolute;
  top: 120%;
  right: 0;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 16, 32, 0.95);
  display: flex;
  gap: 0.75rem;
  width: clamp(240px, 28vw, 360px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.search-wrap.is-open .search-form {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
}

.contact-toggle {
  flex-direction: column;
  gap: 5px;
}

.contact-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.contact-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 90vw);
  padding: 2.5rem;
  background: rgba(10, 12, 26, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -20px 0 50px rgba(5, 8, 20, 0.6);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 60;
}

.contact-panel.is-open {
  transform: translateX(0);
}

.contact-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.contact-panel ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact-panel ul li {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.contact-hours,
.contact-channels {
  margin-top: 1.2rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem;
}

.contact-channels ul {
  padding-left: 0;
}

.contact-channels ul li span {
  margin-right: 0.4rem;
}

body.panel-open {
  overflow: hidden;
}

.hero {
  padding: 11rem 0 5rem;
  background: radial-gradient(circle at top left, rgba(99, 92, 255, 0.35), transparent 50%), radial-gradient(circle at top right, rgba(39, 216, 137, 0.25), transparent 45%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.hero-card {
  position: relative;
  padding: 2.5rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(99, 92, 255, 0.6), rgba(15, 23, 42, 0.95));
  box-shadow: 0 30px 60px rgba(14, 20, 40, 0.6);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 123, 123, 0.35), transparent 50%);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(1.75rem, 4.5vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.tag {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-visual {
  position: relative;
  padding: 1.5rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-screen {
  width: 100%;
  height: 697px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.6);
  object-fit: cover;
}

.hero-float {
  position: absolute;
  padding: 1rem 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.6);
  animation: float 6s ease-in-out infinite;
}

.hero-float.one {
  top: 10%;
  right: -5%;
}

.hero-float.two {
  bottom: 8%;
  left: -5%;
  animation-delay: 0.6s;
}

.hero-float strong {
  display: block;
  font-size: 1.6rem;
}

.hero-bubble {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 92, 255, 0.4), rgba(99, 92, 255, 0));
  opacity: 0.6;
  animation: pulse 8s ease-in-out infinite;
}

.hero-bubble.one {
  top: -30px;
  left: 20%;
}

.hero-bubble.two {
  bottom: -30px;
  right: 20%;
  animation-delay: 1s;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.kpi {
  padding: 1.25rem;
  border-radius: 20px;
  background: var(--card-gradient);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.kpi h3 {
  font-size: 2rem;
  margin: 0;
}

.kpi p {
  color: var(--muted);
  margin: 0.6rem 0 0;
}

.ticker {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ticker span {
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.brands {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-track {
  display: flex;
  gap: 3rem;
  animation: marquee 18s linear infinite;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.3em;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0, rgba(255, 255, 255, 0.15), transparent 55%);
  pointer-events: none;
}

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

.card h3 {
  margin-top: 1rem;
  font-size: 1.45rem;
}

.card p {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: var(--accent);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}

.metric {
  flex: 1;
  min-width: 220px;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.metric h4 {
  font-size: 2rem;
  margin: 0;
}

.metric span {
  display: block;
  color: var(--muted);
  margin-top: 0.35rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.media-panel {
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(99, 92, 255, 0.2), rgba(11, 16, 32, 0.9));
  position: relative;
  overflow: hidden;
}

.media-panel img {
  border-radius: 24px;
  opacity: 0.9;
}

.process-image {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.signal-card {
  padding: 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.signal-card strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
}

.op-legend {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.op-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.op-legend span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(39, 216, 137, 0.6);
}

.media-panel .op-overlay {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  max-width: 220px;
}

.media-panel .tag-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.media-panel .tag-stack span {
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: var(--muted);
}

.solutions-outer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: radial-gradient(circle at top, rgba(6, 11, 29, 0.95), rgba(2, 5, 14, 1));
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.solutions-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1.5rem, 7vw, 6rem);
  margin: 0 auto;
}

.solutions-section .section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.solutions-slider {
  overflow: hidden;
  padding: 1rem 0;
}

.solutions-track {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}

.solutions-track::-webkit-scrollbar {
  height: 0;
}

.solutions-track::-webkit-scrollbar-track {
  background: transparent;
}

.solutions-track::-webkit-scrollbar-thumb {
  background: transparent;
}

.solution-card {
  min-width: 280px;
  flex: 0 0 280px;
  padding: 2rem 1.75rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  scroll-snap-align: start;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.solution-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(39, 216, 137, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.solution-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.solution-card p {
  color: var(--muted);
  margin: 0;
}

.solutions-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.solutions-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border 0.3s ease, transform 0.3s ease;
}

.solutions-nav button:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  padding: 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

.step strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.portfolio-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.portfolio-card,
.blog-card {
  border-radius: 28px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}
.portfolio-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
}

.chip {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(99, 92, 255, 0.2));
  color: #fff;
  font-size: 0.78rem;
  width: fit-content;
}

.portfolio-card h4,
.blog-card h4 {
  margin: 0;
}

.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-card p,
.blog-card p {
  color: var(--muted);
}

.cta {
  padding: 4rem;
  border-radius: 40px;
  background: radial-gradient(circle at left, rgba(255, 123, 123, 0.8), rgba(99, 92, 255, 0.9));
  box-shadow: var(--shadow);
  text-align: center;
}

.cta h3 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: 2.25rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(99, 92, 255, 0.15));
  position: relative;
  box-shadow: 0 20px 45px rgba(11, 13, 24, 0.5);
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 55%);
  opacity: 0.8;
}

.testimonial::after {
  content: "“";
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.12);
}

.testimonial > * {
  position: relative;
}

.testimonial strong {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.footer-nav a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border 0.3s ease, color 0.3s;
}

.socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.socials a:hover {
  border-color: var(--accent);
  color: #fff;
}

.copyright {
  margin-top: 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(99, 92, 255, 0.2), transparent 55%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

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

.content-card {
  padding: 2rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.leader-card {
  color: #0f172a;
}

.leader-card p {
  color: rgba(15, 23, 42, 0.8);
}

.leader-one {
  background: #dfe8ff;
}

.leader-two {
  background: #ffe7f3;
}

.leader-three {
  background: #e0fff2;
}

.leader-four {
  background: #fff0d6;
}

.leader-five {
  background: #e8ddff;
}

.leader-six {
  background: #dff7ff;
}

.leader-seven {
  background: #ffe4e1;
}

.leader-eight {
  background: #e5ffe0;
}

.timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  left: -1.7rem;
  top: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

form {
  display: grid;
  gap: 1rem;
}

.contact-form-card form {
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.contact-form-card label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-full textarea,
.form-full input {
  width: 100%;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-row .form-full {
  flex: 1 1 100%;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.form-checkbox input {
  width: auto;
}

.map-embed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 13, 24, 0.4);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.2rem 1.2rem 1.2rem 3.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.accordion-trigger::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 92, 255, 0.7), rgba(39, 216, 137, 0.7));
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.accordion-trigger.is-active {
  color: var(--accent);
}

.accordion-trigger.is-active::after {
  content: "–";
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  padding: 0 1.5rem;
}

.accordion-panel.is-open {
  max-height: 200px;
  padding: 0 1.5rem 1rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-family: inherit;
}

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

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.scroll-hint {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 90px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  animation: float 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

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

.table th,
.table td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  text-align: left;
}

.table th {
  background: rgba(255, 255, 255, 0.05);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-cloud a {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
}

.pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
}

.pagination a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

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

.media-stack {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.media-stack img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.media-stack img:last-child {
  position: absolute;
  width: 58%;
  right: -40px;
  bottom: -50px;
  opacity: 0.95;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.image-gallery figure {
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  position: relative;
  padding-bottom: 0.5rem;
}

.image-gallery figure .snapshot-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(10, 20, 40, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.image-gallery figcaption h4 {
  font-size: 1rem;
}

.image-gallery figcaption a.btn {
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.feature-row img {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.list-check li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.stat-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-board .stat {
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.stat-board .stat h4 {
  margin: 0;
  font-size: 2rem;
}

.quote-card {
  padding: 2.5rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 123, 123, 0.2), transparent 60%);
  pointer-events: none;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.logo-grid span {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.video-poster {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-poster img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.video-poster button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.case-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
  border-radius: 40px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.case-feature img {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.case-meta div {
  min-width: 120px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-row img {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 220px;
  object-fit: cover;
}

.map-card {
  padding: 2rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.map-card img {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.faq-card {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.detail-table {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

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

.detail-table th,
.detail-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.badge-list span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --header-height: 90px;
  }
  .nav-links {
    display: none;
  }

  header {
    position: sticky;
    top: 0;
    justify-content: stretch;
    pointer-events: auto;
  }

  header .nav {
    width: 100%;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
  }

  .nav-right {
    margin-left: auto;
  }

  .search-form {
    position: fixed;
    left: 1rem;
    right: 1rem;
    width: auto;
    top: 4.5rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .media-stack img:last-child {
    position: relative;
    bottom: auto;
    right: auto;
    width: 70%;
    margin-top: 1.5rem;
  }

  .cta {
    padding: 3rem 2rem;
  }

  .metrics {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 80px;
  }
  .section {
    padding: 3.5rem 0;
  }

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

  .feature-row,
  .case-feature {
    grid-template-columns: 1fr;
  }

  .scroll-hint {
    display: none;
  }

  .contact-panel {
    width: 100%;
  }
}
