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

:root {
  --bg: #050b14;
  --bg-deep: #07111f;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: rgba(8, 17, 31, 0.72);
  --text: #13233d;
  --text-strong: #0f1c32;
  --text-muted: #60708b;
  --line: rgba(180, 199, 223, 0.38);
  --primary: #1ea7ea;
  --primary-deep: #0f79bd;
  --secondary: #89e5ff;
  --warm: #ffbb7a;
  --white: #ffffff;
  --success: #31c589;
  --danger: #db5870;
  --shadow-sm: 0 12px 30px rgba(9, 18, 32, 0.08);
  --shadow-md: 0 22px 46px rgba(9, 18, 32, 0.12);
  --shadow-lg: 0 34px 84px rgba(6, 13, 24, 0.18);
  --shadow-xl: 0 52px 120px rgba(5, 12, 23, 0.22);
  --container: 1280px;
  --transition-fast: 0.24s ease;
  --transition: 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 10%, rgba(30, 167, 234, 0.14), transparent 18%),
    radial-gradient(circle at 86% 12%, rgba(255, 187, 122, 0.14), transparent 20%),
    linear-gradient(180deg, #f7fbff 0%, #edf3f9 44%, #f6f9fd 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(rgba(13, 32, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 32, 58, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
}

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

body.page-is-leaving {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(5px);
}

main {
  position: relative;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--warm), var(--secondary), var(--primary));
  box-shadow: 0 0 24px rgba(30, 167, 234, 0.36);
  transition: width 120ms linear;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 16px 0;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), backdrop-filter var(--transition-fast);
}

.topbar.is-scrolled {
  background: rgba(244, 249, 255, 0.72);
  box-shadow: 0 14px 34px rgba(8, 18, 32, 0.06);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  --topbar-glow-x: 50%;
  --topbar-glow-y: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.06), rgba(255, 187, 122, 0.05));
  box-shadow: 0 18px 44px rgba(9, 18, 32, 0.08);
  backdrop-filter: blur(18px);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.topbar-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--topbar-glow-x) var(--topbar-glow-y), rgba(30, 167, 234, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.topbar-inner::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  padding: 1px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0.45;
  pointer-events: none;
}

.topbar-inner:hover {
  transform: translateY(-1px);
  border-color: rgba(190, 214, 241, 0.8);
  box-shadow: 0 22px 56px rgba(9, 18, 32, 0.12);
}

.logo {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-strong);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 7px;
  border-radius: 999px;
  background: rgba(10, 25, 44, 0.03);
  border: 1px solid rgba(189, 208, 231, 0.45);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #203251;
  transition: color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 0;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(30, 167, 234, 0.16), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.12), rgba(255, 187, 122, 0.08));
  box-shadow: 0 12px 24px rgba(13, 28, 48, 0.08);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: -1;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: calc(100% - 24px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--warm));
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.nav a:hover {
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav a[aria-current="page"] {
  color: #0e1d33;
  box-shadow: 0 14px 26px rgba(12, 27, 45, 0.08);
}

.nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scale(1);
  background:
    linear-gradient(135deg, rgba(30, 167, 234, 0.18), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.16), rgba(255, 187, 122, 0.1));
}

.nav a[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

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

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 18px 34px rgba(30, 167, 234, 0.26);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.btn-nav,
.btn-ghost {
  color: var(--text-strong);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.82)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.08), rgba(255, 187, 122, 0.05));
  border-color: rgba(188, 205, 226, 0.68);
  box-shadow: 0 12px 28px rgba(10, 22, 38, 0.08);
}

.btn-nav::before,
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0) 84%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  z-index: -1;
}

.btn-nav:hover,
.btn-ghost:hover {
  border-color: rgba(151, 189, 228, 0.92);
  box-shadow: 0 18px 32px rgba(10, 22, 38, 0.12);
}

.btn-nav:hover::before,
.btn-ghost:hover::before {
  transform: translateX(120%);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  padding: 30px 0 110px;
  background: linear-gradient(180deg, #06101d 0%, #0a1a2b 38%, #0b2138 100%);
}

.hero-video-shell,
.hero-backdrop,
.hero-grid-lines,
.hero-routes,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video-shell {
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.04) contrast(1.08) brightness(0.52);
}

.hero-backdrop {
  background:
    radial-gradient(circle at 20% 16%, rgba(30, 167, 234, 0.16), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 187, 122, 0.22), transparent 24%),
    linear-gradient(94deg, rgba(4, 9, 18, 0.88) 0%, rgba(4, 9, 18, 0.44) 38%, rgba(4, 9, 18, 0.82) 100%);
}

.hero-grid-lines {
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 96%);
  animation: gridDrift 18s linear infinite;
}

