﻿:root {
  --bg: #0a111f;
  --surface: #111b2e;
  --surface-2: #152440;
  --text: #e8efff;
  --muted: #9cb0d4;
  --accent: #19d0a4;
  --accent-2: #26a7ff;
  --accent-3: #89f7ff;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #162947 0%, var(--bg) 38%, #080d17 100%);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(38, 167, 255, 0.2), transparent 32%),
    radial-gradient(circle at 85% 30%, rgba(25, 208, 164, 0.14), transparent 28%),
    radial-gradient(circle at 55% 80%, rgba(137, 247, 255, 0.1), transparent 34%);
}

body,
html {
  width: 100%;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 40px 40px;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section { padding: 5.5rem 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 6vw, 4.3rem); max-width: 13ch; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); max-width: 18ch; }
h3 { font-size: 1.25rem; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 14, 24, 0.62);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 14, 24, 0.9);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.brand:hover .logo-img {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(25, 208, 164, 0.2);
}

.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.brand:hover .brand-text {
  color: var(--accent);
}

.nav-links { list-style: none; display: flex; align-items: center; gap: 1rem; }

.nav-links a {
  font-size: 0.95rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.nav-links a:hover { background: rgba(255, 255, 255, 0.1); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001625;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

#heroCodeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.15), rgba(8, 17, 31, 0.92) 72%);
}

.hero-content { position: relative; z-index: 2; }
.hero-subtitle { max-width: 62ch; margin-top: 1.3rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero h1 { text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

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

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -160%;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: left 0.55s ease;
}

.btn:hover::after { left: 140%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001625;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

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

.mission-vision { margin-top: 1.7rem; display: grid; gap: 1rem; }

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

.stat-card {
  background: linear-gradient(135deg, var(--surface), #0e1627);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  backdrop-filter: blur(4px);
}

.ceo-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 1.4rem;
  align-items: stretch;
}

.ceo-wrap img {
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.ceo-content {
  background: linear-gradient(145deg, var(--surface), #0d1627);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.ceo-content::after {
  content: '';
  position: absolute;
  inset: auto -20% -75% auto;
  width: 60%;
  height: 160%;
  transform: rotate(20deg);
  background: radial-gradient(circle at center, rgba(25, 208, 164, 0.2), transparent 62%);
  pointer-events: none;
}

.ceo-content h3 {
  margin-top: 1rem;
}

.counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.services-swiper {
  width: min(1080px, 100%);
  padding: 1rem 0 4.25rem;
  overflow: hidden;
}

.services-swiper .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.services-swiper .swiper-slide {
  width: min(720px, 84vw);
  height: auto;
  backface-visibility: hidden;
  will-change: transform;
}

.service-coverflow-card {
  display: block;
  padding: 1.45rem;
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(108, 171, 224, 0.22);
  background:
    radial-gradient(circle at 18% 18%, rgba(38, 167, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(25, 208, 164, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(17, 27, 46, 0.96), rgba(11, 20, 36, 0.96));
  box-shadow: 0 30px 60px rgba(2, 8, 18, 0.34);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.service-coverflow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 24%, rgba(137, 247, 255, 0.08) 52%, transparent 72%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.swiper-slide-active .service-coverflow-card::after {
  opacity: 1;
}

.service-coverflow-media {
  position: relative;
}

.service-coverflow-media::after {
  content: '';
  position: absolute;
  inset: auto 8% -10% 8%;
  height: 32%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(25, 208, 164, 0.2), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.service-coverflow-copy {
  position: relative;
  z-index: 1;
}

.service-coverflow-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 247, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-coverflow-copy h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.service-coverflow-copy p {
  font-size: 1.04rem;
  max-width: 54ch;
  color: #d4e2ff;
}

.services-swiper .swiper-slide-prev,
.services-swiper .swiper-slide-next {
  filter: saturate(0.8) brightness(0.92);
}

.services-swiper .swiper-slide-active {
  z-index: 3;
}

.services-swiper .swiper-pagination {
  bottom: 0.35rem !important;
}

.services-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(137, 247, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.services-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(25, 208, 164, 0.12);
}

.card {
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.88), rgba(13, 22, 39, 0.88));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  backdrop-filter: blur(8px);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(137, 247, 255, 0.2), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(25, 208, 164, 0.55);
}

.card:hover::before { opacity: 1; }

.card p { margin-top: 0.7rem; }
.card .chip {
  display: inline-block;
  margin-top: 1rem;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.project-thumb {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.project-card {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    opacity 0.7s ease;
  will-change: transform, opacity, box-shadow;
  contain: layout paint;
  overflow: hidden;
}

.project-card.project-card-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 100%;
  margin-bottom: 0;
  background: #0b1423;
}

.project-card .project-thumb {
  margin-bottom: 0;
  display: block;
  aspect-ratio: 16/11;
  transform: scale(1);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.18) 0%, rgba(5, 11, 20, 0.28) 24%, rgba(5, 11, 20, 0.78) 68%, rgba(5, 11, 20, 0.96) 100%);
  pointer-events: none;
}

.project-card-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(10, 20, 34, 0.72), rgba(8, 15, 28, 0.58));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.project-card-copy h3,
.project-card-copy p {
  color: #f4f8ff;
}

.project-card-copy h3 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
}

.project-card-copy p {
  margin-top: 0.6rem;
  color: rgba(232, 239, 255, 0.86);
}

.project-card::after {
  content: '';
  position: absolute;
  inset: auto -12% -28% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(25, 208, 164, 0.16), transparent 72%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 65px rgba(2, 8, 18, 0.42);
  border-color: rgba(137, 247, 255, 0.34);
}

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

.project-card:hover .project-thumb {
  transform: scale(1.08);
}

.project-card:hover .project-card-copy {
  border-color: rgba(137, 247, 255, 0.3);
  background: linear-gradient(145deg, rgba(12, 24, 40, 0.8), rgba(9, 18, 32, 0.66));
}

@media (prefers-reduced-motion: reduce) {
  .project-card,
  .project-card .project-thumb,
  .project-card::after,
  .project-card-copy {
    transition: none;
  }

  .project-card {
    opacity: 1;
    transform: none;
  }
}

.service-thumb {
  display: block;
  padding: 0.45rem;
  border: 1px solid rgba(137, 247, 255, 0.14);
  background: linear-gradient(145deg, rgba(7, 15, 28, 0.95), rgba(10, 24, 43, 0.88));
  object-fit: contain;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4/4;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.text-link { color: var(--accent); font-weight: 700; }

.timeline {
  position: relative;
  margin-top: 1.6rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--line);
  display: grid;
  gap: 1.3rem;
}

.timeline-item {
  background: linear-gradient(145deg, var(--surface), #0d1627);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 1rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(25, 208, 164, 0.17);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.95), rgba(13, 22, 39, 0.92));
  border: 2px solid rgba(25, 208, 164, 0.25);
  border-radius: 20px;
  padding: 2.4rem;
  min-height: 220px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(25, 208, 164, 0.15);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(25, 208, 164, 0.45);
  box-shadow: 0 16px 48px rgba(25, 208, 164, 0.15), inset 0 1px 0 rgba(25, 208, 164, 0.2);
}

.review-card,
.review-grid-card {
  position: relative;
  overflow: hidden;
}

.review-card::after,
.review-grid-card::after {
  content: '';
  position: absolute;
  inset: auto -10% -40% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(25, 208, 164, 0.12), transparent 70%);
  pointer-events: none;
}

.review-rating-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(25, 208, 164, 0.15);
}

.review-stars {
  color: #ffd166;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  font-weight: 700;
}

.review-score {
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  background: rgba(25, 208, 164, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(25, 208, 164, 0.2);
}

.review-quote {
  color: #d4e2ff;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.review-author {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.review-meta {
  margin-top: 0.2rem;
}

.review-name {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.review-title {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.review-location {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.reviews-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn.btn-secondary.reviews-toggle {
  padding: 1rem 2.2rem;
  border: 2px solid rgba(25, 208, 164, 0.4);
  background: rgba(25, 208, 164, 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn.btn-secondary.reviews-toggle:hover {
  background: rgba(25, 208, 164, 0.16);
  border-color: rgba(25, 208, 164, 0.6);
  box-shadow: 0 8px 20px rgba(25, 208, 164, 0.2);
  transform: translateY(-2px);
}

.reviews-toggle[aria-expanded='true'] {
  border-color: rgba(25, 208, 164, 0.55);
  background: rgba(25, 208, 164, 0.08);
}

.reviews-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-grid[hidden] {
  display: none;
}

.review-grid-card {
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.88), rgba(13, 22, 39, 0.88));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  min-height: 100%;
}

.reviews-summary {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.slider-btn:hover { transform: scale(1.05); }

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.team-down-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.45rem 0.78rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.team-down-trigger:hover {
  transform: translateY(1px);
}

.team-down-trigger:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cta-block {
  background: linear-gradient(135deg, #0f1f37, #123a55);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::after {
  content: '';
  position: absolute;
  inset: -50% 0 auto auto;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(137, 247, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.trust-band {
  padding: 2.2rem 0 0.8rem;
}

.trust-inner {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.72), rgba(13, 22, 39, 0.75));
  backdrop-filter: blur(8px);
  padding: 1rem 1.2rem;
}

.trust-marquee {
  margin-top: 0.35rem;
  overflow: hidden;
  white-space: nowrap;
}

.trust-track {
  display: inline-flex;
  gap: 2.2rem;
  min-width: 100%;
  animation: trust-scroll 24s linear infinite;
}

.trust-track span {
  font-family: 'Space Grotesk', sans-serif;
  color: #d9ebff;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-hero { padding-top: 7rem; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { max-width: 70ch; margin-top: 0.9rem; }
.page-hero .container {
  background: linear-gradient(120deg, rgba(14, 34, 58, 0.75), rgba(17, 52, 82, 0.45));
  border: 1px solid rgba(108, 171, 224, 0.22);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  backdrop-filter: blur(6px);
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 247, 255, 0.38);
  background: rgba(5, 16, 31, 0.5);
  color: #d7f3ff;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.detail-back-link:hover {
  transform: translateY(-1px);
  border-color: rgba(137, 247, 255, 0.72);
  background: rgba(15, 45, 73, 0.7);
}

.detail-layout {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 2fr 1fr;
}

.detail-main,
.detail-side {
  background: linear-gradient(145deg, var(--surface), #0d1627);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 18px 34px rgba(2, 8, 18, 0.28);
}

.detail-main h3,
.detail-side h3 { margin-bottom: 0.65rem; }

.detail-main ul,
.detail-side ul,
.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }

.detail-checklist {
  margin-top: 0.9rem;
  gap: 0.8rem !important;
}

.detail-checklist li {
  position: relative;
  padding: 0.75rem 0.85rem 0.75rem 2.9rem;
  border: 1px solid rgba(137, 247, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 31, 52, 0.85), rgba(12, 22, 38, 0.9));
  color: #e8efff;
  line-height: 1.6;
}

.detail-checklist li::before {
  content: '';
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(25, 208, 164, 0.95), rgba(38, 167, 255, 0.78));
  box-shadow: 0 0 0 4px rgba(25, 208, 164, 0.12);
}

.detail-checklist li::after {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 50%;
  width: 0.32rem;
  height: 0.62rem;
  border-right: 2px solid #052437;
  border-bottom: 2px solid #052437;
  transform: translateY(-64%) rotate(45deg);
}

.detail-checklist-compact li {
  padding-block: 0.7rem;
}

.tech-list,
.skill-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tech-list span,
.skill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  font-size: 0.82rem;
}

.image-open-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  padding: 0.35rem 0.7rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.image-open-btn:hover {
  color: var(--accent);
  border-color: rgba(25, 208, 164, 0.65);
  background: rgba(25, 208, 164, 0.12);
  transform: translateY(-1px);
}

.image-open-btn.is-active {
  color: #042335;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 700;
}

.gallery {
  margin-top: 1rem;
  position: relative;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-gallery {
  border: 1px solid rgba(115, 175, 227, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.service-gallery img {
  border-radius: 0;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(203, 233, 255, 0.42);
  background: rgba(6, 16, 31, 0.65);
  color: #dff4ff;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(16, 43, 70, 0.82);
  border-color: rgba(137, 247, 255, 0.75);
}

.gallery-nav-prev { left: 0.8rem; }
.gallery-nav-next { right: 0.8rem; }

.gallery-meta {
  margin-top: 0.75rem;
  display: flex;
  justify-content: flex-end;
}

.gallery-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: #acd9ff;
}

.service-preview-list {
  margin-top: 0.8rem;
}

.gallery-controls {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.form-wrap { display: flex; justify-content: center; }

.contact-split {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.info-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.policy-card,
.blog-card,
.contact-panel {
  background: linear-gradient(145deg, var(--surface), #0d1627);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.info-card h3,
.policy-card h2,
.blog-card h3,
.contact-panel h3 {
  margin-bottom: 0.7rem;
}

.policy-stack {
  display: grid;
  gap: 1rem;
}

.blog-category-head {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.blog-category-head .eyebrow {
  margin-bottom: 0;
}

.blog-category-head h2 {
  max-width: none;
  margin-bottom: 0;
}

.category-intro {
  max-width: 58rem;
}

.blog-article-card h3 {
  margin-bottom: 0;
}

.blog-showcase-card {
  padding: 0;
  overflow: hidden;
}

.blog-showcase-media {
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.blog-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-showcase-card:hover .blog-showcase-media img {
  transform: scale(1.04);
}

.blog-showcase-body {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.blog-showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #b6d8ff;
  font-size: 0.88rem;
}

.blog-showcase-meta span {
  position: relative;
}

.blog-showcase-meta span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

.blog-showcase-excerpt {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 60rem;
}

.blog-read-more {
  justify-self: start;
}

.blog-detail-shell {
  display: grid;
  gap: 1.5rem;
}

.blog-detail-cover {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.blog-detail-cover img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.blog-detail-card {
  display: grid;
  gap: 1.2rem;
}

.blog-detail-card h1 {
  max-width: 18ch;
}

.blog-detail-intro {
  font-size: 1.05rem;
  line-height: 1.85;
}

.blog-inline-image {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.blog-inline-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.blog-prose {
  display: grid;
  gap: 1.35rem;
}

.blog-prose > p,
.blog-section p {
  line-height: 1.9;
  max-width: 72ch;
}

.blog-section {
  display: grid;
  gap: 0.95rem;
  padding-top: 0.35rem;
}

.blog-section h3,
.blog-section h4 {
  margin-bottom: 0;
}

.blog-section h3 {
  margin-top: 0.6rem;
}

.blog-prose ul,
.blog-section ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.blog-prose li,
.blog-section li {
  color: var(--muted);
  position: relative;
  padding-left: 1.1rem;
}

.blog-prose li::before,
.blog-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.45);
}

.blog-table th,
.blog-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-table th {
  color: #eef7ff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
}

.blog-table td {
  color: var(--muted);
}

.blog-table tr:last-child td {
  border-bottom: 0;
}

.blog-table::-webkit-scrollbar {
  height: 10px;
}

.blog-table::-webkit-scrollbar-thumb {
  background: rgba(137, 247, 255, 0.22);
  border-radius: 999px;
}

.blog-prose code {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.15rem 0.4rem;
  color: #e8f4ff;
}

.blog-toc-card {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.blog-toc-card a {
  color: #cfe7ff;
  text-decoration: none;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.blog-toc-card a:hover {
  border-color: rgba(25, 208, 164, 0.4);
  background: rgba(25, 208, 164, 0.08);
  transform: translateY(-1px);
}

.blog-note {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: rgba(25, 208, 164, 0.08);
  color: #d8f6ee;
}

.blog-number-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.blog-number-list li {
  line-height: 1.8;
}

.blog-two-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-choice-card {
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.blog-choice-card h4 {
  margin-bottom: 0.8rem;
}

.blog-page-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.9fr);
  align-items: start;
}

.blog-main-column {
  min-width: 0;
}

.blog-list-stack {
  display: grid;
  gap: 1.25rem;
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 6.5rem;
}

.blog-sidebar-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.blog-sidebar-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.blog-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.blog-search-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #eef7ff;
  padding: 0.95rem 1rem;
  outline: none;
}

.blog-search-form input::placeholder {
  color: rgba(207, 231, 255, 0.55);
}

.blog-search-form input:focus {
  border-color: rgba(25, 208, 164, 0.45);
  box-shadow: 0 0 0 4px rgba(25, 208, 164, 0.08);
}

.blog-sidebar-list,
.blog-category-list {
  display: grid;
  gap: 0.75rem;
}

.blog-sidebar-list a {
  color: #dceeff;
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blog-sidebar-list a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.blog-category-filter {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #dceeff;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.blog-category-filter:hover,
.blog-category-filter.is-active {
  border-color: rgba(25, 208, 164, 0.45);
  background: rgba(25, 208, 164, 0.1);
  transform: translateY(-1px);
}

.blog-post-extras-section {
  padding-top: 0;
}

.blog-post-extras {
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
}

.blog-post-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blog-tags-block,
.blog-share-block {
  display: grid;
  gap: 0.8rem;
}

.blog-toolbar-label {
  margin: 0;
  color: #eef7ff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #dceeff;
  font-size: 0.9rem;
  text-decoration: none;
}

.blog-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.blog-share-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #eef7ff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.blog-share-link:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 208, 164, 0.45);
  background: rgba(25, 208, 164, 0.12);
}

.blog-comment-head {
  display: grid;
  gap: 0.35rem;
}

.blog-comment-head h3 {
  margin: 0;
}

.blog-comment-head p {
  margin: 0;
  color: var(--muted);
}

.blog-comment-form {
  width: 100%;
  gap: 1.1rem;
}

.blog-comment-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-comment-form label {
  color: #eef7ff;
}

.blog-comment-consent {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-comment-consent input {
  width: 16px;
  height: 16px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  flex: 0 0 auto;
}

.form-consent a {
  color: var(--accent-3);
  text-decoration: underline;
}

.form-meta-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: -0.25rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(137, 247, 255, 0.2);
  background: linear-gradient(145deg, rgba(8, 14, 24, 0.96), rgba(16, 27, 46, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-copy {
  flex: 1 1 auto;
}

.cookie-banner-copy p {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.cookie-banner-copy a {
  color: var(--accent-3);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner-actions .btn {
  min-width: 132px;
}

.policy-card p + p,
.about-copy p + p,
.contact-panel p + p {
  margin-top: 0.85rem;
}

.policy-card ul,
.about-points,
.contact-list,
.tag-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.policy-card li,
.about-points li,
.contact-list li {
  color: var(--muted);
}

.about-copy {
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.92), rgba(13, 22, 39, 0.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
}

.blog-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  display: grid;
  gap: 0.95rem;
}

.blog-card .eyebrow {
  margin-bottom: 0;
  font-size: 0.72rem;
}

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #b6d8ff;
  font-size: 0.85rem;
}

.tag-list {
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
}

.tag-list li {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(137, 247, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #cfe7ff;
  font-size: 0.88rem;
}

.footer-grid.footer-grid-wide {
  grid-template-columns: 1.15fr 0.95fr 0.95fr 0.9fr;
}

.contact-form {
  width: min(740px, 100%);
  display: grid;
  gap: 1rem;
  background: linear-gradient(145deg, var(--surface), #0d1627);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
}

.contact-form label { display: grid; gap: 0.45rem; font-weight: 600; }

.form-feedback {
  margin-top: 0.2rem;
  color: #b9fbe8;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 0.78rem 0.9rem;
  font-family: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-form select {
  background: #ffffff;
  color: #0d1b2d;
  border-color: #d4deef;
}

.contact-form select option {
  background: #ffffff;
  color: #0d1b2d;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid rgba(138, 210, 255, 0.2);
  margin-top: 2.5rem;
  padding: 2.5rem 0 1.75rem;
  background: linear-gradient(180deg, rgba(8, 18, 34, 0.92), rgba(6, 12, 24, 0.98));
  color: #d7e8ff;
}

.site-footer .brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #e7f5ff;
}

.site-footer h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b5dffc;
  margin-bottom: 0.8rem;
}

.site-footer p,
.site-footer li a {
  color: rgba(216, 235, 255, 0.85);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: flex-start;
}

.social-links {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem !important;
  justify-content: flex-start;
}

.site-footer > .container .footer-grid > div:nth-child(3) {
  text-align: left;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(67, 211, 255, 0.25);
  background: rgba(8, 18, 34, 0.55);
  color: #61d4ff;
}

.social-links a:hover {
  background: rgba(20, 110, 165, 0.85);
  color: #ffffff;
}

.copyright {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(209, 228, 252, 0.7);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(137, 247, 255, 0.22);
  background: linear-gradient(145deg, rgba(10, 20, 35, 0.95), rgba(15, 32, 54, 0.88));
  color: var(--accent);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: #f4fbff;
  border-color: rgba(25, 208, 164, 0.55);
  box-shadow: 0 14px 26px rgba(2, 8, 18, 0.3);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 1.8rem;
  padding: 1.1rem 0;
}

.page-transition {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #061021, #133455);
  z-index: 200;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.reveal { opacity: 0; transform: translateY(28px); }

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 20, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1rem;
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox-inner {
  width: min(980px, 100%);
  max-height: 92vh;
  background: #091426;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
}

.image-lightbox-img {
  width: 100%;
  max-height: calc(92vh - 70px);
  object-fit: contain;
  border-radius: 10px;
}

.image-lightbox-close {
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 0.6rem;
  background: #ffffff;
  color: #0d1b2d;
  border: 0;
  border-radius: 8px;
  padding: 0.35rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

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

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-3);
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(137, 247, 255, 0.55);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.active {
  width: 46px;
  height: 46px;
  border-color: rgba(25, 208, 164, 0.9);
}

.smart-guide-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #022132;
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 220;
  box-shadow: 0 12px 30px rgba(38, 167, 255, 0.35);
  animation: smart-guide-pulse 2s infinite;
}

@keyframes smart-guide-pulse {
  0% { box-shadow: 0 0 0 0 rgba(38, 167, 255, 0.42); }
  70% { box-shadow: 0 0 0 14px rgba(38, 167, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 167, 255, 0); }
}

.smart-guide-panel {
  position: fixed;
  right: 1.2rem;
  bottom: 5.4rem;
  width: min(380px, calc(100vw - 1.6rem));
  height: min(560px, calc(100vh - 8rem));
  background: linear-gradient(155deg, #0e1a2f, #0a1528);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  z-index: 220;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.smart-guide-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.smart-guide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid var(--line);
}

.smart-guide-head h3 {
  font-size: 1rem;
}

.smart-guide-close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 8px;
  padding: 0.24rem 0.55rem;
  cursor: pointer;
}

.smart-guide-messages {
  height: calc(100% - 118px);
  overflow-y: auto;
  padding: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.smart-guide-bubble {
  max-width: 86%;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  font-size: 0.93rem;
  line-height: 1.45;
  animation: smart-message-in 0.28s ease;
}

.smart-guide-bubble p {
  white-space: pre-wrap;
}

@keyframes smart-message-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.smart-guide-bubble.user {
  margin-left: auto;
  background: #ffffff;
  color: #0b1b31;
}

.smart-guide-bubble.assistant {
  margin-right: auto;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: #e6f0ff;
}

.smart-guide-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}

.smart-guide-actions button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #e7f5ff;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.smart-guide-actions button:hover {
  background: rgba(25, 208, 164, 0.25);
  transform: translateY(-1px);
}

.smart-guide-typing {
  display: inline-flex;
  gap: 0.22rem;
  align-items: center;
}

.smart-guide-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bcd0f2;
  animation: smart-dots 1s infinite ease-in-out;
}

.smart-guide-typing span:nth-child(2) { animation-delay: 0.2s; }
.smart-guide-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes smart-dots {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.smart-guide-form {
  height: 58px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.7rem;
}

.smart-guide-form input {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.5rem 0.7rem;
  font: inherit;
}

.smart-guide-form button {
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03202f;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.smart-guide-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Expertise & Charts Styles */
.badge-cluster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pro-badge {
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.12), rgba(38, 167, 255, 0.08));
  border: 1px solid rgba(25, 208, 164, 0.35);
  border-radius: 16px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.pro-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 167, 255, 0.65);
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.18), rgba(38, 167, 255, 0.14));
}

.badge-icon {
  font-size: 2.4rem;
  display: block;
}

.badge-text {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.chart-container {
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.75), rgba(13, 22, 39, 0.78));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  min-height: 340px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chart-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.chart-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.8rem;
  text-align: center;
}

.chart-container canvas {
  width: 100% !important;
  height: 100% !important;
  max-height: 300px;
}

@media (max-width: 980px) {
  .chart-container {
    min-height: 320px;
  }
  .chart-container canvas {
    max-height: 260px;
  }
  .blog-toc-card {
    grid-template-columns: 1fr;
  }
  .blog-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .chart-container {
    min-height: 300px;
  }
  .chart-container canvas {
    max-height: 220px;
  }
}

.capabilities-matrix {
  background: linear-gradient(145deg, rgba(17, 27, 46, 0.75), rgba(13, 22, 39, 0.78));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.capabilities-matrix h3 {
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.capability-item {
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.08), rgba(38, 167, 255, 0.06));
  border: 1px solid rgba(137, 247, 255, 0.15);
  border-radius: 14px;
  padding: 1.2rem;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.capability-item:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 208, 164, 0.45);
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.14), rgba(38, 167, 255, 0.12));
}

.capability-item h4 {
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-weight: 700;
}

.capability-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.key-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(38, 167, 255, 0.12), rgba(25, 208, 164, 0.08));
  border: 1px solid rgba(38, 167, 255, 0.25);
  border-radius: 16px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(38, 167, 255, 0.55);
  box-shadow: 0 12px 30px rgba(38, 167, 255, 0.15);
}

.highlight-card .number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}

.highlight-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-fade-in 0.7s ease forwards;
}

@keyframes reveal-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Technologies Section */
/* Highlight Text (Yellow Background) */
.highlight-text {
  background: linear-gradient(120deg, #ffff00, #ffe000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  padding: 0 8px;
}

/* Technology Section */
.tech-section {
  margin-top: 3rem;
  position: relative;
  padding: 2rem clamp(1rem, 2.5vw, 2rem) 1.3rem;
  border-radius: 34px;
  border: 1px solid rgba(72, 202, 228, 0.14);
  background:
    linear-gradient(180deg, rgba(14, 31, 54, 0.82) 0%, rgba(10, 23, 41, 0.72) 100%),
    radial-gradient(circle at top left, rgba(25, 208, 164, 0.12), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(160, 246, 255, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.tech-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.38;
  pointer-events: none;
}

.tech-section > * {
  position: relative;
  z-index: 1;
}

.tech-tabs {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at 10% 50%, rgba(25, 208, 164, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(18, 42, 72, 0.92) 0%, rgba(13, 50, 56, 0.76) 100%);
  padding: 1.45rem 1.55rem;
  border-radius: 24px;
  border: 1px solid rgba(32, 220, 185, 0.18);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(168, 246, 255, 0.05),
    0 14px 28px rgba(4, 13, 24, 0.22);
}

.tech-tabs::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(137, 247, 255, 0.08) 45%, transparent 72%);
  transform: translateX(-100%);
  animation: tech-tabs-sheen 12s ease-in-out infinite;
  pointer-events: none;
}

.tech-tab {
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  color: #99abc6;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  overflow: hidden;
  min-width: 158px;
  min-height: 54px;
  backdrop-filter: blur(10px);
}

.tech-tab:hover {
  color: var(--accent);
  background: rgba(25, 208, 164, 0.11);
  border-color: rgba(25, 208, 164, 0.24);
  transform: translateY(-2px);
}

.tech-tab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.tech-tab.active {
  color: #031723;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: var(--accent);
  box-shadow:
    0 10px 26px rgba(25, 208, 164, 0.34),
    0 0 36px rgba(25, 208, 164, 0.16);
}

.tech-tab:hover::after,
.tech-tab.active::after {
  transform: translateX(120%);
}

.tech-content {
  position: relative;
  min-height: 250px;
}

.tech-content::before {
  content: '';
  position: absolute;
  top: -0.6rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 255, 232, 0.3), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.tech-category {
  display: none;
  animation: slideIn 0.4s ease;
}

.tech-category.active {
  display: block;
}

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

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2rem;
  padding: 1.3rem 0 0.8rem;
  align-items: start;
}

.tech-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.35s ease, filter 0.35s ease;
  cursor: pointer;
  position: relative;
  padding: 0.85rem 0.35rem 0.45rem;
  animation: tech-float 5.5s ease-in-out infinite;
  will-change: transform;
}

.tech-logo-item::before {
  content: '';
  position: absolute;
  inset: 20% 6% 12%;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 42%, rgba(38, 167, 255, 0.12), transparent 68%);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.tech-logo-item:nth-child(2n) {
  animation-duration: 6.4s;
  animation-delay: -1.2s;
}

.tech-logo-item:nth-child(3n) {
  animation-duration: 5.1s;
  animation-delay: -2s;
}

.tech-orb {
  position: absolute;
  top: -0.05rem;
  right: 50%;
  transform: translateX(50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #9ff8ff 0%, rgba(25, 208, 164, 0.65) 60%, transparent 100%);
  box-shadow: 0 0 16px rgba(137, 247, 255, 0.8);
  opacity: 0.75;
  animation: tech-orb 7.2s ease-in-out infinite;
  pointer-events: none;
}

.tech-logo-item img {
  width: 104px;
  height: 104px;
  background: #ffffff;
  border: 1px solid rgba(21, 71, 98, 0.34);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  padding: 13px;
  object-fit: contain;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.16),
    inset 0 -8px 18px rgba(15, 36, 54, 0.08);
  position: relative;
  z-index: 1;
}

.tech-logo-item:hover img {
  transform: translateY(-8px) scale(1.07) rotate(-2deg);
  border-color: rgba(25, 208, 164, 0.5);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(25, 208, 164, 0.25), 0 0 28px rgba(38, 167, 255, 0.16);
  filter: saturate(1.08);
}

.tech-logo-item:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 16px 22px rgba(8, 22, 38, 0.28));
}

.tech-logo-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.tech-logo-item:hover .tech-orb {
  opacity: 1;
  animation-duration: 4.8s;
}

.tech-logo-item h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #d5e3f6;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  letter-spacing: -0.01em;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.tech-logo-item:hover h4 {
  color: #dffcff;
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(137, 247, 255, 0.24);
}

.tech-category.active .tech-logo-item {
  animation-name: tech-card-enter, tech-float;
  animation-duration: 0.65s, 5.5s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: both, both;
}

.tech-category.active .tech-logo-item:nth-child(1) { animation-delay: 2s, 0s; }
.tech-category.active .tech-logo-item:nth-child(2) { animation-delay: 2.12s, -1.2s; }
.tech-category.active .tech-logo-item:nth-child(3) { animation-delay: 2.24s, -2.1s; }
.tech-category.active .tech-logo-item:nth-child(4) { animation-delay: 2.36s, -1.7s; }
.tech-category.active .tech-logo-item:nth-child(5) { animation-delay: 2.48s, -0.9s; }
.tech-category.active .tech-logo-item:nth-child(6) { animation-delay: 2.6s, -2.5s; }

@keyframes tech-card-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes tech-orb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  50% {
    transform: translate3d(-12px, 10px, 0) scale(1.25);
  }
}

@keyframes tech-tabs-sheen {
  0%, 55% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(140%);
  }
}

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }

  .tech-logo-item img {
    width: 94px;
    height: 94px;
  }
}

