:root {
  --bg: #07111f;
  --bg-2: #0b1b31;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.14);
  --text: #eef6ff;
  --muted: #b8c7d9;
  --primary: #38bdf8;
  --secondary: #a78bfa;
  --accent: #fbbf24;
  --green: #34d399;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.13), transparent 30rem),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  padding-left: 1.2rem;
}

.section {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
  padding: 92px 0;
  position: relative;
}

.glass {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  animation: fadeOut 0.75s ease forwards;
  pointer-events: none;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.cursor-glow {
  width: 280px;
  height: 280px;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.13), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.orb-one {
  width: 360px;
  height: 360px;
  background: #38bdf8;
  top: 12%;
  left: -120px;
}

.orb-two {
  width: 300px;
  height: 300px;
  background: #a78bfa;
  bottom: 12%;
  right: -110px;
  animation-delay: 1.8s;
}

.orb-three {
  width: 220px;
  height: 220px;
  background: #fbbf24;
  top: 50%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-28px) scale(1.05);
  }
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease;
}

.site-header.scrolled .navbar {
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.32);
}

.navbar {
  width: min(var(--max), calc(100% - 30px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: 0.25s;
}

.nav-links a:hover {
  color: white;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.28s ease;
  border: 1px solid transparent;
}

.nav-cta {
  padding: 10px 16px;
  color: white !important;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 5px auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.animated-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #cffafe;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.26);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.animated-badge span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  margin: 24px 0;
  max-width: 760px;
}

.hero-content > p {
  font-size: 1.1rem;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.btn {
  padding: 14px 22px;
}

.btn-primary {
  color: #06101f;
  background: linear-gradient(135deg, #67e8f9, #a78bfa, #fbbf24);
  background-size: 220%;
  box-shadow: 0 0 34px rgba(56, 189, 248, 0.34);
  animation: gradientMove 4s ease infinite;
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.38);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.13);
}

@keyframes gradientMove {
  50% {
    background-position: 100%;
  }
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-row div {
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  font-size: 0.87rem;
  color: var(--muted);
}

.hero-visual {
  min-height: 530px;
  position: relative;
  perspective: 1000px;
}

.car-abstract {
  position: absolute;
  inset: 70px 20px 80px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(56, 189, 248, 0.42), rgba(167, 139, 250, 0.32));
  border: 1px solid var(--border);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
  transform: rotateY(-10deg) rotateX(6deg);
  overflow: hidden;
}

.car-abstract::before {
  content: "";
  position: absolute;
  width: 64%;
  height: 34%;
  left: 18%;
  top: 25%;
  border-radius: 40px 40px 12px 12px;
  background: rgba(7, 17, 31, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.shine-line {
  position: absolute;
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, transparent, white, transparent);
  left: 15%;
  top: 55%;
  border-radius: 999px;
  animation: shimmer 2.8s ease infinite;
}

.shine-line.second {
  top: 65%;
  width: 50%;
  left: 25%;
  animation-delay: 0.7s;
}

@keyframes shimmer {
  50% {
    transform: translateX(30px);
    opacity: 0.4;
  }
}

.wheel {
  position: absolute;
  bottom: 45px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #06101f;
  border: 12px solid rgba(255, 255, 255, 0.28);
}

.wheel.left {
  left: 18%;
}

.wheel.right {
  right: 18%;
}

.floating-card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.floating-card p {
  color: white;
  font-weight: 800;
}

.card-top {
  top: 35px;
  right: 25px;
}

.card-bottom {
  bottom: 30px;
  left: 25px;
  animation-delay: 1.5s;
}

.mini-icon {
  color: var(--accent);
}

.stat-stack {
  position: absolute;
  right: 0;
  bottom: 95px;
  display: grid;
  gap: 14px;
  z-index: 3;
}

.stat-card {
  width: 150px;
  padding: 18px;
  border-radius: 22px;
}

.counter,
.stat-card small {
  font-size: 2rem;
  font-weight: 900;
  color: white;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-head h2,
.article-header h2,
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin: 14px 0;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.testimonial-card,
.timeline-item,
.info-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 25px;
  transition: 0.32s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), transparent 55%);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover,
.testimonial-card:hover,
.timeline-item:hover,
.portfolio-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.service-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(56, 189, 248, 0.14);
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.service-card h3,
.timeline-item h3,
.testimonial-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card ul {
  margin: 16px 0;
  color: var(--muted);
}

.service-card a {
  color: #67e8f9;
  font-weight: 800;
}

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

.stat-box {
  text-align: center;
  border-radius: var(--radius);
  padding: 28px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #06101f;
  font-weight: 900;
  margin-bottom: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card {
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.32s ease;
}

.abstract-car {
  position: absolute;
  inset: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.abstract-car::before {
  content: "";
  position: absolute;
  width: 75%;
  height: 42%;
  top: 32%;
  left: 12%;
  border-radius: 70px 70px 22px 22px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid var(--border);
}

.abstract-car::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  left: 20%;
  top: 52%;
  background: white;
  border-radius: 999px;
  box-shadow: 0 0 30px white;
}

.blue {
  background: linear-gradient(135deg, #38bdf8, #1d4ed8);
}

.gold {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.violet {
  background: linear-gradient(135deg, #a78bfa, #db2777);
}

.overlay {
  position: absolute;
  inset: auto 16px 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.article-shell {
  border-radius: 36px;
  padding: clamp(24px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.article-header {
  max-width: 850px;
  margin-bottom: 34px;
}

.blog-article {
  display: grid;
  gap: 22px;
}

.blog-article h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  margin-top: 22px;
}

.blog-article h3 {
  font-size: 1.25rem;
  margin-top: 10px;
}

.blog-article p,
.blog-article li {
  font-size: 1.03rem;
}

.blog-article a {
  color: #67e8f9;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.callout,
.comparison-box,
.feature-row,
.pros-cons {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  padding: 24px;
}

.feature-row,
.pros-cons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--muted);
}

th {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.styled-list li {
  margin-bottom: 8px;
}

.faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 0;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.28s ease;
}

.faq-content p {
  padding: 0 20px 20px;
}

.faq-item.active .faq-content {
  max-height: 180px;
}

.faq-item.active button span {
  transform: rotate(45deg);
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #06101f;
  font-weight: 900;
  margin-bottom: 16px;
}

.rating {
  color: var(--accent);
  letter-spacing: 2px;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 12px;
  color: #67e8f9;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-info .info-card {
  margin: 14px 0;
}

.info-card strong,
.info-card a {
  display: block;
}

.info-card a {
  color: #67e8f9;
  font-weight: 800;
}

.contact-form {
  border-radius: 30px;
  padding: 30px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: white;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 16px;
  padding: 14px 16px;
  outline: 0;
  font: inherit;
}

select option {
  color: #06101f;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  color: var(--green);
  font-weight: 800;
}

.footer {
  width: min(var(--max), calc(100% - 34px));
  margin: 30px auto;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}

.footer a:hover {
  color: white;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .feature-row {
    grid-template-columns: 1fr;
  }

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.92);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(100% - 22px, var(--max));
    padding: 68px 0;
  }

  .navbar {
    width: calc(100% - 22px);
  }

  .logo span:last-child {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row,
  .service-grid,
  .portfolio-grid,
  .testimonial-grid,
  .stats-grid,
  .pros-cons,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-stack {
    right: 10px;
  }

  .car-abstract {
    inset: 75px 0 70px;
  }

  .article-shell,
  .footer {
    padding: 22px;
  }

  table {
    font-size: 0.88rem;
  }

  th,
  td {
    padding: 10px;
  }
}