:root {
  --bg: #fcfaf6;
  --bg-soft: #fff2e8;
  --ink: #1d2332;
  --ink-soft: #4f5872;
  --line: #ead7c6;
  --card: rgba(255, 255, 255, 0.88);
  --brand: #ec4d31;
  --brand-dark: #c93b25;
  --accent: #169a8b;
  --accent-soft: #d6f4ef;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 20px 50px rgba(22, 19, 32, 0.08);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 6%, rgba(236, 77, 49, 0.16) 0, transparent 45%),
    radial-gradient(circle at 10% 24%, rgba(22, 154, 139, 0.15) 0, transparent 45%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image: linear-gradient(rgba(40, 49, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 49, 67, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  z-index: -2;
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -110px;
  right: -120px;
  background: rgba(236, 77, 49, 0.32);
  animation: float-one 10s ease-in-out infinite;
}

.orb-two {
  width: 360px;
  height: 360px;
  bottom: -130px;
  left: -80px;
  background: rgba(22, 154, 139, 0.26);
  animation: float-two 12s ease-in-out infinite;
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 246, 0.78);
  border-bottom: 1px solid rgba(70, 70, 90, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.78rem;
}

.brand-emblem {
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: 999px;
  padding: 2px;
  flex: 0 0 auto;
  background: conic-gradient(from 185deg, #e8942f, #f4d17a, #e07a36, #f7dfa4, #e8942f);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 10px 22px rgba(23, 17, 30, 0.25);
}

.brand-emblem::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(236, 190, 97, 0.42) 0%, rgba(236, 190, 97, 0) 72%);
  z-index: -1;
}

.brand-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(255, 255, 255, 0.86);
  filter: saturate(0.9) contrast(1.08) brightness(0.99);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}

.brand-badge {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.brand-text {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-toggle {
  width: 40px;
  height: 34px;
  background: transparent;
  border: 0;
  padding: 0;
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  margin: 7px 0;
}

.btn {
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, var(--brand) 0%, #ff7f4b 100%);
  color: #fff;
  padding: 0.84rem 1.4rem;
  box-shadow: 0 10px 24px rgba(236, 77, 49, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(236, 77, 49, 0.26);
}

.btn:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(22, 154, 139, 0.4);
  outline-offset: 2px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(29, 35, 50, 0.24);
  box-shadow: none;
}

.btn-small {
  padding: 0.62rem 1rem;
  font-size: 0.86rem;
}

.btn-block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.1rem;
  align-items: stretch;
  padding: 4.8rem 0 1.8rem;
}

.hero-copy,
.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.3rem;
  animation: hero-enter 0.7s ease;
}

.kicker {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 1rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.03;
  max-width: 15ch;
}

.lead {
  margin: 1rem 0 0;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.metric-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.74rem;
}

.metric-grid article {
  border-radius: 14px;
  border: 1px solid rgba(29, 35, 50, 0.11);
  padding: 0.92rem;
  background: #fff;
}

.metric-grid h3 {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.55rem;
  color: var(--brand-dark);
}

.metric-grid p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 2.1rem;
  background:
    linear-gradient(165deg, rgba(255, 239, 227, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%),
    radial-gradient(circle at 84% 0%, rgba(236, 77, 49, 0.23) 0%, transparent 48%);
  animation: hero-enter 0.95s ease;
}

.panel-brand {
  width: 150px;
  max-width: 42%;
  height: auto;
}

.panel-kicker {
  margin: 0.66rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 0.06em;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-panel h2 {
  margin: 0.78rem 0 0;
  font-size: 1.56rem;
  line-height: 1.27;
}

.hero-panel ul {
  margin: 1.1rem 0 0;
  padding-left: 1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.58rem;
}

.panel-link {
  margin-top: 1rem;
  display: inline-flex;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
}

.panel-photo {
  margin-top: 1rem;
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(29, 35, 50, 0.14);
}

.logo-run {
  padding: 0.3rem 0 0;
}

.logo-run-inner {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  padding: 0.9rem 1.3rem;
  animation: logo-scroll 26s linear infinite;
}

.logo-track img {
  width: 118px;
  height: 34px;
  object-fit: contain;
  filter: saturate(1.03);
  opacity: 0.96;
}

.section {
  padding: 4.3rem 0 0.4rem;
}

.deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 860px;
}

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

.section-head h2 {
  margin: 0.85rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  line-height: 1.06;
}

.service-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.86rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 154, 139, 0.45);
}

.service-media {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(29, 35, 50, 0.1);
  background: linear-gradient(180deg, #f9fafc 0%, #f0f2f7 100%);
}

.service-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.35rem;
  display: block;
  transition: transform 0.32s ease;
}

.service-logo {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  width: 100px;
  height: 34px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 35, 50, 0.09);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.service-card:hover .service-cover {
  transform: scale(1.02);
}

.card-no {
  margin: 0.88rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  color: var(--brand);
  font-size: 1rem;
}

.service-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0.62rem 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.steps {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.74rem;
}

.step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0f796d;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1rem;
}

.step h3 {
  margin: 0.74rem 0 0;
  font-size: 1.02rem;
}

.step p {
  margin: 0.46rem 0 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.58;
}

.faq-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.72rem;
}

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

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.faq-question::after {
  content: "+";
  font-family: "Chakra Petch", sans-serif;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--ink-soft);
  line-height: 1.62;
}

.contact {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  padding-bottom: 4.2rem;
}

.contact-copy,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 2rem;
}

.contact-copy h2 {
  margin: 0.8rem 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.72rem, 3.1vw, 2.4rem);
  line-height: 1.1;
}

.contact-copy p {
  margin: 0.95rem 0 0;
  color: var(--ink-soft);
  line-height: 1.66;
}

.contact-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.64rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
  padding: 0.78rem;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid rgba(201, 59, 37, 0.16);
}

.contact-list span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  word-break: break-all;
}

.note {
  font-size: 0.9rem;
}

.lead-form {
  padding: 1.6rem;
  display: grid;
  gap: 0.74rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(29, 35, 50, 0.18);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.78rem 0.82rem;
}

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

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-footer {
  border-top: 1px solid rgba(29, 35, 50, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible [data-stagger] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-one {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes float-two {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .logo-track {
    animation: none;
  }

  .orb {
    display: none;
  }
}

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

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

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .menu-toggle {
    display: block;
  }

  .service-grid,
  .steps,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .logo-track img {
    width: 102px;
  }

  .service-media {
    height: 180px;
  }

  .service-cover {
    object-fit: cover;
    padding: 0;
  }

  .panel-photo {
    height: 180px;
    object-fit: cover;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1140px, calc(100% - 1.2rem));
  }

  .brand-avatar {
    width: 100%;
    height: 100%;
  }

  .brand-emblem {
    width: 46px;
    height: 46px;
  }

  .brand-badge {
    font-size: 1.06rem;
  }

  .brand-text {
    font-size: 0.69rem;
    letter-spacing: 0.1em;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .hero-copy,
  .hero-panel,
  .contact-copy,
  .lead-form {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .service-media {
    height: 150px;
  }

  .panel-photo {
    height: 150px;
  }

  .section {
    padding-top: 3.5rem;
  }
}