@media (max-width: 980px) {
  .tech-section {
    padding: 1.6rem 1.1rem 1rem;
    border-radius: 28px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .tech-tabs {
    gap: 0.8rem;
    padding: 1.2rem;
  }

  .tech-tab {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    min-width: 0;
  }

  .tech-logo-item img {
    width: 85px;
    height: 85px;
  }

  .tech-logo-item h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 760px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0.85rem 0 0.2rem;
  }

  .tech-tabs {
    flex-direction: column;
    gap: 0.6rem;
  }

  .tech-tab {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    text-align: center;
  }

  .tech-logo-item img {
    width: 82px;
    height: 82px;
  }

  .tech-orb {
    top: -0.1rem;
    right: 50%;
  }

  .tech-logo-item h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tech-section {
    padding: 1.2rem 0.85rem 0.8rem;
    border-radius: 24px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .tech-logo-item img {
    width: 78px;
    height: 78px;
    padding: 10px;
  }

  .tech-tabs {
    padding: 1rem;
    gap: 0.5rem;
  }

  .tech-tab {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .tech-logo-item,
  .tech-category.active .tech-logo-item {
    animation-duration: 2s, 7.5s;
  }
}

/* FAQ Section */
.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 2.4rem;
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15, 26, 45, 0.82), rgba(9, 18, 32, 0.88));
  border: 1px solid rgba(137, 247, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.faq-intro h2 {
  max-width: 10ch;
  line-height: 1.02;
  margin-bottom: 1rem;
}

.faq-intro p:last-child {
  max-width: 28rem;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(137, 247, 255, 0.12);
  background: linear-gradient(145deg, rgba(17, 31, 52, 0.72), rgba(11, 22, 39, 0.92));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 208, 164, 0.28);
  box-shadow: 0 14px 28px rgba(6, 18, 32, 0.24);
}

