:root {
  --clean-canvas: #FFFFFF;
  --prism-white: #FAFBFF;
  --soft-horizon: #F0F5FF;
  --deep-cobalt: #1E40AF;
  --steel-blue: #1D4ED8;
  --sky-edge: #3B82F6;
  --prism-blue: #3B82F6;
  --indigo-core: #1D4ED8;
  --font-heading: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-tech: 'Fira Code', monospace;
  --nav-height: 88px;
  --transition-smooth: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-heading);
  background: var(--clean-canvas);
  color: var(--steel-blue);
  line-height: 1.8;
  font-size: 19px;
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  color: var(--deep-cobalt);
  line-height: 0.84;
  letter-spacing: 0.045em;
}

h1 {
  font-size: clamp(3.8rem, 7vw, 6.5rem);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--sky-edge);
}

h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 36px;
  background: linear-gradient(135deg, var(--prism-blue), var(--indigo-core));
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.015em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.38s ease;
  box-shadow: 0 16px 64px rgba(59, 130, 246, 0.5);
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 24px 96px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  background: transparent;
  color: var(--deep-cobalt);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--deep-cobalt);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.38s ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
  border-color: var(--prism-blue);
}

.fluid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -10;
  filter: contrast(1.12) saturate(1.15);
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 9999;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border-top: 3px solid rgba(59, 130, 246, 0.32);
  box-shadow: 0 -20px 80px rgba(59, 130, 246, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 72px;
  transition: all 0.4s ease-out;
}

.bottom-nav.scrolled {
  background: rgba(255, 255, 255, 1);
  border-top: 3px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 -20px 100px rgba(59, 130, 246, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo svg {
  transform: skewX(-2deg);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-cobalt);
  letter-spacing: -0.01em;
  transform: skewX(-2deg);
}

.nav-menu {
  display: flex;
  gap: 52px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-cobalt);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--prism-blue);
  transform: scale(1.1) skewX(-1deg);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3.5px;
  background: var(--prism-blue);
  transition: width 0.28s ease;
}

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

.nav-cta {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--prism-blue), var(--indigo-core));
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.015em;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.38s ease;
  box-shadow: 0 16px 64px rgba(59, 130, 246, 0.5);
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 24px 96px rgba(59, 130, 246, 0.6);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 76px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 3px solid rgba(59, 130, 246, 0.35);
  border-radius: 44px;
  box-shadow: 0 20px 80px rgba(59, 130, 246, 0.2);
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-logo svg {
  transform: skewX(-2deg);
}

.mobile-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-cobalt);
  transform: skewX(-2deg);
}

.mobile-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--prism-blue), var(--indigo-core));
  color: white;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.38s ease;
}

.mobile-hamburger {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 28px;
  border: 3px solid var(--prism-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.mobile-hamburger span {
  width: 24px;
  height: 3px;
  background: var(--prism-blue);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 250, 255, 0.99);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  z-index: 10001;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.55s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding-top: 140px;
}

.mobile-menu-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-overlay a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--deep-cobalt);
  position: relative;
}

.mobile-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--prism-blue), var(--indigo-core));
  border-radius: 36px;
  border: 3px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.48s ease;
  transform: scale(0.48);
}

.mobile-close:hover {
  transform: scale(1);
}

.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.hero-section {
  min-height: 100vh;
  padding: 140px 88px 200px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--clean-canvas);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 64px;
  width: 100%;
  position: relative;
}

.hero-content {
  grid-column: span 6;
  z-index: 4;
}

.hero-title {
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  color: var(--deep-cobalt);
  line-height: 0.84;
  letter-spacing: 0.045em;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-underline {
  height: 7px;
  width: 240px;
  background: linear-gradient(135deg, var(--prism-blue), var(--indigo-core));
  transform: skewX(-3deg);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--sky-edge);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: var(--font-tech);
  font-size: 13px;
  color: rgba(30, 64, 175, 0.6);
  margin-bottom: 16px;
}

.hero-description {
  font-size: 19px;
  color: var(--steel-blue);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 28px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-visual {
  grid-column: 7 / -1;
  grid-row: 1;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 580px;
  perspective: 1200px;
}

.bento-card {
  position: relative;
  clip-path: polygon(0 5%, 102% 0, 100% 96%, -2% 100%);
  border: 1.5px solid rgba(59, 130, 246, 0.22);
  border-radius: 0;
  box-shadow: 0 28px 112px rgba(59, 130, 246, 0.16);
  overflow: hidden;
  transition: all 0.88s var(--transition-smooth);
}

.bento-card:hover {
  transform: skewX(-1deg) skewY(0.5deg) scale(1.1);
  box-shadow: 0 0 48px rgba(59, 130, 246, 0.45);
  z-index: 82;
}

.bento-card-1 {
  grid-column: 1;
  grid-row: 1 / -1;
}

.bento-card-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.12);
  transform: skewX(-3deg);
}

