:root {
  --bg: #0b1220;
  --bg-2: #08111f;
  --bg-3: #111827;
  --card: rgba(15, 23, 42, 0.74);
  --card-solid: #0d1b2e;
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(250, 204, 21, 0.16);
  --text: #e5edf8;
  --muted: #94a3b8;
  --primary: #facc15;
  --primary-2: #f59e0b;
  --accent: #f97316;
  --success: #22c55e;
  --danger: #ef4444;
  --shadow: 0 24px 80px rgba(250, 204, 21, 0.12);
  --shadow-strong: 0 28px 90px rgba(250, 204, 21, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::selection {
  background: rgba(250, 204, 21, 0.22);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.08), transparent 25%),
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(250, 204, 21, 0.04), transparent 20%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  z-index: -2;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 2000;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.5);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.glass {
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.topbar {
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  background: rgba(8, 17, 31, 0.78);
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.86rem;
}

.topbar-left span,
.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.topbar-left svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-right a:hover {
  color: var(--primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  z-index: 10;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 12px 32px rgba(250, 204, 21, 0.22);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: rotate(20deg);
  animation: shine 4.5s linear infinite;
}

.logo-text {
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.25s ease;
  font-weight: 600;
  border: 1px solid transparent;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.16), rgba(249, 115, 22, 0.14));
  border: 1px solid rgba(250, 204, 21, 0.18);
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.12);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.16), rgba(249, 115, 22, 0.12));
  border: 1px solid rgba(250, 204, 21, 0.18);
  color: #fff;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.12);
}

.menu-btn {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(148, 163, 184, 0.05);
  cursor: pointer;
  transition: 0.25s ease;
}

.menu-btn:hover {
  background: rgba(148, 163, 184, 0.08);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 99px;
  transition: 0.25s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  padding: 72px 0 32px;
}

.hero {
  padding-top: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.8);
  animation: pulseDot 2s infinite;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(135deg, #fde047, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text,
.page-hero p,
.section-head p,
.info-card p,
.project-card p,
.service-card p,
.blog-card p,
.content-box p,
.footer-text,
.value-card p,
.footer-cta-box p {
  color: var(--muted);
}

.hero-text {
  max-width: 700px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #03131f;
  box-shadow: 0 16px 36px rgba(250, 204, 21, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(250, 204, 21, 0.26);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(148, 163, 184, 0.05);
}

.btn-secondary:hover {
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(250, 204, 21, 0.12);
}

.trust-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-points span,
.tag,
.footer-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.15);
  color: #fcd34d;
  font-size: 0.9rem;
}

.trust-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-points span svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
  color: #fcd34d;
}

.trust-points span:hover svg {
  color: #f59e0b;
  transform: scale(1.18) rotate(8deg);
  transition: transform 0.3s ease, color 0.3s ease;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.hero-mini-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(148, 163, 184, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.hero-mini-stat strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
}

.hero-mini-stat small {
  color: var(--muted);
}

.hero-card {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.dashboard-card {
  position: relative;
  border-radius: 28px;
  padding: 22px;
  overflow: hidden;
  width: 100%;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.06), transparent 28%);
  pointer-events: none;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: #fcd34d;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.dash-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #03131f;
  background: linear-gradient(135deg, #fde047, #fb923c);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
}

.dash-grid,
.card-grid,
.stats-grid,
.footer-grid,
.contact-grid,
.two-col,
.value-grid,
.brand-row {
  display: grid;
  gap: 20px;
}

.dash-grid,
.card-grid.cols-3 {
  grid-template-columns: repeat(2, 1fr);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
}

.brand-row {
  grid-template-columns: repeat(5, 1fr);
}

.card-grid.cols-2,
.contact-grid,
.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card-icon,
.project-icon,
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.12), rgba(249, 115, 22, 0.10));
  border: 1px solid rgba(250, 204, 21, 0.14);
  color: #fcd34d;
  box-shadow: 0 10px 28px rgba(250, 204, 21, 0.08);
  transition: 0.25s ease;
}

.card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
}

.project-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

.mini-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.1;
}