.faq-item.active {
  border-color: rgba(25, 208, 164, 0.4);
  box-shadow: 0 18px 32px rgba(7, 20, 35, 0.24);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(137, 247, 255, 0.22);
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #b8f9ff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.18), rgba(38, 167, 255, 0.16));
  border-color: rgba(25, 208, 164, 0.42);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-answer.active {
  max-height: 220px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  line-height: 1.75;
  transform: translateY(-6px);
  transition: transform 0.3s ease;
}

.faq-answer.active p {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .faq-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .faq-question {
    padding: 1.05rem 1rem;
    font-size: 0.96rem;
  }

  .faq-answer p {
    padding: 0 1rem 1.05rem;
    font-size: 0.94rem;
  }
}

/* Process Section Styles */
.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
  position: relative;
}

.process-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(25, 208, 164, 0.2), transparent);
  z-index: 0;
}

.process-accordion {
  display: grid;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.process-accordion::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.1), rgba(38, 167, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: source-out;
  pointer-events: none;
}

.process-item {
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.08), rgba(38, 167, 255, 0.05));
  border: 2px solid rgba(25, 208, 164, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-item:hover:not(.active) {
  border-color: rgba(25, 208, 164, 0.35);
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.12), rgba(38, 167, 255, 0.08));
  box-shadow: 0 6px 18px rgba(25, 208, 164, 0.1);
}

