:root {
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --cyan: #06b6d4;
  --purple: #7c3aed;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --bg: #f7f9fc;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius: 28px;
  --container: min(1320px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(6, 182, 212, 0.18), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #ffffff 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: white;
  background: var(--blue);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--purple));
  animation: pulse 1.1s ease-in-out infinite alternate;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--purple));
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(37, 99, 235, 0.45);
  transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease;
}

@media (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    opacity: 1;
  }
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: 20px;
}

.navbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 70px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(24px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled .navbar {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 45px rgba(15, 23, 42, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand strong {
  color: var(--blue);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.3);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
}

.nav-panel a {
  padding: 10px 15px;
  color: #334155;
  font-size: 15px;
  font-weight: 650;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-panel a:hover,
.nav-panel a.active {
  color: var(--blue);
  background: white;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.btn-soft {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.btn-light {
  color: var(--blue);
  background: white;
}

.btn-dark {
  color: white;
  background: rgba(15, 23, 42, 0.9);
}

.btn-large {
  min-height: 56px;
  padding-inline: 26px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 99px;
  transition: transform 0.2s ease;
}

.menu-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 64px;
}

.page-hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding-top: 152px;
  padding-bottom: 80px;
  overflow: hidden;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.page-hero h1 {
  max-width: 920px;
}

.page-visual {
  position: relative;
  min-height: 470px;
}

.vision-card,
.service-orbit,
.portfolio-stack,
.map-art {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}

.vision-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px;
  border-radius: 38px;
  transform: rotateX(8deg) rotateY(-8deg);
}

.vision-card span {
  display: grid;
  place-items: center;
  min-height: 170px;
  color: white;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.vision-card span:nth-child(2) {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.vision-card span:nth-child(3) {
  background: linear-gradient(135deg, #14b8a6, var(--blue));
}

.vision-card span:nth-child(4) {
  background: linear-gradient(135deg, var(--purple), #0f172a);
}

.service-orbit {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.service-orbit::before {
  inset: 54px;
}

.service-orbit::after {
  inset: 118px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(6, 182, 212, 0.14));
}

.service-orbit span {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  color: white;
  font-weight: 900;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.26);
}

.service-orbit span:first-child {
  top: 22px;
}

.service-orbit span:nth-child(2) {
  right: 22px;
}

.service-orbit span:nth-child(3) {
  bottom: 22px;
}

.service-orbit span:nth-child(4) {
  left: 22px;
}

.service-orbit span:nth-child(5) {
  background: linear-gradient(135deg, var(--purple), #0f172a);
}

.portfolio-stack {
  position: absolute;
  inset: 40px 0 0 36px;
  border-radius: 38px;
}

.portfolio-stack span {
  position: absolute;
  display: block;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.portfolio-stack span:first-child {
  inset: 34px 92px 92px 20px;
  background: linear-gradient(135deg, #0ea5e9, var(--blue));
}

.portfolio-stack span:nth-child(2) {
  inset: 124px 36px 38px 126px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.portfolio-stack span:nth-child(3) {
  inset: 248px 190px 28px 42px;
  background: linear-gradient(135deg, #f97316, #ec4899);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.24;
  animation: float 8s ease-in-out infinite;
}

.orb-one {
  top: 18%;
  right: 8%;
  background: radial-gradient(circle, var(--cyan), transparent 68%);
}

.orb-two {
  bottom: 10%;
  left: -6%;
  background: radial-gradient(circle, var(--purple), transparent 68%);
  animation-delay: -3s;
}

.mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 70%, transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 66px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.72;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 34px;
}

.hero-proof div,
.stat-grid div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.hero-proof strong,
.stat-grid strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.hero-proof span,
.stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  perspective: 1400px;
}

.dashboard-card {
  position: absolute;
  inset: 42px 0 auto auto;
  width: min(100%, 560px);
  min-height: 510px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
  transform: rotateX(8deg) rotateY(-10deg);
  transition: transform 0.2s ease-out;
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e2e8f0;
}

.window-bar span:first-child {
  background: #fb7185;
}

.window-bar span:nth-child(2) {
  background: #facc15;
}

.window-bar span:last-child {
  background: #34d399;
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.dashboard-head p,
.dashboard-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-head h2 {
  margin: 8px 0 0;
  font-size: 32px;
}

.live-pill {
  padding: 8px 13px;
  color: #0369a1;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
}

.chart {
  height: 210px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.05));
}

.chart i {
  display: block;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
  animation: bars 2.4s ease-in-out infinite alternate;
}

.chart i:nth-child(even) {
  animation-delay: -0.8s;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.dashboard-grid div {
  padding: 22px;
  border-radius: 24px;
  background: white;
}

.dashboard-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 30px;
}

.floating-tag {
  position: absolute;
  padding: 14px 18px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(20px);
  animation: float 5.2s ease-in-out infinite;
}

.tag-one {
  top: 30px;
  left: 20px;
}

.tag-two {
  top: 205px;
  right: 6px;
  animation-delay: -1s;
}

.tag-three {
  bottom: 112px;
  left: 6px;
  animation-delay: -2s;
}

.tag-four {
  bottom: 34px;
  right: 60px;
  animation-delay: -3s;
}

.logo-strip {
  overflow: hidden;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.logo-track span {
  min-width: 150px;
  padding: 16px 24px;
  color: #94a3b8;
  text-align: center;
  font-weight: 900;
  border-radius: 999px;
  background: white;
  filter: grayscale(1);
  transition: color 0.2s ease, filter 0.2s ease;
}

.logo-track span:hover {
  color: var(--blue);
  filter: grayscale(0);
}

.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}

.story-grid,
.split-panel,
.map-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.story-panel,
.split-panel,
.map-panel,
.price-card,
.case-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: var(--glass);
  box-shadow: 0 18px 58px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px);
}

.story-panel {
  padding: 36px;
  border-radius: 30px;
}

.story-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.twin-grid,
.pricing-grid,
.case-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: #334155;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-weight: 900;
}

.tech-grid.compact {
  justify-content: flex-end;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06);
}

.detail-row h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.detail-row p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.price-card,
.case-card {
  padding: 30px;
  border-radius: 30px;
}

.price-card.featured {
  color: white;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--blue), var(--cyan) 56%, var(--purple));
  transform: translateY(-12px);
}

.price-card span,
.case-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 13px;
  color: var(--blue);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.featured span {
  color: white;
  background: rgba(255, 255, 255, 0.18);
}

.price-card h3,
.case-card h3 {
  font-size: 27px;
}

.price-card p,
.case-card p,
.map-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--cyan);
  font-weight: 900;
}

