:root {
  --bg: #050b1a;
  --bg-soft: #0b1530;
  --surface: #0f1f3f;
  --surface-2: #132a55;
  --text: #ecf3ff;
  --muted: #b8c7e6;
  --brand-blue: #0a4bb5;
  --brand-blue-light: #2f7fff;
  --brand-orange: #ff7b23;
  --brand-green: #24c16f;
  --line: rgba(173, 199, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 20% 0%, #12284d 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(4, 10, 22, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 84px;
  gap: 24px;
}

.logo {
  width: 220px;
  max-width: 100%;
  display: block;
  mix-blend-mode: screen;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a.active {
  color: #fff;
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
}

.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-slider,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(100deg, rgba(5, 10, 20, 0.92) 30%, rgba(5, 10, 20, 0.58) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}

.eyebrow {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero p,
.section-text {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(140deg, var(--brand-orange), #ff9b52);
  color: #101217;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.trust-line {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-line span {
  background: rgba(9, 31, 74, 0.5);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  color: #d8e6ff;
  font-size: 0.9rem;
}

.section {
  padding: 86px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head p {
  color: var(--muted);
  max-width: 760px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(15, 31, 63, 0.5), rgba(9, 19, 40, 0.75));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 38px;
  align-items: center;
}

.proof-media img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-card {
  background: rgba(11, 26, 56, 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.stat-card strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: rgba(9, 23, 47, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}

.card h3 {
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-highlight {
  border-color: rgba(255, 123, 35, 0.5);
  background: linear-gradient(180deg, rgba(255, 123, 35, 0.12), rgba(11, 25, 50, 0.8));
}

.card-highlight ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #dce8ff;
}

.icon-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.icon-list div {
  background: rgba(9, 23, 47, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.icon-list strong {
  display: block;
  margin-bottom: 8px;
}

.icon-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-grid article {
  border: 1px solid var(--line);
  background: rgba(9, 23, 47, 0.74);
  border-radius: 14px;
  padding: 16px;
}

.process-grid p {
  color: var(--muted);
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  border: 1px solid var(--line);
  background: rgba(9, 23, 47, 0.74);
  border-radius: 14px;
  padding: 20px;
}

.price-card.featured {
  border-color: rgba(255, 123, 35, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 123, 35, 0.25) inset;
}

.price {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.price-card ul {
  margin: 12px 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.cta-banner {
  background: linear-gradient(120deg, rgba(23, 64, 141, 0.5), rgba(255, 123, 35, 0.2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  text-align: center;
  max-width: 800px;
}

.cta-inner .hero-cta {
  justify-content: center;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-gallery img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040914;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding: 42px 0 24px;
}

.footer-logo {
  width: 200px;
}

.site-footer p,
.site-footer a {
  color: #b8c7e4;
}

.site-footer h3 {
  margin-bottom: 8px;
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 14px 0 22px;
}

.inner-hero {
  min-height: 52vh;
  display: grid;
  align-items: end;
  padding: 140px 0 60px;
  background: linear-gradient(160deg, rgba(10, 28, 57, 0.9), rgba(5, 11, 26, 0.9)),
    url("assets/hero-slide-1.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.inner-hero p {
  color: var(--muted);
  max-width: 760px;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list-clean li {
  margin: 8px 0;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: rgba(9, 23, 47, 0.72);
}

.kpi strong {
  display: block;
  font-size: 1.45rem;
}

.kpi span {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: rgba(9, 23, 47, 0.74);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: rgba(9, 23, 47, 0.74);
}

.contact-form label {
  display: block;
  margin-bottom: 12px;
  color: #dce8ff;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid rgba(173, 199, 255, 0.28);
  border-radius: 10px;
  background: rgba(4, 10, 22, 0.7);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}

.breadcrumbs {
  color: #d6e5ff;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.breadcrumbs a {
  color: var(--muted);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  z-index: 999;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.wa-float:hover {
  transform: translateY(-2px);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(7, 17, 36, 0.95);
  border: 1px solid var(--line);
  color: #e9f2ff;
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 260px;
  max-width: calc(100% - 32px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  transition: 0.25s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  border-color: rgba(36, 193, 111, 0.5);
}

.toast.error {
  border-color: rgba(255, 123, 35, 0.65);
}

@media (max-width: 1024px) {
  .cards,
  .icon-list,
  .process-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 20px;
    background: #081630;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    width: min(240px, calc(100% - 40px));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .cards,
  .icon-list,
  .process-grid,
  .pricing-grid,
  .stats-grid,
  .kpi-row,
  .contact-grid,
  .service-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 170px;
  }

  .section {
    padding: 70px 0;
  }
}