.hero-routes {
  opacity: 0.36;
  background:
    radial-gradient(circle at 18% 54%, rgba(137, 229, 255, 0.32), transparent 1.4%),
    radial-gradient(circle at 44% 36%, rgba(137, 229, 255, 0.3), transparent 1.4%),
    radial-gradient(circle at 66% 52%, rgba(137, 229, 255, 0.28), transparent 1.2%),
    radial-gradient(circle at 82% 34%, rgba(255, 187, 122, 0.28), transparent 1.2%),
    linear-gradient(118deg, transparent 0 22%, rgba(137, 229, 255, 0.12) 22% 22.4%, transparent 22.4% 100%),
    linear-gradient(144deg, transparent 0 46%, rgba(137, 229, 255, 0.09) 46% 46.35%, transparent 46.35% 100%),
    linear-gradient(98deg, transparent 0 63%, rgba(255, 187, 122, 0.11) 63% 63.3%, transparent 63.3% 100%);
}

.hero-glow {
  filter: blur(18px);
  opacity: 0.8;
}

.hero-glow-a {
  inset: auto auto 10% -2%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 229, 255, 0.22), rgba(137, 229, 255, 0));
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-glow-b {
  inset: 8% -4% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 187, 122, 0.24), rgba(255, 187, 122, 0));
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0) 0%, rgba(244, 248, 252, 0.12) 46%, rgba(244, 248, 252, 0.58) 74%, rgba(244, 248, 252, 0.9) 90%, #f4f8fc 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 500px);
  gap: 40px;
  align-items: start;
}

.hero-copy {
  padding-top: 72px;
}

.eyebrow-pill,
.section-kicker,
.card-tag,
.signal-label,
.scene-kicker,
.service-meta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-pill {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 11ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 60ch;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-signals,
.overview-grid,
.services-grid,
.feature-stack,
.process-timeline,
.stats-grid,
.testimonial-stack,
.trust-badges {
  position: relative;
  z-index: 1;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.signal-card,
.glass-card,
.service-card,
.feature-card,
.process-step,
.stat-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(220, 231, 244, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 255, 0.9)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.04), rgba(255, 187, 122, 0.04));
  box-shadow: var(--shadow-md);
}

.signal-card {
  min-height: 170px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(137, 229, 255, 0.1), rgba(255, 187, 122, 0.07));
  box-shadow: 0 20px 42px rgba(3, 9, 18, 0.22);
}

.signal-card::before,
.glass-card::before,
.service-card::before,
.feature-card::before,
.process-step::before,
.stat-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x, 78%) var(--glow-y, 18%), rgba(137, 229, 255, 0.22), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.signal-card:hover::before,
.glass-card:hover::before,
.service-card:hover::before,
.feature-card:hover::before,
.process-step:hover::before,
.stat-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.signal-label {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.signal-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.signal-card p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-visual {
  position: relative;
  padding-top: 72px;
}

.hero-scene,
.hero-form-card,
.section-shell,
.contact-band {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.hero-scene {
  min-height: 430px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(137, 229, 255, 0.08), rgba(255, 187, 122, 0.06));
  box-shadow: 0 40px 100px rgba(4, 10, 20, 0.28);
  backdrop-filter: blur(16px);
}

.hero-scene-core {
  position: relative;
  min-height: 394px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 26% 22%, rgba(137, 229, 255, 0.12), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 187, 122, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(5, 12, 23, 0.72), rgba(8, 18, 32, 0.92));
}

.scene-hud {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 3;
  width: min(100% - 40px, 380px);
  text-align: center;
  transform: translateX(-50%);
}

.scene-hud strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
}

.scene-hud p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.scene-kicker,
.section-kicker,
.card-tag,
.service-meta {
  margin-bottom: 12px;
  color: var(--primary-deep);
  background: rgba(30, 167, 234, 0.1);
}

.glass-card .card-tag {
  color: #053458;
  background: linear-gradient(135deg, rgba(22, 129, 197, 0.24), rgba(139, 205, 244, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 18px rgba(8, 52, 88, 0.1);
}

.globe-stage {
  position: absolute;
  inset: 126px 24px 82px;
  z-index: 2;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform: translateY(-20px);
}

.globe-halo {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 229, 255, 0.2), rgba(137, 229, 255, 0));
  filter: blur(22px);
}

.globe-shadow {
  position: absolute;
  bottom: 8px;
  width: 220px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
  filter: blur(10px);
}

.globe {
  position: relative;
  width: 236px;
  height: 236px;
  transform-style: preserve-3d;
  animation: globeFloat 7s ease-in-out infinite;
}

.globe-sphere {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.16) 24%, rgba(137, 229, 255, 0.2) 42%, rgba(20, 62, 110, 0.96) 100%),
    linear-gradient(180deg, rgba(100, 194, 255, 0.3), rgba(9, 29, 56, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset -18px -28px 44px rgba(1, 8, 18, 0.34),
    inset 18px 18px 28px rgba(255, 255, 255, 0.08),
    0 26px 50px rgba(2, 8, 18, 0.26);
  transform-style: preserve-3d;
}

.globe-sphere::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 42%, rgba(0, 0, 0, 0.16) 100%);
  animation: globeSheen 6.4s ease-in-out infinite alternate;
}