.price-card.featured li::before {
  color: white;
}

.case-card strong {
  display: block;
  margin-top: 28px;
  color: var(--blue);
  font-size: 30px;
}

.split-panel,
.map-panel {
  padding: 34px;
  border-radius: 34px;
}

.map-art {
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.22), transparent 14rem),
    white;
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.map-art span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
  font-weight: 900;
}

.contact-hero {
  min-height: auto;
}

.image-panel {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  background:
    linear-gradient(140deg, rgba(37, 99, 235, 0.16), transparent 44%),
    linear-gradient(320deg, rgba(6, 182, 212, 0.15), transparent 46%),
    #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 38px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.studio-card,
.experience-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(24px);
}

.studio-card {
  top: 72px;
  left: 44px;
  right: 44px;
  padding: 34px;
  border-radius: 34px;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
}

.studio-card h2 {
  max-width: 440px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}

.studio-card p,
.section-copy p,
.section-heading p,
.service-card p,
.metric-card p,
.step p,
.work-info span,
.testimonial p,
.accordion p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.experience-card {
  right: 34px;
  bottom: 34px;
  width: 210px;
  padding: 26px;
  border-radius: 28px;
}

.experience-card strong {
  display: block;
  color: var(--blue);
  font-size: 54px;
  line-height: 1;
}