.process-item.active {
  border-color: rgba(25, 208, 164, 0.6);
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.2), rgba(38, 167, 255, 0.15));
  box-shadow: 0 12px 36px rgba(25, 208, 164, 0.2), inset 0 0 20px rgba(25, 208, 164, 0.08);
}

.process-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgba(25, 208, 164, 0) 0%, rgba(25, 208, 164, 0.05) 100%);
}

.process-header:hover {
  background: linear-gradient(90deg, rgba(25, 208, 164, 0.05) 0%, rgba(25, 208, 164, 0.1) 100%);
}

.process-item.active .process-header {
  background: linear-gradient(90deg, rgba(25, 208, 164, 0.08) 0%, rgba(25, 208, 164, 0.15) 100%);
}

.process-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
}

.process-toggle {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 200;
  line-height: 1;
  transition: all 0.3s ease;
  background: rgba(25, 208, 164, 0.1);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(25, 208, 164, 0.2);
}

.process-item.active .process-toggle {
  transform: rotate(45deg) scale(1.1);
  color: var(--accent-2);
  background: rgba(38, 167, 255, 0.15);
  border-color: rgba(38, 167, 255, 0.4);
  box-shadow: 0 0 12px rgba(38, 167, 255, 0.3);
}

.process-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.process-content.active {
  max-height: 200px;
  padding: 0 1.2rem 1rem;
}

