:root {
  --ink: #202028;
  --muted: #626574;
  --line: #e8e7ee;
  --paper: #ffffff;
  --soft: #f7f7fb;
  --cream: #fff9f3;
  --orange: #f27734;
  --mauve: #a45e62;
  --violet: #554797;
  --indigo: #343074;
  --blue: #2e7dff;
  --shadow: 0 18px 44px rgba(32, 32, 40, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #363642;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  background: #f3f1fa;
  color: var(--violet);
}

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

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.nav-toggle::before {
  top: 13px;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle::after {
  top: 27px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  box-shadow: 0 12px 28px rgba(84, 64, 138, 0.22);
}

.btn-secondary {
  color: var(--violet);
  background: #fff;
  border-color: #dcd8ed;
}

.hero {
  background: linear-gradient(135deg, rgba(32, 32, 40, 0.9), rgba(52, 48, 116, 0.76)), url("../images/generated-hero-image.png") center/cover;
  color: #fff;
}

.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
  padding: 76px 0 86px;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #efeef8;
  font-size: 1.08rem;
}

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

.hero-panel {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-panel ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.hero-panel li {
  padding: 11px 0 11px 28px;
  position: relative;
  border-top: 1px solid var(--line);
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--orange), var(--violet));
}

.section {
  padding: 86px 0;
}

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

.section-warm {
  background: linear-gradient(180deg, #fff, var(--cream));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}

.media-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat,
.card,
.testimonial,
.faq-item,
.contact-card,
.service-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.stat {
  padding: 18px;
}

.stat strong {
  display: block;
  color: var(--violet);
  font-size: 1.5rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  padding: 24px;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(32, 32, 40, 0.09);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  font-weight: 900;
}

.card p,
.service-detail p {
  margin: 12px 0 0;
  color: var(--muted);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.banner {
  padding: 58px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, rgba(32, 32, 40, 0.86), rgba(84, 71, 151, 0.78)), url("../images/generated-process-image.png") center/cover;
}

.banner p {
  max-width: 700px;
  color: #f2eef8;
}

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

.testimonial {
  padding: 22px;
}

.testimonial p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
}

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

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

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

.page-hero {
  padding: 82px 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(32, 32, 40, 0.9), rgba(84, 71, 151, 0.76)), url("../images/generated-services-image.png") center/cover;
}

.page-hero.about-page {
  background-image: linear-gradient(135deg, rgba(32, 32, 40, 0.9), rgba(84, 71, 151, 0.72)), url("../images/generated-about-image.png");
}

.page-hero.contact-page {
  background-image: linear-gradient(135deg, rgba(32, 32, 40, 0.9), rgba(84, 71, 151, 0.76)), url("../images/generated-process-image.png");
}

.page-hero p {
  max-width: 730px;
  color: #f2eef8;
}

.service-detail {
  padding: 26px;
}

.service-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.contact-card {
  padding: 24px;
}

.contact-line {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.contact-line:first-of-type {
  border-top: 0;
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

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

label {
  display: grid;
  gap: 7px;
  color: #3c3c47;
  font-weight: 800;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f1f0f6;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  padding: 54px 0 28px;
  color: #e9e7f2;
  background: #202028;
}

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

.footer-logo {
  width: 210px;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius);
}

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

.site-footer p,
.site-footer a {
  color: #d3d0df;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #bbb7cb;
  font-size: 0.9rem;
}

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

  .hero-grid {
    min-height: auto;
  }

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

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .brand img {
    width: 188px;
  }

  .section,
  .page-hero {
    padding: 62px 0;
  }

  .hero-grid {
    padding: 58px 0 62px;
  }

  .hero-panel {
    padding: 20px;
  }

  .grid-3,
  .grid-2,
  .testimonials,
  .stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    height: 310px;
  }

  .banner {
    padding: 34px 24px;
  }
}
/* @vn-deploy:1780846122621 */
