:root {
  --bg: #f5f8fb;
  --panel: rgba(255, 255, 255, 0.75);
  --ink: #0f1a24;
  --muted: #5a6a7a;
  --accent: #4cbfe3;
  --accent-2: #7dd5ee;
  --accent-dark: #0b2a63;
  --glass: rgba(255, 255, 255, 0.6);
  --stroke: rgba(15, 26, 36, 0.08);
  --shadow: 0 24px 50px rgba(15, 26, 36, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Sora", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}

.nav {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 7vw;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
  z-index: 10;
  border-bottom: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 16px 32px rgba(15, 26, 36, 0.08);
}

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

.nav-center {
  justify-content: center;
  gap: 22px;
  font-size: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 26, 36, 0.12);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 18px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: #f5f8fb;
  color: var(--ink);
  padding: 22px 6vw;
  display: none;
  grid-template-rows: auto auto auto auto;
  gap: 12px;
  z-index: 9999;
  overflow: auto;
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu:not(.is-open) {
  display: none !important;
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 900px) {
  .mobile-menu.is-open {
    display: grid !important;
  }
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.mobile-close {
  border: none;
  background: rgba(15, 26, 36, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 16px;
}

.mobile-links {
  display: grid;
  gap: 8px;
  width: 100%;
}

.mobile-links > a {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 6px 0;
}

.mobile-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 6px;
}

.mobile-accordion {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: rgba(15, 26, 36, 0.04);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.mobile-sublist {
  display: grid;
  gap: 8px;
  margin: 6px 0 8px;
  padding-left: 12px;
  border-left: 2px solid rgba(15, 26, 36, 0.08);
}

.mobile-sublist[hidden] {
  display: none;
}

.mobile-sublist a {
  font-size: 0.98rem;
  color: var(--muted);
}

.mobile-social .socials {
  gap: 12px;
}

.mobile-cta {
  display: grid;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 6px 14px rgba(15, 26, 36, 0.18));
}

.nav-item {
  position: relative;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 26, 36, 0.12);
  border-radius: 16px;
  padding: 14px;
  display: none;
  min-width: 260px;
  box-shadow: 0 18px 36px rgba(15, 26, 36, 0.16);
  backdrop-filter: blur(16px);
  z-index: 20;
  pointer-events: auto;
  max-width: 86vw;
}

.submenu.mega {
  display: none;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px 24px;
}

.submenu-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 4px 0 8px;
}

.submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.submenu a:hover {
  background: rgba(76, 191, 227, 0.18);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  display: grid;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 16px;
}

.nav-center a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  padding: 6px 0;
}

.caret {
  font-size: 0.85rem;
  color: var(--muted);
  transform: translateY(1px);
}

.process-dark {
  margin: 80px 5vw;
  padding: 70px 6vw;
  border-radius: 36px;
  color: #f6f8fb;
  background:
    radial-gradient(circle at 20% 30%, rgba(103, 205, 231, 0.22), transparent 50%),
    radial-gradient(circle at 70% 40%, rgba(11, 42, 99, 0.25), transparent 55%),
    #0b1624;
  position: relative;
  overflow: hidden;
}

.process-dark::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 45%);
  opacity: 0.4;
  animation: floatGlow 14s ease-in-out infinite;
}

.process-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.process-head h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
}

.process-head h2 span {
  color: var(--accent);
}