.globe-sphere::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.globe-surface {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: globeAxisSpin 18s linear infinite;
}

.globe-lat,
.globe-meridian,
.globe-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(137, 229, 255, 0.22);
}

.globe-lat-a { inset: 24% 8%; transform: rotateX(76deg); }
.globe-lat-b { inset: 36% 14%; transform: rotateX(78deg); opacity: 0.7; }
.globe-lat-c { inset: 48% 20%; transform: rotateX(80deg); opacity: 0.45; }

.globe-meridian-a { inset: 6%; transform: rotateY(20deg); }
.globe-meridian-b { inset: 6%; transform: rotateY(72deg); opacity: 0.7; }
.globe-meridian-c { inset: 6%; transform: rotateY(124deg); opacity: 0.45; }

.continent {
  position: absolute;
  display: block;
  border-radius: 42% 58% 52% 48% / 40% 42% 58% 60%;
  background: linear-gradient(135deg, rgba(163, 239, 198, 0.88), rgba(58, 173, 124, 0.72));
  filter: drop-shadow(0 0 10px rgba(83, 212, 149, 0.16));
}

.continent-a { top: 54px; left: 54px; width: 42px; height: 24px; transform: rotate(-12deg); }
.continent-b { top: 82px; left: 116px; width: 34px; height: 22px; transform: rotate(18deg); }
.continent-c { top: 132px; left: 78px; width: 52px; height: 26px; transform: rotate(-8deg); }
.continent-d { top: 122px; left: 132px; width: 24px; height: 16px; transform: rotate(22deg); }

.globe-core-ring-a {
  inset: -10px;
  border-color: rgba(137, 229, 255, 0.14);
  transform: rotateX(72deg);
  animation: ringSpin 12s linear infinite;
}

.globe-core-ring-b {
  inset: 8px -18px;
  border-color: rgba(255, 187, 122, 0.16);
  transform: rotateY(74deg);
  animation: ringSpin 16s linear infinite reverse;
}

.globe-edge-route {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform-origin: center;
  opacity: 0.92;
  z-index: 3;
}

.globe-edge-route-a {
  width: 262px;
  height: 106px;
  margin: -53px 0 0 -131px;
  transform: rotate(8deg);
}

.globe-edge-route-b {
  width: 246px;
  height: 162px;
  margin: -81px 0 0 -123px;
  border-color: rgba(137, 229, 255, 0.16);
  transform: rotate(-34deg);
}

.globe-edge-route-c {
  width: 208px;
  height: 252px;
  margin: -126px 0 0 -104px;
  border-color: rgba(255, 187, 122, 0.16);
  transform: rotate(22deg);
}

.edge-truck {
  position: absolute;
  inset: -1px;
  animation: truckTravel 10s linear infinite;
}

.edge-truck::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 30px;
  height: 12px;
  margin-top: -6px;
  border-radius: 4px 3px 3px 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(145, 223, 255, 0.9));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 20px rgba(137, 229, 255, 0.28),
    0 4px 10px rgba(5, 11, 20, 0.22);
}

.edge-truck::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 22px;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, rgba(137, 229, 255, 0), rgba(137, 229, 255, 0.72));
  filter: blur(0.4px);
}

.edge-truck-a {
  animation-duration: 8.4s;
}

.edge-truck-b {
  animation-duration: 11.2s;
  animation-direction: reverse;
  animation-delay: -1.8s;
}

.edge-truck-c {
  animation-duration: 9.4s;
  animation-delay: -3.2s;
}

.scene-footer-note {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.scene-footer-note i {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(137, 229, 255, 0.86), rgba(255, 187, 122, 0.46));
}

.hero-form-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(22px);
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(137, 229, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 187, 122, 0.14), transparent 26%);
  pointer-events: none;
}

.hero-form-header,
.form-grid,
.form-note {
  position: relative;
  z-index: 1;
}

.hero-form-card h2 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.hero-form-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.62;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: 13px;
  font-weight: 700;
  color: #314562;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(170, 189, 212, 0.68);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.88);
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.form-grid textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(30, 167, 234, 0.56);
  box-shadow: 0 0 0 4px rgba(30, 167, 234, 0.12);
  transform: translateY(-1px);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 13px;
}

.form-note { margin-top: 14px; color: var(--text-muted); }
.form-note a {
  color: var(--primary-deep);
  font-weight: 700;
}
.form-note a:hover { color: var(--primary); }
.form-status { font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  transform: translateY(52px) scale(0.976);
  opacity: 0.78;
  filter: blur(12px);
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s ease,
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(30, 167, 234, 0.08), transparent 16%),
    radial-gradient(circle at 86% 14%, rgba(255, 187, 122, 0.08), transparent 18%);
  pointer-events: none;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(16, 32, 58, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 58, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.34;
  pointer-events: none;
}