.bento-card-2 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.1));
}

.bento-card-3 {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%233B82F6' fill-opacity='0.14'/%3E%3C/svg%3E");
}

.bento-card-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(-3deg);
}

.bento-card-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
  background: rgba(59, 130, 246, 0.08);
  align-content: center;
  justify-items: center;
}

.bento-card-5 svg {
  width: 48px;
  height: 48px;
  stroke: var(--prism-blue);
  stroke-width: 2.8px;
  fill: none;
}

.blue-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--prism-blue);
  border: 2px solid white;
  border-radius: 50%;
}

.blue-dot-1 { top: 16px; left: 16px; }
.blue-dot-2 { top: 16px; right: 16px; }
.blue-dot-3 { bottom: 16px; left: 16px; }
.blue-dot-4 { bottom: 16px; right: 16px; }

.skew-line {
  height: 2px;
  background: rgba(59, 130, 246, 0.28);
  transform: skewX(-3deg);
  margin: 20px 0;
}

.skew-decoration {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.skew-decoration .blue-dot {
  transform: skewY(1deg);
}

.page-hero {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--prism-white);
  position: relative;
  padding: 160px 24px 80px;
}

.breadcrumbs {
  font-family: var(--font-tech);
  font-size: 15px;
  color: var(--steel-blue);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrumbs a {
  color: var(--steel-blue);
  text-decoration: none;
}

.breadcrumbs span {
  color: var(--prism-blue);
}

.page-title {
  font-size: clamp(3.2rem, 6vw, 5rem);
  color: var(--deep-cobalt);
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-title svg {
  transform: skewX(-3deg);
}

.title-decoration {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.title-decoration .blue-dot {
  animation: pulse 2.8s infinite;
}

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

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

.section-bg-prism {
  background: var(--prism-white);
}

.section-bg-soft {
  background: var(--soft-horizon);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.24);
  border-radius: 0;
  padding: 40px;
  transform: skewX(-3deg);
  box-shadow: 0 32px 128px rgba(59, 130, 246, 0.28);
  transition: all 0.45s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: skewX(-2deg) scale(1.12);
  box-shadow: 0 48px 192px rgba(59, 130, 246, 0.4);
  z-index: 82;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--prism-blue);
  stroke-width: 3.5px;
  fill: none;
}

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--deep-cobalt);
  margin-bottom: 16px;
}

.service-description {
  font-size: 17px;
  color: var(--steel-blue);
  line-height: 1.85;
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--prism-blue);
  font-weight: 700;
}

.service-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  color: var(--prism-blue);
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--prism-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-link:hover::after {
  transform: scaleX(1);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

.about-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.22);
  border-radius: 0;
  padding: 52px;
  transform: skewX(-2deg);
  box-shadow: 0 36px 144px rgba(59, 130, 246, 0.3);
  transition: all 0.45s ease;
}

.about-card:hover {
  transform: skewX(-1deg) scale(1.1);
  box-shadow: 0 52px 208px rgba(59, 130, 246, 0.4);
  z-index: 84;
}

.about-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: skewX(-2deg) scale(1.05);
  filter: saturate(1.1);
  margin-bottom: 24px;
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--deep-cobalt);
  margin-bottom: 16px;
}

.about-card-text {
  font-size: 17px;
  color: var(--steel-blue);
  line-height: 1.8;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.28);
  border-radius: 0;
  padding: 40px;
  transform: skewX(-2deg);
  transition: all 0.45s ease;
}

.advantage-card:hover {
  flex-grow: 3.4;
  background: white;
  border-color: rgba(59, 130, 246, 0.45);
  transform: skewX(-1deg) scale(1.16);
  z-index: 82;
  box-shadow: 0 52px 208px rgba(59, 130, 246, 0.4);
}

.advantage-card:hover ~ .advantage-card {
  flex-grow: 0.65;
  opacity: 0.86;
  transform: scale(1.14);
}

.advantage-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0l20 20-20 20L0 20z' fill='%233B82F6' fill-opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.2;
  transform: skewX(-2deg);
  pointer-events: none;
}

.advantage-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--deep-cobalt);
  margin-bottom: 16px;
}

.advantage-text {
  font-size: 17px;
  color: var(--steel-blue);
  line-height: 1.85;
}

