:root {
  --bg: #050712;
  --bg-elevated: rgba(15, 18, 40, 0.95);
  --card-bg: rgba(15, 18, 40, 0.85);
  --accent: linear-gradient(135deg, #5b8dff, #9b5bff);
  --accent-solid: #6e7bff;
  --accent-soft: rgba(110, 123, 255, 0.16);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text: #f9fafb;
  --text-soft: #a7b0cb;
  --text-muted: #6b7280;
  --danger: #fb7185;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #101735 0, #050712 45%, #02030a 100%);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  position: relative;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin-top: 0.5rem;
  color: var(--text-soft);
  max-width: 520px;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #5b8dff, #9b5bff);
}

.centered {
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.col.align-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.card {
  position: relative;
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(15, 18, 40, 0.92), rgba(14, 22, 52, 0.9));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  border: 0;
  padding: 0.7rem 1.4rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background-image: var(--accent);
  color: #f9fafb;
  box-shadow: 0 13px 35px rgba(77, 99, 255, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(77, 99, 255, 0.65);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text);
  background: rgba(15, 23, 42, 0.4);
}

.btn-outline:hover {
  background: rgba(148, 163, 184, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-solid);
  border-radius: var(--radius-pill);
  padding-inline: 0;
}

.btn-ghost:hover {
  color: #ffffff;
}

.btn-light {
  background: #f9fafb;
  color: #020617;
  padding-inline: 1.7rem;
}

.btn-light:hover {
  background: #e5e7eb;
}

.full-width {
  width: 100%;
}

.link-btn {
  border: 0;
  background: transparent;
  color: var(--accent-solid);
  font-weight: 500;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.link-btn:hover {
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  transition: all 0.3s ease-out;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(4, 7, 26, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(22px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background-image: radial-gradient(circle at 20% 0, #f9fafb 0, transparent 55%),
    radial-gradient(circle at 90% 110%, #38bdf8 0, transparent 60%),
    linear-gradient(135deg, #5b8dff, #9b5bff 55%, #f97316);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.75);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding-block: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 4px;
  background-image: var(--accent);
  transition: width 0.18s ease-out;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1.5rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* HERO */
.hero {
  padding-top: 7rem;
  padding-bottom: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.7rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  margin: 1.2rem 0 0.8rem;
}

.hero-subtitle {
  color: var(--text-soft);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.7rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-meta span {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.hero-visual {
  position: relative;
}

.hero-glass {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.08), transparent),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(26px);
}

.hero-glass-main {
  padding: 1.8rem 1.6rem;
}

.hero-glass-secondary {
  position: absolute;
  bottom: -1.7rem;
  right: 1.1rem;
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  width: min(70%, 260px);
}

.hero-kpi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-kpi .label {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.hero-kpi .value {
  font-weight: 700;
  font-size: 1.4rem;
  background-image: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-mockups {
  display: flex;
  gap: 0.9rem;
}

.mockup-card {
  flex: 1.4;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border: 1px solid rgba(148, 163, 184, 0.3);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
}

.mockup-header {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem 0.7rem;
  background: rgba(15, 23, 42, 0.85);
}

.mockup-header span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

.mockup-body {
  display: grid;
  grid-template-columns: 0.9fr 1.7fr;
  height: 150px;
}

.mockup-sidebar {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.35), transparent);
}

.mockup-content {
  background: radial-gradient(circle at 10% 0, rgba(96, 165, 250, 0.4), transparent 55%),
    radial-gradient(circle at 80% 120%, rgba(244, 114, 182, 0.4), transparent 55%),
    linear-gradient(180deg, #020617, #020617);
}

.mockup-mobile {
  flex: 0.9;
  border-radius: 21px;
  background: linear-gradient(145deg, #0b1120, #020617);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.65rem;
  position: relative;
}

.mobile-notch {
  height: 8px;
  width: 42%;
  margin: 0 auto 0.4rem;
  border-radius: 0 0 999px 999px;
  background: #020617;
}

.mobile-screen {
  border-radius: 14px;
  height: 130px;
  background: radial-gradient(circle at 20% 0, rgba(56, 189, 248, 0.4), transparent 60%),
    radial-gradient(circle at 80% 120%, rgba(251, 113, 133, 0.4), transparent 60%),
    linear-gradient(180deg, #020617 0, #020617 100%);
}

/* TRUSTED BY */
.trusted {
  padding-top: 0;
}

.logo-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.logo-pill {
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.08), transparent);
}

/* SERVICES */
.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* WHY CHOOSE */
.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.8rem;
  font-size: 0.9rem;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-soft);
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 0.9rem;
  color: #4ade80;
}

.illustration-card {
  padding: 2rem 1.8rem;
  overflow: hidden;
}

.dots-bg {
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.35) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.25;
}

.metric {
  position: relative;
  margin-bottom: 1.4rem;
}

.metric .label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.metric .value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* PROCESS */
.process {
  padding-top: 4.5rem;
}

.timeline {
  margin-top: 2.6rem;
  border-left: 1px solid rgba(148, 163, 184, 0.3);
  padding-left: 1.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #5b8dff, #9b5bff);
  width: 1px;
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.9rem;
}

.timeline-badge {
  position: absolute;
  left: -2.2rem;
  top: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background-image: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(77, 99, 255, 0.6);
}

.timeline-content h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.timeline-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* PORTFOLIO */
.portfolio-image {
  height: 170px;
  border-radius: 16px;
  margin: -0.4rem -0.4rem 1rem;
}

.placeholder-img {
  background: radial-gradient(circle at 10% 0, rgba(59, 130, 246, 0.55), transparent 55%),
    radial-gradient(circle at 90% 110%, rgba(244, 114, 182, 0.5), transparent 55%),
    linear-gradient(135deg, #020617, #020617);
}

.portfolio-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.portfolio-body p {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.portfolio-body .meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* TESTIMONIALS */
.testimonials {
  padding-top: 4.5rem;
}

.testimonial-carousel {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 170px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(14px);
  transition: all 0.3s ease-out;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card .client {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.testimonial-card .meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.testimonial-card .review {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.rating {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #fbbf24;
}

.carousel-control {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.carousel-control:hover {
  background: rgba(148, 163, 184, 0.15);
}

/* PRICING */
.pricing {
  padding-top: 4.5rem;
}

.pricing-card {
  padding-top: 1.4rem;
}

.pricing-card.featured {
  border-color: rgba(110, 123, 255, 0.9);
  box-shadow: 0 22px 55px rgba(79, 70, 229, 0.55);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 0.65rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.plan-name {
  margin: 0;
  font-weight: 600;
}

.plan-tagline {
  margin: 0.2rem 0 1rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.plan-features {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.plan-features li {
  padding: 0.3rem 0;
}

/* CTA DARK SECTION */
.section-cta-dark {
  padding: 3.8rem 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(244, 114, 182, 0.2), transparent 55%),
    #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.section-cta-dark .section-title {
  margin-bottom: 0.6rem;
}

/* BLOG */
.blog-card h3 {
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.blog-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.blog-tag {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* CONTACT */
.contact {
  padding-top: 4.7rem;
}

.contact-info p {
  margin: 0.2rem 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact-form {
  padding: 1.8rem 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

.form-field label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  border-radius: 11px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(110, 123, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(110, 123, 255, 0.6);
  background: rgba(15, 23, 42, 0.95);
}

/* FOOTER */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  font-size: 0.86rem;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text-soft);
}

.footer-col a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 2rem;
  padding-top: 1.1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }

  .two-column {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    padding-inline: 1.1rem;
  }

  .nav-links {
    position: absolute;
    inset-inline: 1.2rem;
    top: 60px;
    padding: 0.7rem 1.1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    transform-origin: top;
    transform: scaleY(0.85);
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(148, 163, 184, 0.32);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .section {
    padding: 4.2rem 0;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-carousel {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-track {
    min-height: 190px;
  }
}

@media (max-width: 520px) {
  .container {
    padding-inline: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    gap: 0.4rem;
  }

  .logo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


