body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}


:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #f0f2f7;
  --text: #0b1220;
  --muted: #4b5565;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 40px rgba(2, 6, 23, 0.10);
  --navy: #0e3a5c;
  --sky: #1ea7e1;
  --orange: #f6a01a;
  --green: #1f8f3a;
  --primary: var(--sky);
  --primary-2: #4bc0ee;
  --accent: var(--orange);
  --ring: rgba(30, 167, 225, 0.30);
  --radius: 18px;
  --container: 1120px;
}

[data-theme="dark"] {
  --bg: #070b16;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.03);
  --text: #eef2ff;
  --muted: rgba(238, 242, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  --navy: #a9c4dc;
  --sky: #5ccbf0;
  --orange: #ffbf4b;
  --green: #47d16d;
  --primary: var(--sky);
  --primary-2: #8ae0fb;
  --accent: var(--orange);
  --ring: rgba(92, 203, 240, 0.30);
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

.seo-text {
  position: absolute;
  left: -9999px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.page {
  padding-top: 88px;
}

.page-hero {
  padding: 56px 0 28px;
}

.page-hero h1 {
  margin: 14px 0 10px;
  letter-spacing: -0.03em;
  font-size: clamp(30px, 4.2vw, 44px);
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  height: 100%;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.6;
  transition: all 0.25s ease;
}

.icon-list i {
  width: 18px;
  height: 18px;
  color: var(--primary);
  transition: all 0.25s ease;
}

.icon-list li:hover {
  transform: translateX(6px);
}

.icon-list li:hover i {
  transform: scale(1.25);
  color: var(--accent);
}

input:hover, textarea:hover {
  border-color: var(--primary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-item:hover svg {
  transform: scale(1.15);
  color: var(--accent);
  transition: 0.2s;
}
.section.compact p {
  margin-bottom: 10px;
}

.section.compact h2 {
  margin-bottom: 10px;
}
.section.compact + .section.compact {
  margin-top: -50px;
}
.section img,
.hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.section img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
   width: 100%;
  max-width: 480px;
}
.hero-copy,
.section h2,
.section p {
  max-width: 520px;
  margin-bottom: 8px;
}
.section {
  position: relative;
}

.section::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  margin: 20px auto 0;
  background: var(--border);
  opacity: 0.4;
}
.section img:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 70px rgba(0,0,0,0.3);
}
.image-frame {
  background: var(--surface);
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  max-width: 520px;
  margin: 0 auto;
}
.image-frame {
  transition: transform 0.4s ease;
}

.image-frame:hover {
  transform: translateY(-6px) scale(1.02);
}
.image-frame img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.prose {
  color: var(--muted);
  line-height: 1.75;
}

.prose h2, .prose h3 {
  color: var(--text);
}

.prose p {
  margin: 0 0 14px;
}

.prose ul {
  margin: 0 0 14px 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.illustration {
  display: grid;
  place-items: center;
}

.illustration img {
  width: 100%;
  max-width: 720px;
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(2, 6, 23, 0.18));
}

.section {
  padding: 60px 0;
}

.section h2 {
  margin-bottom: 8px;
}

.section.compact {
  padding: 64px 0;
}
.hero-layout {
  gap: 24px;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: fixed;
  width: 100%;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo img {
  height: 58px;
  width: auto;
}

.navbar-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.navbar nav a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.navbar nav a:hover {
  color: var(--text);
}

.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--orange), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
  opacity: 0.9;
}

.navbar nav a:hover::after {
  transform: scaleX(1);
}

.navbar nav a.is-active {
  color: var(--text);
}

.navbar nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 72px;
  position: relative;
  background:
    radial-gradient(1000px 600px at 12% 8%, color-mix(in srgb, var(--sky) 34%, transparent), transparent),
    radial-gradient(900px 520px at 85% 20%, color-mix(in srgb, var(--orange) 26%, transparent), transparent),
    radial-gradient(900px 540px at 70% 82%, color-mix(in srgb, var(--green) 18%, transparent), transparent);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% auto;
  animation: gradientShift 6s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {
  to { background-position: 200% center; }
}
.about-strip p,
.section p {
  max-width: 640px;
}
.section h2 {
  margin-bottom: 12px;
}
.highlight-box {
  padding: 24px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 0 auto;
  max-width: 700px;
}

.hero p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero.compact {
  min-height: auto;
  padding: 30px 0 40px;

}
.hero.compact {
  padding-top: 120px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  margin: 10px 10px 0 0;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-weight: 600;
}

.primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #ffffff;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--primary) 25%, transparent);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--primary) 35%, transparent);
}

