:root {
  color-scheme: light;
  --c-base: 248 250 252;
  --c-panel: 255 255 255;
  --c-panel-soft: 243 246 249;
  --c-accent: 248 151 23;
  --c-accent-dark: 186 119 30;
  --c-mint: 233 141 32;
  --c-text-soft: 83 96 112;
  --c-line: 219 226 234;
  --c-placeholder-dash: 168 182 197;
  --c-placeholder-bg: 244 248 252;
  --c-input-placeholder: 126 141 160;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  overflow-x: hidden;
  background: rgb(var(--c-base));
}

[x-cloak] {
  display: none !important;
}

.hero-bg-pattern {
  background: linear-gradient(180deg, rgb(var(--c-panel-soft)) 0%, rgb(var(--c-base)) 100%);
}

.hero-grid-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgb(var(--c-line));
  pointer-events: none;
}

.section-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4.25rem 1rem;
}

@media (min-width: 640px) {
  .section-wrap {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-wrap {
    padding-inline: 2rem;
  }
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgb(var(--c-accent));
  font-weight: 700;
}

.section-title {
  margin-top: 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: #141b23;
}

.nav-link {
  color: rgb(var(--c-text-soft));
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #141b23;
}

.mobile-link {
  padding: 0.55rem 0.25rem;
  color: rgb(var(--c-text-soft));
}

.mobile-link:hover {
  color: #141b23;
}

.btn {
  border-radius: 0.75rem;
  padding: 0.62rem 1rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: rgb(var(--c-accent));
  color: #ffffff;
}

.btn-primary:hover {
  background: rgb(var(--c-accent-dark));
}

.btn-ghost {
  background: rgb(var(--c-panel));
  color: #1f2937;
  border: 1px solid rgb(var(--c-line));
}

.btn-ghost:hover {
  background: rgb(var(--c-panel-soft));
  color: #111827;
}

.lang-btn {
  min-width: 2.5rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  border: 1px solid rgb(var(--c-line));
  background: rgb(var(--c-panel));
  color: rgb(var(--c-text-soft));
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: #111827;
}

.lang-btn-active {
  border-color: rgb(var(--c-accent));
  color: rgb(var(--c-accent-dark));
  background: rgb(var(--c-accent) / 0.1);
}

.header-logo-glow {
  border-radius: 0.9rem;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.95),
    0 10px 26px rgba(219, 226, 234, 0.9);
}

.panel {
  border: 1px solid rgb(var(--c-line));
  background: rgb(var(--c-panel));
  border-radius: 0.9rem;
  padding: 1.05rem;
}

.panel-no-border {
  border: 0;
  background: transparent;
  padding: 0;
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgb(var(--c-mint) / 0.15);
  border: 1px solid rgb(var(--c-mint) / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.why-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(73%) saturate(1472%) hue-rotate(351deg) brightness(100%) contrast(96%);
}

.why-head-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-card {
  border: 1px solid rgb(var(--c-line));
  border-radius: 0.9rem;
  padding: 1.1rem;
  background: rgb(var(--c-panel));
  transition: border-color 0.2s ease;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-copy {
  flex: 1;
}

@media (min-width: 1280px) {
  .service-row {
    flex-direction: row;
    align-items: stretch;
    gap: 1.3rem;
  }

  .service-copy,
  .service-photo-frame {
    width: 50%;
  }
}

.service-photo-frame {
  position: relative;
  height: 24rem;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid rgb(var(--c-line));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-photo {
  display: block;
  object-fit: cover;
}

.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: rgb(var(--c-panel) / 0.88);
  border: 1px solid rgb(var(--c-mint) / 0.4);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.service-icon {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(73%) saturate(1472%) hue-rotate(351deg) brightness(100%) contrast(96%);
}

.service-icon-overlay {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.gallery-photo {
  border-radius: 0.85rem;
  border: 1px solid rgb(var(--c-line));
  object-fit: cover;
  display: block;
}

.step-card {
  border: 1px solid rgb(var(--c-line));
  border-radius: 0.9rem;
  padding: 1rem;
  background: rgb(var(--c-panel));
}

.step-index {
  font-family: "Sora", sans-serif;
  color: rgb(var(--c-accent));
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.metric-card {
  border: 1px solid rgb(var(--c-line));
  border-radius: 0.85rem;
  background: rgb(var(--c-panel));
  padding: 0.8rem;
}

.metric-number {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #111827;
}

.metric-label {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgb(var(--c-text-soft));
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(var(--c-line));
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: rgb(var(--c-panel-soft));
}

.photo-placeholder {
  border-radius: 0.85rem;
  border: 1px dashed rgb(var(--c-placeholder-dash));
  background:
    repeating-linear-gradient(
      45deg,
      rgb(var(--c-placeholder-dash) / 0.14) 0,
      rgb(var(--c-placeholder-dash) / 0.14) 10px,
      rgb(var(--c-placeholder-bg)) 10px,
      rgb(var(--c-placeholder-bg)) 20px
    );
  color: rgb(var(--c-text-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid rgb(var(--c-line));
  border-radius: 0.75rem;
  padding: 0.75rem;
  background: rgb(var(--c-panel-soft));
}

.contact-row:hover {
  border-color: rgb(var(--c-accent));
}

.contact-label {
  color: rgb(var(--c-text-soft));
}

.form-input {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgb(var(--c-line));
  background: rgb(var(--c-panel));
  color: #111827;
  padding: 0.72rem 0.85rem;
}

.form-input::placeholder {
  color: rgb(var(--c-input-placeholder));
}

.form-input:focus {
  outline: none;
  border-color: rgb(var(--c-accent));
  box-shadow: 0 0 0 3px rgb(var(--c-accent) / 0.15);
}