.process-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}

.process-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.detail-tag {
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.2), rgba(38, 167, 255, 0.15));
  border: 1.5px solid rgba(25, 208, 164, 0.45);
  color: #7fffda;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(25, 208, 164, 0.15);
}

.detail-tag:hover {
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.3), rgba(38, 167, 255, 0.2));
  border-color: rgba(25, 208, 164, 0.7);
  box-shadow: 0 4px 12px rgba(25, 208, 164, 0.25);
  transform: translateY(-2px);
}

.process-description {
  color: rgba(212, 226, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: justify;
}

.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(25, 208, 164, 0.12), rgba(38, 167, 255, 0.08), rgba(137, 247, 255, 0.05));
  border: 2px solid rgba(25, 208, 164, 0.25);
  border-radius: 16px;
  min-height: 420px;
  box-shadow: inset 0 0 30px rgba(25, 208, 164, 0.08);
}

.process-flow {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.process-flow circle {
  animation: none;
}

.process-flow circle:nth-child(1) {
  animation-delay: 0s;
}

.process-flow circle:nth-child(2) {
  animation-delay: 0.5s;
}

.process-flow circle:nth-child(3) {
  animation-delay: 1s;
}

.process-flow circle:nth-child(4) {
  animation-delay: 1.5s;
}

.process-flow circle:nth-child(5) {
  animation-delay: 2s;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.1;
    r: 80px;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    opacity: 0.08;
    r: 85px;
  }
}