.experience-card span {
  display: block;
  margin-top: 10px;
  color: #334155;
  font-weight: 800;
  line-height: 1.35;
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.section-copy p {
  max-width: 680px;
  font-size: 18px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.check-grid span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  font-weight: 800;
}

.check-grid span::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--cyan);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 48px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading.split h2 {
  max-width: 720px;
}

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

.service-card,
.metric-card,
.step,
.testimonial,
.contact-form,
.accordion details {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: var(--glass);
  box-shadow: 0 18px 58px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px);
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 160px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.18), rgba(124, 58, 237, 0.18));
  filter: blur(28px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(37, 99, 235, 0.15);
}

.service-card:hover::after {
  opacity: 1;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  color: white;
  font-weight: 900;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.service-card h3,
.metric-card h3,
.step h3,
.work-info h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

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

.metric-card {
  padding: 30px;
  border-radius: 30px;
}

.metric-card strong {
  display: block;
  margin-bottom: 40px;
  color: rgba(37, 99, 235, 0.24);
  font-size: 72px;
  line-height: 1;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--purple));
}

.step {
  position: relative;
  padding: 24px;
  border-radius: 26px;
}

.step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 42px;
  color: white;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  background: var(--blue);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filters button {
  min-height: 40px;
  padding: 0 15px;
  color: #475569;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-weight: 800;
}

.filters button.active,
.filters button:hover {
  color: white;
  background: var(--blue);
}

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

.work-card {
  position: relative;
  min-height: 390px;
  border-radius: 34px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: var(--shadow);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.work-card.tall {
  min-height: 500px;
}

.work-card.hidden {
  display: none;
}

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

.work-card:hover .work-art {
  transform: scale(1.06);
}

.work-art {
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}

.work-art::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 28px 28px;
}

.travel-art {
  background: linear-gradient(140deg, #0ea5e9, #2563eb 48%, #7c3aed);
}

.hotel-art {
  background: linear-gradient(140deg, #14b8a6, #2563eb 58%, #111827);
}

.health-art {
  background: linear-gradient(140deg, #22c55e, #06b6d4 48%, #2563eb);
}

.shop-art {
  background: linear-gradient(140deg, #f97316, #ec4899 42%, #2563eb);
}

.school-art {
  background: linear-gradient(140deg, #facc15, #06b6d4 48%, #2563eb);
}

.corp-art {
  background: linear-gradient(140deg, #64748b, #2563eb 48%, #020617);
}

.work-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.36);
  backdrop-filter: blur(20px);
}

.work-info span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.work-info h3 {
  margin: 8px 0 0;
}

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

.stat-grid div {
  text-align: center;
}

.stat-grid strong {
  color: var(--blue);
  font-size: clamp(44px, 6vw, 74px);
}

.testimonial-shell {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: grid;
}

.testimonial {
  grid-area: 1 / 1;
  min-height: 320px;
  display: none;
  padding: 44px;
  border-radius: 34px;
}

.testimonial.active {
  display: block;
  animation: softIn 0.35s ease;
}

.stars {
  color: #f59e0b;
  font-size: 20px;
}

.testimonial p {
  margin: 24px 0 32px;
  color: #334155;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.person span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.person small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.slider-btn.prev {
  left: -24px;
}

.slider-btn.next {
  right: -24px;
}

.cta-band {
  padding: clamp(44px, 8vw, 82px);
  color: white;
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.32), transparent 24rem),
    linear-gradient(135deg, var(--blue), var(--cyan) 56%, var(--purple));
  box-shadow: 0 34px 90px rgba(37, 99, 235, 0.28);
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band h2 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
}

.cta-band div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 22px 24px;
  border-radius: 22px;
}

.accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 900;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
}

.accordion details[open] summary::after {
  content: "\2212";
}

.accordion p {
  margin: 16px 0 0;
}

.contact-cards {
  display: grid;
  gap: 12px;
  max-width: 460px;
  margin-top: 30px;
}

.contact-cards a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  color: var(--muted);
  font-weight: 800;
}

.contact-cards strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 32px;
}

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