.section.section-is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section.section-is-leaving {
  opacity: 0.92;
  transform: translateY(-26px) scale(0.99);
  filter: blur(3px);
}

.section-overview {
  margin-top: -128px;
  padding-top: 214px;
}

.section-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0) 0%, rgba(244, 248, 252, 0.2) 6%, rgba(244, 248, 252, 0.7) 16%, rgba(244, 248, 252, 0.96) 28%, rgba(244, 248, 252, 1) 40%),
    radial-gradient(circle at 16% 18%, rgba(30, 167, 234, 0.08), transparent 16%),
    radial-gradient(circle at 86% 14%, rgba(255, 187, 122, 0.08), transparent 18%);
  pointer-events: none;
}

.section-heading,
.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-intro h2,
.contact-copy h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--text-strong);
}

.section-heading p,
.section-intro p,
.contact-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-shell {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 34px 84px rgba(8, 17, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  transform: translate3d(0, var(--section-shift, 0px), 0);
  transition: transform var(--transition-slow), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(30, 167, 234, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(255, 187, 122, 0.16), transparent 22%);
  pointer-events: none;
}

.section-shell::after {
  content: "";
  position: absolute;
  inset: -14% -8%;
  background: linear-gradient(112deg, rgba(30, 167, 234, 0) 0%, rgba(30, 167, 234, 0.2) 28%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 187, 122, 0.12) 72%, rgba(255, 187, 122, 0) 100%);
  opacity: 0.2;
  filter: blur(34px);
  transform: translate3d(var(--section-glow-shift, 0px), 0, 0) skewY(-7deg);
  pointer-events: none;
}

.section-shell-dark {
  background:
    linear-gradient(135deg, rgba(8, 17, 31, 0.92), rgba(11, 27, 48, 0.88)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.1), rgba(255, 187, 122, 0.06));
  border-color: rgba(128, 158, 196, 0.26);
}

.section-shell-dark h2,
.section-shell-dark h3,
.section-shell-dark p,
.section-shell-dark .card-tag {
  color: var(--white);
}

.section-shell-stats {
  background:
    linear-gradient(135deg, rgba(10, 20, 34, 0.92), rgba(11, 33, 57, 0.88)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.14), rgba(255, 187, 122, 0.08));
  border-color: rgba(121, 156, 201, 0.24);
}

.section-shell-stats .section-heading h2,
.section-shell-stats .section-heading p,
.section-shell-stats .section-kicker {
  color: var(--white);
}

.section-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.section-layout-balanced {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.service-tree-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.service-tree-board,
.service-detail-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(219, 230, 244, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 253, 255, 0.9)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.05), rgba(255, 187, 122, 0.04));
  box-shadow: var(--shadow-lg);
}

.service-tree-board::before,
.service-detail-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(30, 167, 234, 0.14), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(255, 187, 122, 0.12), transparent 22%);
  pointer-events: none;
}

.tree-root {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto 24px;
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(202, 219, 239, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.84)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.08), rgba(255, 187, 122, 0.06));
  box-shadow: var(--shadow-md);
  text-align: center;
}

.tree-root::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(30, 167, 234, 0.48), rgba(30, 167, 234, 0));
}

.tree-root-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(30, 167, 234, 0.1);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tree-root strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.tree-root p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.tree-node-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
  padding-top: 26px;
}

.tree-node-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  top: 0;
  width: 2px;
  height: calc(100% - 32px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30, 167, 234, 0.32), rgba(30, 167, 234, 0.12) 72%, rgba(30, 167, 234, 0));
}

.tree-node {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  min-height: 64px;
  padding: 8px 16px;
  border: 1px solid rgba(206, 221, 239, 0.82);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.88)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.04), rgba(255, 187, 122, 0.04));
  box-shadow: var(--shadow-sm);
  text-align: left;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.tree-node::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: 28px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(30, 167, 234, 0.42), rgba(30, 167, 234, 0));
}

.tree-node:hover,
.tree-node:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(146, 189, 229, 0.88);
  box-shadow: 0 20px 40px rgba(10, 22, 38, 0.12);
  outline: none;
}

.tree-node[aria-selected="true"] {
  border-color: rgba(103, 166, 226, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.94)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.12), rgba(255, 187, 122, 0.08));
  box-shadow: 0 22px 42px rgba(11, 25, 42, 0.14);
}

.tree-node-accent[aria-selected="true"] {
  background:
    linear-gradient(135deg, rgba(13, 28, 48, 0.95), rgba(12, 42, 72, 0.9)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.16), rgba(255, 187, 122, 0.1));
  border-color: rgba(128, 176, 224, 0.4);
}