.flow-line {
  stroke: url(#lineGradient);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  transition: all 0.5s ease;
  filter: drop-shadow(0 2px 4px rgba(25, 208, 164, 0.3));
}

.phase-item .phase-bg {
  fill: #ff8c42;
  stroke: #ff8c42;
  stroke-width: 2.5;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 12px rgba(255, 140, 66, 0.3));
  cursor: pointer;
}

.phase-item .phase-bg:hover {
  fill: #ffaa66;
  stroke: #ff9d5c;
  filter: drop-shadow(0 0 16px rgba(255, 140, 66, 0.5));
}

.phase-item.active .phase-bg {
  fill: #ff7d2e;
  stroke: #ff6b1a;
  stroke-width: 3;
  filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.6));
}

.phase-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-anchor: middle;
  color: #ffffff;
  pointer-events: none;
  transition: all 0.4s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

SVG {
  max-width: 100%;
}

@media (max-width: 1200px) {
  .process-wrapper {
    gap: 1.5rem;
  }

  .process-visual {
    min-height: 400px;
  }
}

@media (max-width: 980px) {
  .process-wrapper {
    gap: 1.2rem;
  }

  .process-visual {
    min-height: 380px;
    padding: 1.2rem;
  }

  .process-flow {
    transform: scale(0.8);
  }
}

