:root {
  --ink: #12095d;
  --ink-2: #26156f;
  --orange: #ec6d2c;
  --orange-dark: #c3542e;
  --plum: #66355f;
  --paper: #ffffff;
  --mist: #f5f7fa;
  --line: #e6e9f0;
  --text: #22283a;
  --muted: #667085;
  --shadow: 0 18px 50px rgba(18, 9, 93, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(230, 233, 240, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 246px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 32px rgba(236, 109, 44, 0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  border-color: rgba(18, 9, 93, 0.2);
  color: var(--ink);
  background: #fff;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 9, 93, 0.95) 0%, rgba(18, 9, 93, 0.78) 42%, rgba(18, 9, 93, 0.16) 100%),
    url("../images/generated-hero-image.png") center right / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 660px;
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  max-width: 760px;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 42px;
}

.stat {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--mist);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-head {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 3.05rem);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--mist);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(18, 9, 93, 0.16);
}

.media-label strong {
  display: block;
}

.media-label span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(18, 9, 93, 0.06);
}

.card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 24px;
  background: rgba(236, 109, 44, 0.11);
  color: var(--orange-dark);
  font-weight: 800;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 64px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--orange);
  font-weight: 900;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial blockquote {
  margin: 0;
  color: var(--text);
}

.testimonial cite {
  font-style: normal;
  color: var(--ink);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.page-hero {
  padding: 88px 0 78px;
  background:
    linear-gradient(120deg, rgba(18, 9, 93, 0.94), rgba(102, 53, 95, 0.86)),
    url("../images/generated-process-image.png") center / cover no-repeat;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  max-width: 820px;
  font-size: clamp(2.05rem, 4vw, 3.6rem);
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-details {
  background: var(--ink);
  color: #fff;
}

.contact-details h3,
.contact-details strong {
  color: #fff;
}

.contact-details p,
.contact-details a {
  color: rgba(255, 255, 255, 0.78);
}

.detail-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form textarea {
  min-height: 122px;
  resize: vertical;
}

.map-band {
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 9, 93, 0.92), rgba(236, 109, 44, 0.82)),
    url("../images/generated-services-image.png") center / cover no-repeat;
  color: #fff;
}

.map-band h3 {
  color: #fff;
}

.map-band p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band {
  padding: 58px;
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(18, 9, 93, 0.96), rgba(38, 21, 111, 0.88), rgba(236, 109, 44, 0.74)),
    url("../images/generated-hero-image.png") center / cover no-repeat;
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 690px;
}

.site-footer {
  background: #0d073f;
  color: #fff;
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.95fr;
  gap: 42px;
}

.footer-logo {
  width: 235px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links .btn {
    margin-top: 8px;
  }

  .split,
  .split.reverse,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .brand img {
    width: 210px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 9, 93, 0.96) 0%, rgba(18, 9, 93, 0.82) 72%, rgba(18, 9, 93, 0.68) 100%),
      url("../images/generated-hero-image.png") center / cover no-repeat;
  }

  .hero-content {
    padding: 74px 0;
  }

  .hero-stats,
  .feature-list,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .card,
  .cta-band,
  .map-band {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* @vn-deploy:1784918859356 */