.project-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
}

.mini-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.info-card:hover .card-icon,
.project-card:hover .project-icon,
.mini-card:hover .mini-icon {
  transform: translateY(-2px) scale(1.05) rotate(-3deg);
  box-shadow: 0 16px 36px rgba(250, 204, 21, 0.18);
}

.mini-card,
.info-card,
.project-card,
.service-card,
.blog-card,
.stat-card,
.content-box,
.contact-form,
.value-card {
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.mini-card:hover,
.info-card:hover,
.project-card:hover,
.service-card:hover,
.blog-card:hover,
.stat-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.14);
  box-shadow: var(--shadow-strong);
}

.mini-card {
  padding: 18px;
  position: relative;
  z-index: 1;
}

.mini-card p,
.stat-label,
.text-link {
  color: var(--muted);
}

.mini-card h3 {
  margin-top: 8px;
}

.dash-bottom {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.progress-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.progress-line {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.25);
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  animation: floatY 6s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 120px;
  height: 120px;
  background: rgba(250, 204, 21, 0.25);
  top: -20px;
  right: 20px;
}

.orb-2 {
  width: 180px;
  height: 180px;
  background: rgba(249, 115, 22, 0.18);
  bottom: 20px;
  left: -20px;
  animation-delay: 1.5s;
}

.orb-3 {
  width: 90px;
  height: 90px;
  background: rgba(250, 204, 21, 0.12);
  top: 45%;
  right: -10px;
  animation-delay: 2.2s;
}

.brand-strip {
  padding: 14px 0 26px;
}

.brand-strip-text {
  text-align: center;
  color: var(--muted);
  margin-bottom: 16px;
}

.brand-row span {
  text-align: center;
  padding: 14px 10px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.08);
  background: rgba(148, 163, 184, 0.03);
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: rgba(148, 163, 184, 0.03);
  border-block: 1px solid rgba(148, 163, 184, 0.05);
}

.section-head {
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
}

.section-head h2,
.cta-box h2,
.content-box h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.info-card,
.project-card,
.service-card,
.blog-card,
.stat-card,
.content-box,
.contact-form,
.value-card {
  padding: 24px;
}

.info-card h3,
.project-card h3,
.service-card h3,
.blog-card h3,
.value-card h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.stat-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.12), transparent 70%);
  pointer-events: none;
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--primary);
}

.value-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card svg {
  width: 26px;
  height: 26px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.cta-box {
  border-radius: 30px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.08), transparent 30%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  padding-top: 28px;
  margin-top: 40px;
  background: rgba(8, 17, 31, 0.35);
}

.footer-grid {
  padding-bottom: 24px;
  gap: 28px;
}

.footer .logo {
  margin-bottom: 12px;
}

.footer h4 {
  margin-bottom: 14px;
  color: #fff;
}

.footer-brand {
  max-width: 420px;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: 0.25s ease;
}

.footer-links a:hover,
.text-link:hover {
  color: var(--primary);
}

.footer-cta-box {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.08);
  background: rgba(148, 163, 184, 0.03);
}

.footer-btn {
  margin-top: 14px;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  padding: 18px 0 28px;
  color: var(--muted);
  text-align: center;
}

.page-main {
  min-height: 70vh;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(148, 163, 184, 0.05);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: 0.25s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.75; }
}

@keyframes shine {
  0% { transform: translateX(-180%) rotate(20deg); }
  100% { transform: translateX(180%) rotate(20deg); }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .card-grid.cols-3,
  .card-grid.cols-2,
  .contact-grid,
  .two-col,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 14px;
  }

  .hero,
  .page-hero,
  .section {
    padding: 44px 0;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    flex: 1;
  }

  .footer-grid,
  .value-grid,
  .brand-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .card-icon { width: 48px; height: 48px; }
  .card-icon svg { width: 24px; height: 24px; }

  .project-icon { width: 44px; height: 44px; }
  .project-icon svg { width: 20px; height: 20px; }

  .mini-icon { width: 36px; height: 36px; }
  .mini-icon svg { width: 18px; height: 18px; }

  .dash-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}