.tree-node-accent[aria-selected="true"] strong,
.tree-node-accent[aria-selected="true"] .tree-node-index {
  color: var(--white);
}

.tree-node-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(30, 167, 234, 0.1);
  color: var(--primary-deep);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tree-node strong {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.service-detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-detail-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.service-detail-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 16px 28px rgba(30, 167, 234, 0.22);
}

.service-detail-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(30, 167, 234, 0.1);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-title {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.service-detail-description {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.72;
}

.service-detail-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.service-detail-visual {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  margin: 6px 0 24px;
}

.service-detail-visual-frame {
  position: relative;
  width: min(100%, 420px);
  min-height: 220px;
  border-radius: 34px;
  border: 1px solid rgba(203, 219, 238, 0.82);
  background:
    radial-gradient(circle at 22% 18%, rgba(30, 167, 234, 0.12), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(255, 187, 122, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 250, 255, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 44px rgba(11, 25, 42, 0.08);
  overflow: hidden;
}

.service-detail-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(16, 32, 58, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 58, 0.022) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.service-detail-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-detail-icon * {
  vector-effect: non-scaling-stroke;
  stroke: #1f7dc0;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-icon .icon-glow {
  stroke: rgba(137, 229, 255, 0.88);
}

.service-detail-icon .icon-soft {
  stroke: rgba(31, 125, 192, 0.42);
}

.service-detail-icon .icon-warm {
  stroke: rgba(233, 165, 92, 0.62);
}

.service-detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(193, 210, 229, 0.7);
  background: rgba(255, 255, 255, 0.8);
  color: #213351;
  box-shadow: 0 10px 24px rgba(13, 24, 40, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.service-detail-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 226, 242, 0.8);
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.service-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 250px;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-card-accent {
  background:
    linear-gradient(135deg, rgba(13, 28, 48, 0.95), rgba(12, 42, 72, 0.9)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.16), rgba(255, 187, 122, 0.1));
  border-color: rgba(118, 156, 199, 0.24);
}

.service-card-accent h3,
.service-card-accent p,
.service-card-accent .service-meta {
  color: var(--white);
}

.service-orb {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--primary-deep);
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.7) 20%, rgba(191, 229, 255, 0.66) 46%, rgba(30, 167, 234, 0.34) 72%, rgba(15, 121, 189, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(210, 230, 248, 0.84));
  box-shadow:
    inset 10px 12px 18px rgba(255, 255, 255, 0.8),
    inset -12px -16px 22px rgba(15, 121, 189, 0.18),
    0 16px 34px rgba(16, 32, 58, 0.14);
  transform-style: preserve-3d;
  animation: serviceOrbSpin 6.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.service-orb::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(30, 167, 234, 0.22);
  border-top-color: rgba(255, 255, 255, 0.82);
  border-right-color: rgba(137, 229, 255, 0.44);
  border-bottom-color: rgba(15, 121, 189, 0.24);
  border-left-color: rgba(255, 255, 255, 0.16);
  transform: translateZ(-10px) rotateX(72deg);
  animation: serviceOrbRing 4.8s linear infinite;
}

.service-orb::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.56) 22%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  filter: blur(0.4px);
}

.service-card-accent .service-orb {
  color: var(--white);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.34) 22%, rgba(137, 229, 255, 0.42) 46%, rgba(137, 229, 255, 0.2) 70%, rgba(137, 229, 255, 0.48) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
}

.glass-card h3,
.service-card h3,
.feature-card h3,
.process-step h3,
.testimonial-card strong {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.glass-card p,
.service-card p,
.feature-card p,
.process-step p,
.testimonial-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.68;
}

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

.process-step {
  min-height: 260px;
}

.process-index {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 16px 28px rgba(30, 167, 234, 0.22);
}

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

.stat-card {
  min-height: 210px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(137, 229, 255, 0.08), rgba(255, 187, 122, 0.06));
}

.stat-number {
  display: block;
  margin-bottom: 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: var(--white);
}

.stat-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(178, 197, 220, 0.66);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-strong);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.testimonial-stack {
  display: grid;
  gap: 16px;
}

.testimonial-card {
  min-height: 170px;
}

.testimonial-card p {
  margin-bottom: 18px;
  font-size: 17px;
  color: #43546f;
}

.section-contact {
  padding-top: 40px;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(13, 26, 45, 0.95), rgba(14, 45, 74, 0.92)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.18), rgba(255, 187, 122, 0.12));
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.contact-copy h2,
.contact-copy p,
.contact-copy .section-kicker {
  color: var(--white);
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 62px 0 46px;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 16% 14%, rgba(30, 167, 234, 0.16), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(255, 187, 122, 0.12), transparent 20%),
    linear-gradient(180deg, #09111d 0%, #0a1624 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--secondary);
}

.legal-page {
  min-height: 100svh;
  padding: 34px 0 72px;
}