.process-copy {
  color: rgba(246, 248, 251, 0.75);
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.process-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(18, 22, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 16px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.process-step {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.process-step strong {
  font-size: 2rem;
  color: var(--accent);
}

.process-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 96px;
  height: 96px;
  background: var(--accent);
  color: #041421;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 20px 40px rgba(76, 191, 227, 0.35);
}

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

.nav-center a:hover::after {
  width: 100%;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.cta-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cta-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  flex-direction: column;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 26, 36, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(15, 26, 36, 0.16);
  backdrop-filter: blur(16px);
  padding: 8px;
  z-index: 20;
}

.cta-dropdown a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.cta-dropdown a:hover {
  background: rgba(76, 191, 227, 0.18);
}

.cta-menu:hover .cta-dropdown,
.cta-menu:focus-within .cta-dropdown {
  display: flex;
}

.cta-menu.open .cta-dropdown {
  display: flex;
}

.cta-menu .cta-toggle {
  min-width: 190px;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(76, 191, 227, 0.45);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(76, 191, 227, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.is-hover {
  transform: translate(-50%, -50%) scale(1.4);
  border-color: rgba(76, 191, 227, 0.8);
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #041421;
  box-shadow: 0 15px 30px rgba(76, 191, 227, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.btn-ghost {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

main {
  position: relative;
  z-index: 1;
}

.hero-wrap {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 15%, #e7f5fb 0%, #f5f8fb 55%, #ffffff 100%);
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background:
    repeating-radial-gradient(circle at center,
      rgba(15, 26, 36, 0.05) 0px,
      rgba(15, 26, 36, 0.05) 2px,
      rgba(255, 255, 255, 0) 22px,
      rgba(255, 255, 255, 0) 44px);
  opacity: 0.2;
  z-index: 0;
  animation: ripple 12s linear infinite;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 15% 25%, rgba(103, 205, 231, 0.25), transparent 55%),
    radial-gradient(circle at 80% 55%, rgba(11, 42, 99, 0.15), transparent 48%),
    radial-gradient(circle at 60% 10%, rgba(154, 220, 240, 0.2), transparent 45%);
  filter: blur(30px);
  opacity: 0.8;
  animation: floatGlow 16s ease-in-out infinite;
  z-index: 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  padding: 70px 7vw 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 12px 30px rgba(15, 26, 36, 0.12);
}

.hero h1 span {
  color: var(--accent);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-rotate {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.hero-rotate-label {
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-rotate-text {
  position: relative;
  font-size: 1.1rem;
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 12px 24px rgba(15, 26, 36, 0.1);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-rotate-text.fade {
  opacity: 0;
  transform: translateY(6px);
}

.page-hero {
  padding: 90px 7vw 40px;
  max-width: 760px;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -40px -10%;
  background:
    radial-gradient(circle at 15% 20%, rgba(103, 205, 231, 0.2), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(11, 42, 99, 0.14), transparent 55%);
  filter: blur(30px);
  opacity: 0.6;
  z-index: -1;
}

.page-grid {
  padding: 40px 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.value-strip {
  padding: 10px 7vw 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.value-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 26, 36, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(15, 26, 36, 0.12);
}

.metric-row {
  padding: 0 7vw 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 26, 36, 0.08);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.metric h3 {
  font-size: 1.6rem;
}

.page-detail {
  padding: 40px 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.detail-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.detail-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.detail-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.muted {
  color: var(--muted);
  margin-top: 12px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.hero-stats h3 {
  font-size: 1.8rem;
}

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

.hero-visual {
  position: relative;
  min-height: 420px;
}

.orbital {
  position: absolute;
  inset: 20px 0 0 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 360px;
  height: 360px;
  animation: spin 18s linear infinite;
}

.orb {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
}

.orb:nth-child(1) { top: 20px; left: 50%; }
.orb:nth-child(2) { bottom: 40px; right: 60px; }
.orb:nth-child(3) { left: 40px; bottom: 120px; }

.card {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 280px;
}

.card-title {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.card-metric {
  font-size: 2.2rem;
  font-weight: 700;
}

.card-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), #2c7aa8);
  border-radius: 6px 6px 0 0;
  height: var(--h);
}

.floating {
  position: absolute;
  bottom: 60px;
  right: 40px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.floating.alt {
  bottom: 140px;
  right: 140px;
  animation-delay: 1.5s;
}

.logos {
  padding: 30px 7vw 70px;
  text-align: center;
  color: var(--muted);
}

.logos span {
  color: #3b4b5c;
}

.about-split {
  padding: 80px 7vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: start;
}

.about-left {
  position: sticky;
  top: 120px;
  align-self: start;
  max-width: 420px;
}

.about-left h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 14px;
}

.about-right {
  display: grid;
  gap: 24px;
}

.about-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.12);
  backdrop-filter: blur(16px);
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(76, 191, 227, 0.18);
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-left {
    position: static;
  }
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-top: 18px;
}

.services, .work, .process, .insights, .testimonials {
  padding: 70px 7vw;
}

.services-apple {
  padding: 70px 7vw;
}

.apple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 6px;
}

.apple-card {
  scroll-snap-align: center;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 20px 36px rgba(15, 26, 36, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  min-height: 320px;
}

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

.apple-card.is-active {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 48px rgba(15, 26, 36, 0.16);
}

.apple-chip {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(76, 191, 227, 0.18);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.apple-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(76, 191, 227, 0.18);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.apple-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 6px;
}

.apple-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 26, 36, 0.06);
  font-size: 0.8rem;
  color: var(--muted);
}

.section-head {
  max-width: 620px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}

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

.service-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 20px 40px rgba(15, 26, 36, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.service-detail {
  padding: 40px 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.service-grid {
  padding: 0 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-panel {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.12);
  backdrop-filter: blur(16px);
}

.service-gallery {
  padding: 0 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.glass-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 22px 40px rgba(15, 26, 36, 0.14);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 28px 48px rgba(15, 26, 36, 0.18);
}

.glass-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(76, 191, 227, 0.18);
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.stat-strip {
  padding: 0 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.12);
  backdrop-filter: blur(16px);
}

.stat-card h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.sparkline {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 64px;
  margin-top: 12px;
}

.sparkline span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--accent), #2f8fb9);
  height: var(--h);
}

.motion-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 12px 24px rgba(15, 26, 36, 0.12);
  font-weight: 600;
  animation: floatGlow 6s ease-in-out infinite;
}

.service-orbs {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.service-orbs span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent));
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.6);
  animation: orbFloat 3.5s ease-in-out infinite;
}

.service-orbs span:nth-child(2) { animation-delay: 0.6s; }
.service-orbs span:nth-child(3) { animation-delay: 1.2s; }

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

.service-metrics {
  padding: 0 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.metric-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.12);
}

.metric-card h4 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: end;
  height: 70px;
  margin-top: 12px;
}

.mini-chart span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--accent), #2f8fb9);
  height: var(--h);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 600;
  color: var(--accent);
}