@media (max-width: 760px) {
  .process-wrapper {
    gap: 1.5rem;
  }

  .process-accordion {
    order: 2;
  }

  .process-visual {
    order: 1;
    min-height: 350px;
  }

  .process-flow {
    transform: scale(0.75);
  }

  .process-header {
    padding: 1rem;
  }

  .process-number {
    font-size: 1.2rem;
    min-width: 40px;
  }

  .process-title {
    font-size: 1rem;
  }

  .process-toggle {
    font-size: 1.6rem;
  }

  .process-content.active {
    max-height: 400px;
    padding: 0 1rem 1rem;
  }

  .process-content p {
    font-size: 0.88rem;
  }

  .detail-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .process-flow {
    transform: scale(0.6);
  }

  .phase-text {
    font-size: 11px;
  }

  .process-header {
    padding: 0.9rem;
    gap: 0.7rem;
  }

  .process-toggle {
    min-width: 20px;
  }

  .process-number {
    font-size: 1rem;
  }

  .process-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 980px) {
  .grid-2,
  .detail-layout,
  .footer-grid,
  .footer-grid.footer-grid-wide,
  .card-grid,
  .info-grid,
  .blog-grid,
  .contact-split,
  .charts-grid,
  .matrix-grid,
  .key-highlights,
  .process-wrapper { grid-template-columns: 1fr; }

  .site-footer .footer-grid {
    justify-items: stretch;
    align-items: start;
    text-align: left;
  }

  .site-footer .footer-grid > div {
    justify-self: stretch;
    width: 100%;
  }

  .site-footer .footer-grid > div:nth-child(2),
  .site-footer .footer-grid > div:nth-child(3) {
    justify-self: stretch;
  }

  .site-footer .footer-grid > div:last-child {
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    margin-left: 0;
  }

  .site-footer .footer-grid > div h3,
  .site-footer .footer-grid > div p,
  .site-footer .footer-grid > div ul,
  .site-footer .brand {
    text-align: left;
    justify-content: flex-start;
  }

  .site-footer .footer-grid > div:last-child h3,
  .site-footer .footer-grid > div:last-child .social-links {
    justify-content: flex-start;
  }

  .site-footer .social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .ceo-wrap { grid-template-columns: 1fr; }

  .hero { min-height: 82vh; }

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

  .process-visual {
    min-height: 400px;
    padding: 1.5rem;
  }

  .process-flow {
    transform: scale(0.85);
  }
}