.contact-form span {
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.footer {
  padding: 60px 0 28px;
  background: #07111f;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}

.footer .brand strong {
  color: var(--cyan);
}

.footer p {
  max-width: 360px;
  margin-top: 18px;
  color: #94a3b8;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 15px;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: #cbd5e1;
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  min-height: 48px;
  padding: 0 14px;
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter button {
  width: 48px;
  height: 48px;
  color: white;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  to {
    transform: scale(1.08);
  }
}

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

@keyframes bars {
  to {
    transform: scaleY(0.86);
  }
}

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

@keyframes softIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .nav-actions {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .contact-grid,
  .faq-grid,
  .story-grid,
  .split-panel,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .page-visual {
    min-height: 430px;
  }

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

  .dashboard-card {
    left: 0;
    margin: 0 auto;
  }

  .service-grid,
  .why-grid,
  .pricing-grid,
  .case-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 1320px);
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
    padding-inline: 12px;
  }

  .navbar {
    min-height: 64px;
    border-radius: 26px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .menu-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    min-height: calc(100svh - 28px);
    padding-top: 108px;
    padding-bottom: 18px;
    overflow: hidden;
  }

  .page-hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 52px;
  }

  .page-hero-grid {
    gap: 28px;
  }

  .page-visual {
    min-height: 300px;
  }

  .vision-card {
    min-height: auto;
    padding: 18px;
    border-radius: 28px;
    transform: none;
  }

  .vision-card span {
    min-height: 112px;
    border-radius: 22px;
    font-size: 22px;
  }

  .service-orbit {
    position: relative;
    inset: auto;
    min-height: 300px;
  }

  .service-orbit span {
    width: 76px;
    height: 76px;
    border-radius: 24px;
  }

  .portfolio-stack {
    inset: 0;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cta-band div {
    align-items: stretch;
    flex-direction: column;
  }

  .stat-grid,
  .work-grid,
  .pricing-grid,
  .case-grid,
  .contact-info-grid,
  .twin-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-proof div {
    padding: 14px 10px;
  }

  .hero-proof strong {
    font-size: 24px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .hero-visual {
    position: absolute;
    right: -250px;
    bottom: -230px;
    z-index: 1;
    width: 520px;
    min-height: 380px;
    opacity: 0.3;
    pointer-events: none;
  }

  .dashboard-card {
    width: 420px;
    min-height: 360px;
    transform: none;
  }

  .dashboard-head {
    display: none;
  }

  .dashboard-grid {
    display: none;
  }

  .chart {
    height: 150px;
    margin-top: 56px;
  }

  .floating-tag {
    display: none;
  }

  .image-panel {
    min-height: 500px;
  }

  .studio-card {
    inset: 28px 20px auto;
  }

  .experience-card {
    right: 20px;
    bottom: 20px;
  }

  .check-grid,
  .service-grid,
  .why-grid,
  .timeline,
  .detail-row {
    grid-template-columns: 1fr;
  }

  .detail-row,
  .story-panel,
  .split-panel,
  .map-panel,
  .price-card,
  .case-card {
    padding: 24px;
    border-radius: 24px;
  }

  .price-card.featured {
    transform: none;
  }

  .tech-grid.compact {
    justify-content: flex-start;
  }

  .section-heading.split {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    justify-content: start;
  }

  .work-card {
    min-height: 340px;
  }

  .work-card.tall {
    min-height: 380px;
  }

  .slider-btn {
    position: static;
    margin-top: 16px;
    transform: none;
  }

  .testimonial-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .testimonial-track {
    grid-column: 1 / -1;
  }

  .testimonial {
    min-height: auto;
    padding: 28px;
  }

  .testimonial p {
    font-size: 22px;
  }

  .prev {
    justify-self: end;
  }

  .next {
    justify-self: start;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-proof div,
  .stat-grid div,
  .service-card,
  .metric-card,
  .contact-form {
    border-radius: 22px;
  }

  .dashboard-card {
    padding: 16px;
    border-radius: 28px;
  }

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

  .contact-cards a {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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