.service-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.work {
  background: #0f1a24;
  color: #fdf7f2;
  border-radius: 48px;
  margin: 0 5vw;
}

.work .section-head p,
.work .section-head h2 {
  color: #fdf7f2;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.work-card {
  border: 1px solid rgba(253, 247, 242, 0.2);
  border-radius: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work .work-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.work-page {
  margin: 0 7vw 60px;
}

.work-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 247, 242, 0.7);
  margin-bottom: 12px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.step {
  background: var(--panel);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 26, 36, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.step span {
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

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

.insight-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 26, 36, 0.08);
  background: var(--glass);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.testimonial-grid blockquote {
  padding: 26px;
  background: var(--panel);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.testimonial-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  margin: 70px 7vw;
  padding: 40px 50px;
  border-radius: 34px;
  background: linear-gradient(120deg, #0b2a63, #1a3550);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.footer-new {
  margin-top: 70px;
  padding: 70px 7vw 40px;
  background: #0b0f14;
  color: #f2f5f9;
}

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

.footer-brand p {
  color: rgba(242, 245, 249, 0.75);
  margin: 16px 0 18px;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-new h4 {
  margin-bottom: 12px;
}

.footer-new a,
.footer-new p {
  color: rgba(242, 245, 249, 0.75);
  margin-bottom: 8px;
  display: block;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.footer-form input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(242, 245, 249, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.footer-form button {
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #041421;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(242, 245, 249, 0.6);
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contact-grid {
  padding: 40px 7vw 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 20px 40px rgba(15, 26, 36, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.contact-form h3 {
  margin-bottom: 4px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 26, 36, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.contact-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.team-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #141311;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  margin: 0 auto 16px;
}

.pricing-grid {
  padding: 40px 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pricing-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.12);
  display: grid;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 700;
}

.pricing-card.featured {
  background: linear-gradient(140deg, #0b2a63, #121820);
  color: #fff;
}

.pricing-card.featured .detail-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.blog-grid {
  padding: 40px 7vw 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.blog-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 26, 36, 0.08);
  box-shadow: 0 18px 30px rgba(15, 26, 36, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(16px);
}

.service-card:hover,
.work-card:hover,
.step:hover,
.insight-card:hover,
.testimonial-grid blockquote:hover,
.contact-form:hover,
.contact-card:hover,
.team-card:hover,
.pricing-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.45);
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

.blog-card .tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.05); opacity: 0.75; }
  100% { transform: scale(1); opacity: 0.55; }
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

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

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 6vw;
  }

  .nav-center,
  .nav-right .socials,
  .cta-menu {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .hero-visual {
    min-height: 320px;
  }

  .orbital {
    width: 280px;
    height: 280px;
  }

  .hero-card {
    position: relative;
    width: auto;
    top: 0;
    left: 0;
  }

  .floating,
  .floating.alt {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 18px 6vw;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .logo-img {
    width: 120px;
  }

  .nav-right {
    gap: 8px;
  }

  .cta {
    padding: 30px;
  }

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

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