@media (max-width: 980px) {
  .blog-page-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .blog-search-form {
    grid-template-columns: 1fr;
  }

  .blog-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: 16px;
  }

  .blog-table th,
  .blog-table td {
    padding: 0.8rem 0.85rem;
    font-size: 0.95rem;
    min-width: 140px;
    white-space: normal;
  }

  .blog-table th:first-child,
  .blog-table td:first-child {
    min-width: 120px;
  }

  .blog-post-toolbar,
  .blog-comment-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-toolbar {
    display: grid;
  }

  .blog-sidebar-card,
  .blog-showcase-body {
    padding: 1.1rem;
  }

  .blog-category-filter {
    padding: 0.8rem 0.9rem;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .section { padding: 4.2rem 0; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 4%;
    flex-direction: column;
    background: #0d1627;
    border: 1px solid var(--line);
    border-radius: 12px;
    width: 220px;
    padding: 0.8rem;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-links.open { opacity: 1; pointer-events: auto; transform: scale(1); }

  .grid-2,
  .card-grid,
  .detail-layout,
  .footer-grid,
  .footer-grid.footer-grid-wide,
  .info-grid,
  .blog-grid,
  .contact-split,
  .stat-grid,
  .testimonial-slider,
  .reviews-grid,
  .charts-grid,
  .matrix-grid,
  .key-highlights,
  .badge-cluster,
  .process-wrapper { grid-template-columns: 1fr; }

  .services-carousel-controls {
    justify-content: center;
  }

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

  .gallery-nav {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .gallery-nav-prev { left: 0.55rem; }
  .gallery-nav-next { right: 0.55rem; }

  .cursor-dot,
  .cursor-ring,
  .smart-guide-panel,
  .smart-guide-fab { display: none; }

  .chart-container {
    min-height: 300px;
  }

  .chart-container canvas {
    max-height: 220px;
  }

  .highlight-card .number {
    font-size: 2rem;
  }

  .site-footer {
    padding: 2rem 0 1.4rem;
  }

  .site-footer .footer-grid {
    gap: 1.35rem;
  }

  .site-footer .footer-grid > div {
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(138, 210, 255, 0.08);
  }

  .site-footer .footer-grid > div:last-child {
    border-bottom: 0;
  }

  .site-footer ul li + li {
    margin-top: 0.35rem;
  }
}