.process-container {
  min-height: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.process-node {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.1);
  border: 3.5px solid var(--prism-blue);
  border-radius: 50%;
  box-shadow: 0 40px 160px rgba(59, 130, 246, 0.45);
}

.process-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.26);
  border-radius: 0;
  padding: 36px;
  transform: skewX(-3deg);
  box-shadow: 0 40px 160px rgba(59, 130, 246, 0.35);
  transition: all 0.45s ease;
  width: 260px;
}

.process-card:hover {
  transform: skewX(-2deg) scale(1.14);
  box-shadow: 0 56px 224px rgba(59, 130, 246, 0.5);
  z-index: 82;
}

.process-card-title {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--deep-cobalt);
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card-text {
  font-size: 16px;
  color: var(--steel-blue);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  padding: 0 88px;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 44px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.24);
  border-radius: 0;
  transform: skewX(-2deg);
  transition: all 0.4s ease;
  cursor: pointer;
}

.team-item:hover {
  background: white;
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 44px 176px rgba(59, 130, 246, 0.4);
  transform: skewX(-1deg) scale(1.12);
  z-index: 82;
}

.team-chevron {
  width: 28px;
  height: 28px;
  stroke: rgba(59, 130, 246, 0.4);
  stroke-width: 2.8px;
  fill: none;
  transition: all 0.35s ease;
}

.team-item:hover .team-chevron {
  stroke: var(--prism-blue);
  transform: translateX(12px);
}

.team-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--deep-cobalt);
  flex: 1;
}

.team-role {
  font-size: 17px;
  color: var(--steel-blue);
  line-height: 1.85;
  padding-top: 32px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(-2deg);
  box-shadow: 0 44px 176px rgba(59, 130, 246, 0.38);
}

.team-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  padding: 12px 24px;
  background: rgba(59, 130, 246, 0.95);
  font-family: var(--font-display);
  font-size: 19px;
  color: white;
  border-radius: 0;
}

.reveal-zone {
  min-height: 520px;
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.45s ease;
}

.faq-item:hover {
  transform: scale(1.14);
  box-shadow: 0 52px 208px rgba(59, 130, 246, 0.4);
  z-index: 82;
}

.faq-header {
  padding: 28px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--deep-cobalt);
  font-weight: 700;
}

.faq-icon {
  width: 32px;
  height: 32px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--prism-blue);
  border-radius: 2px;
}

.faq-icon::before {
  width: 20px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 3px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-content {
  padding: 0 52px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-content {
  padding: 0 52px 28px;
  max-height: 500px;
}

.faq-answer {
  font-size: 18px;
  color: var(--steel-blue);
  line-height: 1.85;
  padding-top: 20px;
  border-top: 1px solid rgba(59, 130, 246, 0.25);
}

.faq-value {
  font-family: var(--font-tech);
  font-size: 72px;
  color: var(--prism-blue);
  line-height: 1;
  margin-bottom: 20px;
}

.reviews-carousel {
  height: 620px;
  perspective: 1600px;
  position: relative;
  overflow: hidden;
}

.review-card {
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  width: 360px;
  /* height: 520px; */
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.32);
  border-radius: 0;
  box-shadow: 0 44px 176px rgba(59, 130, 246, 0.45);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.review-card.active {
  transform: scale(1.08);
  z-index: 104;
}

.review-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transform: skewX(-2deg);
}

.review-content {
  padding: 32px;
}

.review-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--deep-cobalt);
  margin-bottom: 16px;
}

.review-text {
  font-size: 18px;
  color: var(--steel-blue);
  line-height: 1.8;
}

.review-author {
  margin-top: 20px;
  font-weight: 700;
  color: var(--prism-blue);
}

.carousel-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 92;
}

.carousel-btn {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.8px solid var(--prism-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.carousel-btn:hover {
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.5);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--prism-blue);
  stroke-width: 3.5px;
  fill: none;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.contact-info {
  position: sticky;
  top: 0;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border-right: 4px solid rgba(59, 130, 246, 0.42);
  box-shadow: 40px 0 160px rgba(59, 130, 246, 0.4);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--deep-cobalt);
  line-height: 0.84;
  margin-bottom: 48px;
}

.contact-text {
  font-size: 19px;
  color: var(--steel-blue);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact-icon {
  width: 92px;
  height: 92px;
  stroke: var(--prism-blue);
  stroke-width: 4px;
  fill: none;
  flex-shrink: 0;
}

.contact-item-title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--deep-cobalt);
  margin-bottom: 8px;
}

.contact-item-text {
  font-size: 17px;
  color: var(--steel-blue);
  line-height: 1.82;
}