.secondary {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.muted-link {
  color: var(--muted);
  text-decoration: none;
}

.muted-link:hover {
  color: var(--text);
}

.about-strip {
  text-align: center;
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services {
  padding: 96px 0;
  text-align: center;
}

.service-grid {
  margin-top: 34px;
}

.service-card {
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--primary) 36%, var(--border));
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--sky) 22%, transparent),
    color-mix(in srgb, var(--orange) 18%, transparent),
    color-mix(in srgb, var(--green) 18%, transparent));
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--sky), var(--orange), var(--green));
  opacity: 0.9;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
}

.vision {
  padding: 96px 0;
  text-align: center;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why {
  padding: 96px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.section.compact {
  padding: 40px 0;
}
.cta {
  padding: 50px 0;
  text-align: center;
  background: radial-gradient(1000px 540px at 50% 20%, color-mix(in srgb, var(--primary) 18%, transparent), transparent);
  border-top: 1px solid var(--border);
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.footer-title {
  color: var(--text);
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
}

.hero-inner {
  position: relative;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 640px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(2, 6, 23, 0.20));
}

.blob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.55;
  transform: translateZ(0);
  animation: floatBlob 10s ease-in-out infinite;
}

.blob.one {
  background: color-mix(in srgb, var(--sky) 70%, transparent);
  top: -10px;
  left: -10px;
  animation-delay: 0s;
}

.blob.two {
  background: color-mix(in srgb, var(--orange) 70%, transparent);
  bottom: 10px;
  right: -14px;
  animation-delay: 1.5s;
}

.blob.three {
  background: color-mix(in srgb, var(--green) 60%, transparent);
  top: 55%;
  left: 60%;
  width: 160px;
  height: 160px;
  animation-delay: 3s;
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -16px, 0) scale(1.04); }
}

.hero-actions {
  margin-top: 20px;
}

.hero-panel {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}

.hero-panel strong {
  display: block;
  color: var(--text);
}

.hero-panel span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.kpi {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  text-align: left;
}

.kpi .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
}

.kpi .label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input, textarea, select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border));
  box-shadow: 0 0 0 4px var(--ring);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* Floating Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--primary) 28%, transparent) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: moveParticles 40s linear infinite;
  opacity: 0.18;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 520px at 18% 22%, color-mix(in srgb, var(--sky) 48%, transparent), transparent),
    radial-gradient(900px 520px at 88% 18%, color-mix(in srgb, var(--orange) 42%, transparent), transparent),
    radial-gradient(900px 520px at 70% 82%, color-mix(in srgb, var(--green) 32%, transparent), transparent),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 40%, #000000), color-mix(in srgb, var(--bg) 70%, #000000));
  transition: opacity 600ms ease, transform 600ms ease;
  opacity: 0;
  transform: translateY(10px);
}

.intro.is-active {
  opacity: 1;
  transform: translateY(0);
}

.intro.is-out {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.intro-card {
  width: min(560px, calc(100% - 48px));
  border-radius: 26px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
  backdrop-filter: blur(16px);
}

.intro-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.intro-actions .btn {
  margin: 0;
  padding: 12px 16px;
}

.intro-logo {
  width: 220px;
  height: auto;
}

.intro-line {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  border: 1px solid var(--border);
}

.intro-line > div {
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--orange), var(--green));
  animation: introMove 1200ms ease-in-out infinite;
}

@keyframes introMove {
  0% { transform: translateX(-10%); width: 30%; }
  50% { transform: translateX(70%); width: 50%; }
  100% { transform: translateX(-10%); width: 30%; }
}

@keyframes moveParticles {
  from { background-position: 0 0; }
  to { background-position: 1000px 1000px; }
}

@media (max-width: 980px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .navbar nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 10px 0 18px;
  }

  .navbar nav[data-open="true"] {
    display: block;
  }

  .navbar nav a {
    display: block;
    margin: 0;
    padding: 12px 24px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .logo img {
    height: 46px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