.legal-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 36px;
  border: 1px solid rgba(210, 223, 239, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.06), rgba(255, 187, 122, 0.05));
  box-shadow:
    0 34px 84px rgba(8, 17, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.legal-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(30, 167, 234, 0.12), transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(255, 187, 122, 0.1), transparent 20%);
  pointer-events: none;
}

.legal-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.legal-backlink {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(189, 206, 226, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.84)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.08), rgba(255, 187, 122, 0.05));
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.legal-backlink:hover {
  transform: translateY(-2px);
  border-color: rgba(151, 189, 228, 0.92);
  box-shadow: 0 18px 32px rgba(10, 22, 38, 0.1);
}

.legal-head {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 34px;
}

.legal-head h1 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--text-strong);
}

.legal-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.72;
}

.legal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: start;
}

.legal-nav,
.legal-content {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(211, 223, 238, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.84)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.04), rgba(255, 187, 122, 0.03));
  box-shadow: var(--shadow-md);
}

.legal-nav {
  padding: 24px;
  position: sticky;
  top: 108px;
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  color: var(--text-strong);
}

.legal-nav-links {
  display: grid;
  gap: 10px;
}

.legal-nav-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: #24405f;
  font-weight: 700;
  background: rgba(231, 241, 251, 0.64);
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.legal-nav-links a:hover {
  transform: translateX(4px);
  background: rgba(209, 230, 248, 0.88);
  color: #0d2c4a;
}

.legal-content {
  padding: 30px;
}

.legal-section + .legal-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(213, 225, 240, 0.88);
}

.legal-section h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.legal-section p,
.legal-section li {
  color: #4b5d77;
  font-size: 16px;
  line-height: 1.78;
}

.legal-section p { margin: 0 0 14px; }

.legal-list {
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(230, 240, 250, 0.88);
  color: #1e446b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-page {
  min-height: 100svh;
  padding: 34px 0 72px;
}

.blog-shell,
.article-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 36px;
  border: 1px solid rgba(210, 223, 239, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.9)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.06), rgba(255, 187, 122, 0.05));
  box-shadow:
    0 34px 84px rgba(8, 17, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.blog-shell::before,
.article-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(30, 167, 234, 0.12), transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(255, 187, 122, 0.1), transparent 20%);
  pointer-events: none;
}

.blog-hero,
.article-hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.blog-hero-copy,
.article-hero-copy {
  max-width: 920px;
}

.blog-hero h1,
.article-hero h1 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--text-strong);
}

.blog-hero p,
.article-hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.72;
}

.blog-tag-row,
.article-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.blog-tag,
.article-tag,
.article-meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(226, 239, 251, 0.92);
  color: #1d446b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 24px;
  align-items: start;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(210, 223, 239, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.88)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.04), rgba(255, 187, 122, 0.03));
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(8, 17, 30, 0.12);
  border-color: rgba(171, 197, 226, 0.88);
}

.blog-card-media,
.article-cover {
  position: relative;
  overflow: hidden;
}

.blog-card-media img,
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-media {
  min-height: 240px;
}

.blog-card-content {
  padding: 24px 24px 24px 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.blog-card-meta,
.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card h2,
.article-content h2,
.article-content h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.blog-card h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
}

.blog-card p,
.article-content p,
.article-content li {
  color: #4b5d77;
  font-size: 16px;
  line-height: 1.78;
}

.blog-card p {
  margin: 0;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(188, 205, 226, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.82)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.08), rgba(255, 187, 122, 0.05));
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.blog-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(151, 189, 228, 0.92);
  box-shadow: 0 18px 32px rgba(10, 22, 38, 0.1);
}

.blog-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.blog-panel,
.article-panel,
.article-cta {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(211, 223, 238, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.84)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.04), rgba(255, 187, 122, 0.03));
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.blog-panel h3,
.article-panel h3,
.article-cta h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

.blog-panel p,
.article-panel p,
.article-cta p {
  margin: 0;
  color: #4b5d77;
  font-size: 15px;
  line-height: 1.72;
}

.blog-topic-list,
.article-source-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.blog-topic-item,
.article-source-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24405f;
  font-weight: 700;
}

.blog-topic-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--warm));
  box-shadow: 0 0 0 6px rgba(30, 167, 234, 0.08);
}

.article-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.26fr);
  gap: 24px;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 24px;
}

.article-cover {
  min-height: 420px;
  border-radius: 34px;
  border: 1px solid rgba(210, 223, 239, 0.82);
  box-shadow: var(--shadow-lg);
}

.article-content {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(211, 223, 238, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.88)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.04), rgba(255, 187, 122, 0.03));
  box-shadow: var(--shadow-md);
}

.article-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  margin-bottom: 14px;
}

.article-content h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
  margin: 26px 0 12px;
}

.article-content p {
  margin: 0 0 16px;
}