.contact-form-section {
  padding: 92px 80px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 700;
  color: var(--deep-cobalt);
  margin-bottom: 12px;
  font-size: 15px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--deep-cobalt);
  background: white;
  transition: all 0.35s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--prism-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-submit {
  padding: 28px 56px;
  font-size: 16px;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px;
  background: var(--soft-horizon);
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
  color: var(--prism-blue);
}

.thank-you-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--deep-cobalt);
  margin-bottom: 24px;
}

.thank-you-text {
  font-size: 20px;
  color: var(--steel-blue);
  max-width: 600px;
  line-height: 1.8;
}

.thank-you-cta {
  margin-top: 48px;
}

footer {
  background: var(--prism-white);
  padding: 80px 0 40px;
  border-top: 3px solid rgba(59, 130, 246, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo svg {
  transform: skewX(-2deg);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-cobalt);
  transform: skewX(-2deg);
}

.footer-desc {
  font-size: 16px;
  color: var(--steel-blue);
  line-height: 1.8;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--deep-cobalt);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--steel-blue);
  transition: color 0.28s ease;
}

.footer-links a:hover {
  color: var(--prism-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-copyright {
  font-size: 14px;
  color: var(--steel-blue);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--steel-blue);
  transition: color 0.28s ease;
}

.footer-legal a:hover {
  color: var(--prism-blue);
}

.cookie-banner {
  position: fixed;
  bottom: 108px;
  left: 24px;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 2px solid rgba(59, 130, 246, 0.35);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 80px rgba(59, 130, 246, 0.25);
  z-index: 9990;
}

.cookie-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--deep-cobalt);
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 14px;
  color: var(--steel-blue);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s ease;
  min-height: 44px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--prism-blue), var(--indigo-core));
  color: white;
  border: none;
}

.cookie-decline {
  background: transparent;
  color: var(--steel-blue);
  border: 2px solid rgba(59, 130, 246, 0.4);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.78s ease-out;
}

.reveal-fade.visible {
  opacity: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.82s ease-out;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: all 0.68s ease-out;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: all 0.78s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

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

  .mobile-nav {
    display: flex;
  }

  .hero-section {
    padding: 120px 24px 180px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    grid-column: 1;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
  }

  .bento-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-card-1 {
    grid-column: 1;
    grid-row: auto;
    height: 280px;
  }

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

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

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

  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: relative;
    height: auto;
    padding: 60px 24px;
    border-right: none;
    border-bottom: 4px solid rgba(59, 130, 246, 0.42);
  }

  .contact-form-section {
    padding: 60px 24px;
  }

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

  .cookie-banner {
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 17px;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .faq-header {
    padding: 20px 24px;
  }

  .faq-content {
    padding: 0 24px;
  }

  .faq-item.active .faq-content {
    padding: 0 24px 20px;
  }
  .review-card {
    position: absolute;
    left:0;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .service-card {
    padding: 28px;
  }

  .about-card {
    padding: 32px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--soft-horizon);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--prism-blue), var(--indigo-core));
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  opacity: 0.88;
}

@keyframes kineticBurst {
  0% { transform: scale(0.72); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  0% { transform: translateY(32px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.kinetic-animate {
  animation: kineticBurst 0.92s var(--transition-smooth) forwards;
}

.slide-up-animate {
  animation: slideUp 0.82s ease-out forwards;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review-full-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(64px);
  -webkit-backdrop-filter: blur(64px);
  border: 1.5px solid rgba(59, 130, 246, 0.28);
  border-radius: 0;
  box-shadow: 0 44px 176px rgba(59, 130, 246, 0.38);
  overflow: hidden;
  transition: all 0.45s ease;
  transform: skewX(-2deg);
}

.review-full-card:hover {
  transform: skewX(-1deg) scale(1.08);
  box-shadow: 0 56px 224px rgba(59, 130, 246, 0.5);
  z-index: 82;
}

.review-full-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transform: skewX(-2deg) scale(1.05);
  filter: saturate(1.1);
}

.review-full-content {
  padding: 32px;
}

.review-full-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.review-full-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--deep-cobalt);
  font-weight: 700;
}

.review-full-role {
  font-size: 15px;
  color: var(--steel-blue);
}

.review-full-text {
  font-size: 17px;
  color: var(--steel-blue);
  line-height: 1.85;
  margin-bottom: 20px;
}

.review-full-stars {
  display: flex;
  gap: 8px;
}

.review-full-stars svg {
  width: 20px;
  height: 20px;
  stroke: var(--prism-blue);
  fill: var(--prism-blue);
}