.article-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article-highlight {
  margin: 24px 0;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(184, 207, 231, 0.78);
  background:
    linear-gradient(180deg, rgba(234, 244, 253, 0.86), rgba(247, 251, 255, 0.92)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.08), rgba(255, 187, 122, 0.05));
}

.article-highlight strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  color: var(--text-strong);
}

.article-highlight p {
  margin: 0;
}

.article-tag-cloud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.article-source-list a:hover,
.article-tag:hover,
.blog-tag:hover,
.article-meta-chip:hover {
  color: #0e3050;
}

.article-cta {
  background:
    linear-gradient(135deg, rgba(13, 26, 45, 0.95), rgba(14, 45, 74, 0.92)),
    linear-gradient(135deg, rgba(30, 167, 234, 0.18), rgba(255, 187, 122, 0.12));
  border-color: rgba(130, 164, 204, 0.28);
}

.article-cta h3,
.article-cta p {
  color: var(--white);
}

.article-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.article-related {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.article-related a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(229, 240, 250, 0.82);
  color: #173857;
  font-weight: 700;
}

.article-related a:hover {
  background: rgba(212, 230, 246, 0.96);
}

.observe {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.observe.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --translate-z: 0px;
  --glow-x: 78%;
  --glow-y: 18%;
  transform: perspective(1200px) translate3d(0, 0, var(--translate-z)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform var(--transition),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.tilt-card:hover {
  --translate-z: 2px;
  box-shadow: 0 34px 72px rgba(7, 17, 30, 0.18);
}

@keyframes orbFloat {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -22px, 0) scale(1.05); }
}

@keyframes gridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-48px, 24px, 0); }
}

@keyframes globeFloat {
  0%,
  100% { transform: translate3d(0, 0, 0) rotateX(10deg) rotateY(-8deg); }
  50% { transform: translate3d(0, -10px, 0) rotateX(14deg) rotateY(8deg); }
}

@keyframes globeSheen {
  from { transform: translateX(-16px); opacity: 0.5; }
  to { transform: translateX(16px); opacity: 0.9; }
}

@keyframes globeAxisSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@keyframes ringSpin {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

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

@keyframes serviceOrbSpin {
  0% { transform: perspective(760px) rotateX(58deg) rotateY(-34deg) rotateZ(-10deg) translateZ(0); }
  25% { transform: perspective(760px) rotateX(-38deg) rotateY(42deg) rotateZ(10deg) translateZ(3px); }
  50% { transform: perspective(760px) rotateX(52deg) rotateY(34deg) rotateZ(-8deg) translateZ(1px); }
  75% { transform: perspective(760px) rotateX(-30deg) rotateY(-40deg) rotateZ(11deg) translateZ(4px); }
  100% { transform: perspective(760px) rotateX(58deg) rotateY(-34deg) rotateZ(-10deg) translateZ(0); }
}

@keyframes serviceOrbRing {
  0% { transform: translateZ(-10px) rotateX(72deg) rotateY(0deg) rotateZ(0deg) scale(1); }
  50% { transform: translateZ(-10px) rotateX(72deg) rotateY(180deg) rotateZ(180deg) scale(1.06); }
  100% { transform: translateZ(-10px) rotateX(72deg) rotateY(360deg) rotateZ(360deg) scale(1); }
}

@media (max-width: 1180px) {
  .hero-layout,
  .section-layout,
  .section-layout-balanced { grid-template-columns: 1fr; }
  .hero-copy,
  .hero-visual { padding-top: 36px; }
  .service-tree-layout { grid-template-columns: 1fr; }
  .service-detail-panel { min-height: 320px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-nav { position: relative; top: 0; }
  .blog-layout,
  .article-layout { grid-template-columns: 1fr; }
  .blog-aside { position: relative; top: 0; }
  .hero-signals,
  .overview-grid,
  .stats-grid,
  .process-timeline,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid,
  .feature-stack { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .contact-band { flex-direction: column; align-items: flex-start; }
  .contact-actions { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: auto;
    padding: 16px 18px;
    border-radius: 30px;
  }
  .nav { justify-content: flex-start; gap: 12px 16px; }
  .hero { min-height: auto; padding-bottom: 90px; }
  .hero h1 { max-width: 12ch; }
  .hero-signals,
  .overview-grid,
  .stats-grid,
  .process-timeline,
  .footer-grid { grid-template-columns: 1fr; }
  .legal-shell { padding: 30px; border-radius: 28px; }
  .legal-content,
  .legal-nav { padding: 22px; }
  .blog-shell,
  .article-shell { padding: 30px; border-radius: 28px; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-content { padding: 0 24px 24px; }
  .blog-card-media { min-height: 260px; }
  .article-cover { min-height: 340px; }
  .scene-hud { width: min(100% - 36px, 340px); }
  .globe-stage { inset: 138px 20px 88px; transform: translateY(-18px); }
  .globe { width: 214px; height: 214px; }
  .globe-edge-route-a { width: 238px; height: 96px; margin: -48px 0 0 -119px; }
  .globe-edge-route-b { width: 224px; height: 146px; margin: -73px 0 0 -112px; }
  .globe-edge-route-c { width: 188px; height: 226px; margin: -113px 0 0 -94px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .section-overview {
    margin-top: -108px;
    padding-top: 188px;
  }
  .service-tree-board,
  .service-detail-panel { padding: 24px; border-radius: 28px; }
  .tree-root {
    max-width: none;
    margin-bottom: 24px;
    padding: 22px;
  }
  .tree-root strong { font-size: 25px; }
  .tree-node-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }
  .tree-node-grid::before {
    left: 50%;
    right: auto;
    width: 2px;
    height: calc(100% - 28px);
    transform: translateX(-50%);
  }
  .tree-node {
    min-height: 60px;
    padding: 8px 14px;
    border-radius: 22px;
  }
  .tree-node strong { font-size: 16px; }
  .service-detail-title { font-size: 30px; }
  .service-detail-visual {
    min-height: 190px;
    margin-bottom: 20px;
  }
  .service-detail-visual-frame {
    min-height: 180px;
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 22px)); }
  .topbar { padding: 10px 0; }
  .hero h1 { font-size: clamp(40px, 11vw, 58px); }
  .hero p,
  .section-heading p,
  .section-intro p,
  .contact-copy p { font-size: 16px; }
  .hero-scene,
  .hero-form-card,
  .section-shell,
  .glass-card,
  .service-card,
  .feature-card,
  .process-step,
  .stat-card,
  .testimonial-card,
  .signal-card,
  .contact-band,
  .legal-shell,
  .legal-content,
  .legal-nav,
  .blog-shell,
  .article-shell,
  .blog-card,
  .blog-panel,
  .article-panel,
  .article-content,
  .article-cover,
  .article-cta { border-radius: 24px; }
  .hero-scene { min-height: 380px; }
  .hero-scene-core { min-height: 344px; }
  .scene-hud { top: 18px; width: min(100% - 28px, 300px); }
  .scene-hud strong { font-size: 21px; }
  .globe-stage { inset: 142px 14px 92px; transform: translateY(-14px); }
  .globe { width: 182px; height: 182px; }
  .globe-edge-route-a { width: 204px; height: 82px; margin: -41px 0 0 -102px; }
  .globe-edge-route-b { width: 190px; height: 124px; margin: -62px 0 0 -95px; }
  .globe-edge-route-c { width: 160px; height: 192px; margin: -96px 0 0 -80px; }
  .edge-truck::before { width: 24px; height: 10px; margin-top: -5px; }
  .edge-truck::after { right: 10px; width: 16px; }
  .scene-footer-note { bottom: 8px; min-height: 32px; padding: 0 12px; font-size: 11px; }
  .section { padding: 84px 0; }
  .section-overview {
    margin-top: -78px;
    padding-top: 146px;
  }
  .legal-page { padding: 22px 0 54px; }
  .legal-shell { padding: 22px; }
  .blog-page { padding: 22px 0 54px; }
  .blog-shell,
  .article-shell { padding: 22px; }
  .legal-topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .blog-hero h1,
  .article-hero h1 { font-size: clamp(34px, 8vw, 48px); }
  .blog-hero p,
  .article-hero p,
  .blog-card p,
  .article-content p,
  .article-content li { font-size: 15px; }
  .article-content { padding: 22px; }
  .article-cover { min-height: 280px; }
  .legal-head p,
  .legal-section p,
  .legal-section li { font-size: 15px; }
  .section-shell { padding: 24px; }
  .service-card { grid-template-columns: 1fr; }
  .service-tree-board,
  .service-detail-panel { padding: 20px; }
  .tree-root {
    margin-bottom: 20px;
    padding: 20px;
  }
  .tree-root::after { height: 16px; }
  .tree-root strong { font-size: 22px; }
  .tree-node-grid {
    grid-template-columns: 1fr;
    padding-top: 22px;
    gap: 12px;
  }
  .tree-node-grid::before {
    left: 50%;
    right: auto;
    width: 2px;
    height: 22px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(30, 167, 234, 0.42), rgba(30, 167, 234, 0));
  }
  .tree-node {
    min-height: auto;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
  }
  .tree-node::before { height: 22px; }
  .service-detail-topline {
    flex-wrap: wrap;
    gap: 10px;
  }
  .service-detail-title {
    font-size: 26px;
    line-height: 1.08;
  }
  .service-detail-description {
    font-size: 15px;
    line-height: 1.65;
  }
  .service-detail-visual {
    min-height: 152px;
    margin: 0 0 18px;
  }
  .service-detail-visual-frame {
    min-height: 150px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .section,
  .observe,
  .tilt-card,
  .section-shell {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
