:root {
  --bg: #121418;
  --bg-2: #1a1f26;
  --surface: #1d232c;
  --surface-soft: #252d38;
  --text: #f4f7fb;
  --muted: #a8b2c4;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ffd400;
  --accent-dark: #e5bf00;
  --accent-soft: rgba(255, 212, 0, 0.16);
  --dark: #12161d;
  --dark-2: #1d2430;
  --light: #fffef8;
  --card: rgba(29, 35, 44, 0.88);
  --card-strong: linear-gradient(180deg, #1b2128 0%, #252d38 100%);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  --radius: 28px;
  --radius-sm: 18px;
  --header-height: 82px;
}

body[data-theme="light"] {
  --bg: #f6f7fb;
  --bg-2: #eceff5;
  --surface: #ffffff;
  --surface-soft: #f5f6fa;
  --text: #1e2430;
  --muted: #667085;
  --line: rgba(15, 23, 42, 0.08);
  --accent: #ffd400;
  --accent-dark: #e0b900;
  --accent-soft: rgba(255, 212, 0, 0.18);
  --dark: #202632;
  --dark-2: #313846;
  --light: #ffffff;
  --card: rgba(255, 255, 255, 0.92);
  --card-strong: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 212, 0, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, var(--bg) 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-shell { min-height: 100vh; }
.container {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
}

.section,
.section-wide {
  padding: 88px 0;
}
.section-wide {
  padding-top: 44px;
  padding-bottom: 68px;
}
.section-contrast {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}
body[data-theme="light"] .section-contrast {
  background: linear-gradient(180deg, #fffaf5 0%, #f3ece4 100%);
}
.section-soft {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
body[data-theme="light"] .section-soft {
  background: rgba(255, 255, 255, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(18, 22, 29, 0.82);
  border-bottom: 1px solid var(--line);
}
main {
  padding-top: 1px;
}

.lang-toggle-wrap {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 1px;
  align-items: center;
  margin-left: auto;
}
.lang-toggle {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 26px;
  height: 50px;
  padding: 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform .16s ease;
}
.lang-toggle:hover {
  transform: scale(1.04);
}
.lang-toggle:active {
  transform: scale(0.96);
}
.lang-toggle-track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #2dcf73 0%, #15924e 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), inset 0 10px 16px rgba(255,255,255,0.08), 0 10px 20px rgba(0,0,0,0.16);
  transition: background .22s ease, box-shadow .22s ease;
}
.lang-toggle.is-en .lang-toggle-track {
  background: linear-gradient(180deg, #ff7272 0%, #d73d3d 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), inset 0 10px 16px rgba(255,255,255,0.06), 0 10px 20px rgba(214, 61, 61, 0.22);
}
.lang-toggle-thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 28%, #ffffff 0%, #f8fbff 48%, #e1e8f2 100%);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 6px 14px rgba(7, 14, 26, 0.18), inset 0 1px 1px rgba(255,255,255,0.92);
  transition: transform .28s cubic-bezier(.2,.9,.2,1.15), box-shadow .22s ease, background .22s ease;
}
.lang-toggle.is-en .lang-toggle-thumb {
  transform: translateY(24px);
  box-shadow: 0 6px 14px rgba(83, 16, 16, 0.16), inset 0 1px 1px rgba(255,255,255,0.92);
}
.lang-code {
  grid-column: 2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  user-select: none;
}
.lang-code-top {
  grid-row: 1;
  align-self: end;
}
.lang-code-bottom {
  grid-row: 2;
  align-self: start;
}
.lang-toggle.is-bouncing .lang-toggle-thumb {
  animation: toggleBounce .36s ease;
}
.lang-toggle-wrap:has(.lang-toggle:not(.is-en)) .lang-code-top,
.lang-toggle-wrap:has(.lang-toggle.is-en) .lang-code-bottom {
  color: var(--text);
}

.hero-slider {
  position: relative;
  min-height: 56vh;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-slider-media {
  position: relative;
  min-height: 56vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .7s ease, transform 1.2s ease;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 212, 0, 0.18), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,0.1), transparent 24%),
    linear-gradient(135deg, #181c22 0%, #232a34 50%, #13181f 100%);
}
.hero-slide:nth-child(2) {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 212, 0, 0.16), transparent 24%),
    radial-gradient(circle at 14% 66%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #191d24 0%, #2b313c 48%, #161b22 100%);
}
.hero-slide:nth-child(3) {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 212, 0, 0.14), transparent 25%),
    radial-gradient(circle at 20% 68%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #171b21 0%, #262d38 48%, #14191f 100%);
}
.hero-slide:nth-child(4) {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 212, 0, 0.16), transparent 26%),
    radial-gradient(circle at 84% 72%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(135deg, #181c22 0%, #29303a 48%, #14181f 100%);
}
body[data-theme="light"] .hero-slide {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 212, 0, 0.22), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,0.45), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f5f6fa 55%, #eceff5 100%);
}
body[data-theme="light"] .hero-slide:nth-child(2) {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 212, 0, 0.18), transparent 24%),
    radial-gradient(circle at 14% 66%, rgba(255,255,255,0.3), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f7fb 48%, #edf1f6 100%);
}
body[data-theme="light"] .hero-slide:nth-child(3) {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 212, 0, 0.16), transparent 25%),
    radial-gradient(circle at 20% 68%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f7fb 48%, #edf1f6 100%);
}
body[data-theme="light"] .hero-slide:nth-child(4) {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 212, 0, 0.18), transparent 26%),
    radial-gradient(circle at 84% 72%, rgba(255,255,255,0.3), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f6f7fb 48%, #edf1f6 100%);
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,22,29,0.12) 0%, rgba(18,22,29,0.56) 100%),
    linear-gradient(90deg, rgba(18,22,29,0.68) 0%, rgba(18,22,29,0.22) 55%, rgba(18,22,29,0.5) 100%);
}
body[data-theme="light"] .slide-overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.26) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.14) 55%, rgba(255,255,255,0.28) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: grid;
  align-content: start;
  justify-items: start;
  row-gap: 14px;
  padding-top: calc(var(--header-height) + 22px);
  padding-bottom: 110px;
}
.slide-kicker {
  display: inline-flex;
  margin-bottom: 2px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 212, 0, 0.16);
  border: 1px solid rgba(255, 212, 0, 0.24);
  color: #fff7cc;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
body[data-theme="light"] .slide-kicker {
  background: rgba(255, 212, 0, 0.16);
  border-color: rgba(255, 212, 0, 0.24);
  color: #725d00;
}
.hero-slide-content h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
}
.hero-slide-content p {
  max-width: 50ch;
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  font-size: 0.98rem;
}
body[data-theme="light"] .hero-slide-content h2 {
  color: #1e2430;
  text-shadow: 0 1px 0 rgba(255,255,255,0.42);
}
body[data-theme="light"] .hero-slide-content p {
  color: rgba(30, 36, 48, 0.8);
}
.slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 48px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, width .18s ease;
}
.slider-dot.is-active {
  width: 68px;
  background: var(--accent);
}
.slider-dot:hover {
  transform: translateY(-1px);
}
body[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
}
.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 54px;
  height: 54px;
}
.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav > a:not(.btn):not(.theme-toggle) {
  font-size: 0.96rem;
}
.site-nav > a:hover,
.site-nav > a:focus-visible,
.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--accent);
}
.header-phone {
  font-weight: 800;
}

.theme-toggle {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}
body[data-theme="light"] .theme-toggle {
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  padding: 0;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.eyebrow,
.section-label,
.light-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow,
.section-label {
  color: var(--accent);
  background: var(--accent-soft);
}
.light-label {
  color: #dce7ff;
  background: rgba(255,255,255,0.08);
}
body[data-theme="light"] .light-label {
  color: #dce7ff;
}

.hero {
  position: relative;
  overflow: clip;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb,
.grid-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
}
.orb-a {
  top: 3%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(76,141,255,0.34) 0%, rgba(76,141,255,0.02) 68%, transparent 100%);
  animation: floatOrb 10s ease-in-out infinite;
}
.orb-b {
  left: -4%;
  bottom: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(52,198,255,0.18) 0%, rgba(52,198,255,0.01) 68%, transparent 100%);
  animation: floatOrb 14s ease-in-out infinite reverse;
}
.grid-glow {
  inset: auto 6% 12% auto;
  width: 42vw;
  height: 42vw;
  max-width: 540px;
  max-height: 540px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, #000 22%, transparent 78%);
  opacity: 0.42;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
  z-index: 1;
}
.hero-copy h1,
.section-head h2,
.section-text,
.process-grid h2,
.benefits-grid h2,
.faq-grid h2,
.request-grid h2,
.price-grid h2,
.service-page-grid h1 {
  margin: 18px 0 0;
}
.hero-copy h1,
.section-head h2,
.process-grid h2,
.benefits-grid h2,
.faq-grid h2,
.request-grid h2,
.price-grid h2,
.service-page-grid h1 {
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}
.section-head h2,
.process-grid h2,
.benefits-grid h2,
.faq-grid h2,
.request-grid h2,
.price-grid h2,
.service-page-grid h1 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
}
.hero-lead,
.section-head p,
.section-text,
.service-card p,
.service-card li,
.timeline p,
.project-card p,
.benefit-list p,
.faq-list p,
.footer-text,
.request-form label,
.price-card p,
.idea-card p,
.service-side-card p,
.content-card p,
.service-page-grid .lead {
  color: var(--muted);
  line-height: 1.72;
}
.hero-lead {
  max-width: 62ch;
  margin-top: 22px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-live-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #46d18b;
  box-shadow: 0 0 0 0 rgba(70,209,139,0.5);
  animation: pulseDot 1.8s ease infinite;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent {
  color: #1f232b;
  background: linear-gradient(135deg, #ffe45c, var(--accent));
  box-shadow: 0 18px 36px rgba(255, 212, 0, 0.24);
}
.btn-accent:hover { background: linear-gradient(135deg, var(--accent-dark), #ffe45c); }
.btn-light {
  background: rgba(255,255,255,0.06);
  border-color: var(--line);
  color: var(--text);
}
body[data-theme="light"] .btn-light {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
}
.btn-dark {
  color: #fff;
  background: var(--dark);
}
body[data-theme="light"] .btn-dark {
  color: #1f232b;
  background: #f2f4f8;
}
.btn-block { width: 100%; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 700;
  line-height: 1.4;
}
body[data-theme="light"] .hero-points li {
  background: rgba(255,255,255,0.9);
  border-color: rgba(15, 23, 42, 0.08);
}

.card-dark,
.card-light,
.card-sand,
.service-card,
.timeline article,
.faq-list details,
.request-grid,
.price-card,
.service-side-card,
.content-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-dark {
  color: #fff;
  background: var(--card-strong);
}
body[data-theme="light"] .card-dark {
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f5f6fa 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.card-light {
  background: var(--surface);
}
.card-sand {
  background: var(--surface-soft);
}

.hero-visual {
  position: relative;
  padding: 28px;
  transform-style: preserve-3d;
}
.hero-video-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(5, 10, 22, 0.52);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.86);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
body[data-theme="light"] .hero-video-badge {
  background: rgba(255, 212, 0, 0.18);
  border-color: rgba(255, 212, 0, 0.22);
  color: #6f5b00;
}
.hero-image {
  width: 100%;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 60px rgba(4, 12, 26, 0.35);
}
body[data-theme="light"] .hero-image {
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.hero-stat-grid article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.hero-stat-grid span {
  color: rgba(255,255,255,0.74);
  line-height: 1.58;
  font-size: 0.95rem;
}
body[data-theme="light"] .hero-stat-grid article {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.08);
}
body[data-theme="light"] .hero-stat-grid strong {
  color: #1e2430;
}
body[data-theme="light"] .hero-stat-grid span {
  color: rgba(30, 36, 48, 0.74);
}

.strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
body[data-theme="light"] .strip {
  background: rgba(255,255,255,0.4);
}
.strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.strip-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-weight: 700;
}
body[data-theme="light"] .strip-row span {
  background: rgba(255,255,255,0.8);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin-bottom: 28px;
}

.service-grid,
.price-cards,
.content-grid-2,
.store-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.price-card,
.service-side-card,
.content-card,
.store-card,
.category-card,
.pick-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
}
body[data-theme="light"] .service-card,
body[data-theme="light"] .price-card,
body[data-theme="light"] .service-side-card,
body[data-theme="light"] .content-card,
body[data-theme="light"] .store-card,
body[data-theme="light"] .category-card,
body[data-theme="light"] .pick-card {
  background: rgba(255,255,255,0.98);
  border-color: rgba(15, 23, 42, 0.08);
}
.accent-card {
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.16) 0%, rgba(29, 35, 44, 0.92) 100%);
}
body[data-theme="light"] .accent-card {
  background: linear-gradient(180deg, #fff9db 0%, #ffffff 100%);
}
.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--accent-soft);
}
.service-card h3,
.price-card h3,
.content-card h3,
.service-side-card h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}
.service-card ul,
.check-list,
.footer-grid ul {
  margin: 16px 0 0;
  padding-left: 18px;
}
.service-card li + li,
.check-list li + li,
.footer-grid li + li { margin-top: 8px; }

.process-grid,
.price-grid,
.service-page-grid,
.benefits-grid,
.faq-grid,
.request-grid,
.footer-grid,
.footer-bottom {
  display: grid;
  gap: 28px;
}
.process-grid,
.benefits-grid,
.faq-grid,
.price-grid,
.service-page-grid,
.request-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline article {
  transform-origin: center;
}
.timeline article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
}
.timeline span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--dark);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}
.timeline h3 {
  margin: 4px 0 8px;
  font-size: 1.2rem;
}

.benefit-list,
.faq-list {
  display: grid;
  gap: 16px;
}
.benefit-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.benefit-list article,
.faq-list details {
  padding: 22px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
}
body[data-theme="light"] .benefit-list article,
body[data-theme="light"] .faq-list details {
  background: rgba(255,255,255,0.96);
  border-color: rgba(15, 23, 42, 0.08);
}
.benefit-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 14px 0 4px; }

.price-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 212, 0, 0.1);
  border: 1px solid var(--line);
}
.store-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 0, 0.34);
}
.store-filter.active {
  border-color: rgba(255, 212, 0, 0.68);
  box-shadow: 0 0 0 1px rgba(255, 212, 0, 0.28) inset;
}
.store-hero .hero-grid {
  align-items: stretch;
}
.store-hero-panel {
  position: relative;
}
.store-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.store-hero-highlights span,
.store-hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.store-hero-highlights span {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}
.store-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.store-hero-badge {
  background: rgba(255, 212, 0, 0.16);
  border: 1px solid rgba(255, 212, 0, 0.22);
  color: #fff6c4;
}
body[data-theme="light"] .store-hero-highlights span {
  background: rgba(255,255,255,0.94);
  border-color: rgba(15, 23, 42, 0.08);
}
body[data-theme="light"] .store-hero-badge {
  color: #6e5a00;
}
.store-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.store-toolbar-copy {
  display: grid;
  gap: 6px;
}
.store-toolbar-copy strong {
  font-size: 1rem;
}
.store-toolbar-copy span {
  color: var(--muted);
  line-height: 1.6;
}
.store-filter-row {
  margin-top: 0;
  margin-bottom: 0;
}
body[data-theme="light"] .store-toolbar {
  background: rgba(255,255,255,0.96);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.05);
}
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
.store-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}
body[data-theme="light"] .store-image {
  background: linear-gradient(180deg, #fffdf4 0%, #f7f8fb 100%);
}
.store-body {
  padding: 22px;
}
.store-body h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}
.store-body ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.store-body li + li {
  margin-top: 8px;
}
.store-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.store-price {
  font-size: 1.24rem;
  font-weight: 800;
}
body[data-theme="light"] .store-price {
  color: #1f232b;
}
.stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}
.stock-in {
  color: #bff8d7;
  background: rgba(28, 154, 92, 0.18);
  border: 1px solid rgba(28, 154, 92, 0.36);
}
.stock-out {
  color: #ffd1d1;
  background: rgba(176, 58, 58, 0.18);
  border: 1px solid rgba(176, 58, 58, 0.34);
}
body[data-theme="light"] .stock-in {
  color: #187446;
  background: rgba(42, 180, 105, 0.12);
  border-color: rgba(42, 180, 105, 0.28);
}
body[data-theme="light"] .stock-out {
  color: #a13a3a;
  background: rgba(176, 58, 58, 0.1);
  border-color: rgba(176, 58, 58, 0.24);
}
.pick-card {
  border-radius: 24px;
}
.category-card {
  border-radius: 24px;
}
body[data-theme="light"] .pick-card,
body[data-theme="light"] .category-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}
.category-card h3,
.pick-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}
.category-card p,
.pick-card p,
.store-body p {
  color: var(--muted);
  line-height: 1.65;
}
.price-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.service-side-card h3,
.content-card h3,
.category-card h3,
.pick-card h3 {
  color: var(--text);
}
body[data-theme="light"] .service-side-card,
body[data-theme="light"] .content-card,
body[data-theme="light"] .category-card,
body[data-theme="light"] .pick-card {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.request-section {
  padding-bottom: 96px;
}
.request-grid {
  padding: 34px;
}
.light-text,
.contact-stack a,
.request-grid label {
  color: rgba(255,255,255,0.78);
}
.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-stack a {
  font-size: 1.02rem;
  font-weight: 700;
}
.request-form {
  display: grid;
  gap: 14px;
}
.request-form label {
  display: grid;
  gap: 8px;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 15px 16px;
  color: #fff;
  background: rgba(255,255,255,0.05);
}
body[data-theme="light"] .request-grid.card-dark {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}
body[data-theme="light"] .request-grid.card-dark .light-text,
body[data-theme="light"] .request-grid.card-dark .contact-stack a,
body[data-theme="light"] .request-grid.card-dark label {
  color: rgba(30, 36, 48, 0.78);
}
.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255,255,255,0.48);
}
body[data-theme="light"] .request-form input,
body[data-theme="light"] .request-form select,
body[data-theme="light"] .request-form textarea {
  color: #1e2430;
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}
body[data-theme="light"] .request-form input::placeholder,
body[data-theme="light"] .request-form textarea::placeholder {
  color: rgba(30, 36, 48, 0.42);
}

.site-footer {
  padding: 0 0 34px;
}
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 24px 0 16px;
  border-top: 1px solid var(--line);
}
.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}
.footer-grid ul {
  list-style: none;
  padding-left: 0;
}
.footer-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-bottom span:last-child { text-align: right; }
body[data-theme="light"] .site-footer {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.58) 100%);
}
body[data-theme="light"] .footer-grid,
body[data-theme="light"] .footer-bottom {
  border-color: rgba(15, 23, 42, 0.08);
}

.success-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 360px;
  padding: 18px 20px;
  border-radius: 18px;
  color: #fff;
  background: #1f7a44;
  box-shadow: 0 20px 46px rgba(0,0,0,0.24);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}
.success-toast.error { background: #9a3d2a; }
.success-toast.visible {
  opacity: 1;
  transform: translateY(0);
}
.success-toast strong {
  display: block;
  margin-bottom: 6px;
}
.success-toast span {
  display: block;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
}

@media (max-width: 1180px) {
  .service-grid,
  .price-cards,
  .content-grid-2,
  .benefit-list,
  .store-grid,
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid,
  .process-grid,
  .benefits-grid,
  .faq-grid,
  .request-grid,
  .footer-grid,
  .price-grid,
  .service-page-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 12ch; }
  .store-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .container { width: min(100% - 24px, 1320px); }
  .section,
  .section-wide { padding: 72px 0; }
  .hero-slider,
  .hero-slider-media {
    min-height: 62vh;
  }
  .hero-slide-content {
    min-height: 100%;
    row-gap: 12px;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 92px;
  }
  .hero-slide-content h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 6vw, 3.3rem);
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    padding: 16px;
    border-radius: 22px;
    background: rgba(12, 19, 33, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .lang-toggle-wrap {
    justify-content: flex-start;
    margin-left: 0;
  }
  body[data-theme="light"] .site-nav {
    background: rgba(255,255,255,0.98);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .hero-points,
  .hero-stat-grid,
  .footer-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-grid,
  .price-cards,
  .content-grid-2,
  .benefit-list,
  .store-grid,
  .category-grid { grid-template-columns: 1fr; }
  .store-hero-highlights,
  .store-hero-badges {
    gap: 8px;
  }
  .hero-slider,
  .hero-slider-media {
    min-height: 68vh;
  }
  .slider-dot {
    width: 34px;
  }
  .slider-dot.is-active {
    width: 52px;
  }
  .hero-copy h1 { font-size: 2.8rem; }
  .hero-slide-content h2 { font-size: clamp(1.75rem, 7vw, 2.55rem); }
  .hero-slide-content p { font-size: 0.92rem; }
  .section-head h2,
  .process-grid h2,
  .benefits-grid h2,
  .faq-grid h2,
  .request-grid h2,
  .price-grid h2,
  .service-page-grid h1 { font-size: 2.05rem; }
  .request-grid,
  .hero-visual,
  .service-card,
  .timeline article,
  .price-card,
  .service-side-card,
  .content-card { padding: 20px; }
  .timeline article { grid-template-columns: 56px minmax(0, 1fr); }
  .timeline span {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .footer-bottom span:last-child { text-align: left; }
}


.hero-mini-trust {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.hero-mini-trust span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.5;
}
body[data-theme="light"] .hero-mini-trust span {
  background: rgba(255,255,255,0.92);
  border-color: rgba(15, 23, 42, 0.08);
  color: #5c6678;
}
.symptom-helper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.symptom-helper h3 {
  margin: 12px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.25;
}
.symptom-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.symptom-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.symptom-chip:hover,
.symptom-chip.active {
  transform: translateY(-1px);
  border-color: rgba(255,212,0,0.5);
  background: rgba(255,212,0,0.16);
}
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.symptom-card {
  padding: 22px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease, filter .18s ease;
}
body[data-theme="light"] .symptom-card {
  background: rgba(255,255,255,0.96);
  border-color: rgba(15, 23, 42, 0.08);
}
.symptom-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 0, 0.35);
}
.symptom-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.symptom-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.service-card,
.price-card,
.hero-points li,
.timeline article,
.benefit-list article,
.faq-list details,
.symptom-card {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.service-card:hover,
.price-card:hover,
.hero-points li:hover,
.timeline article:hover,
.benefit-list article:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 0, 0.3);
}
.service-card .btn,
.price-card,
.symptom-card {
  position: relative;
  overflow: hidden;
}
.service-card::after,
.price-card::after,
.symptom-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,212,0,0.12), transparent 40%, rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}
.service-card:hover::after,
.price-card:hover::after,
.symptom-card:hover::after {
  opacity: 1;
}
@media (max-width: 1080px) {
  .symptom-helper,
  .symptom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .symptom-helper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .symptom-grid,
  .hero-mini-trust {
    grid-template-columns: 1fr;
  }
  .symptom-chips {
    justify-content: flex-start;
  }
  .hero-live-bar {
    border-radius: 18px;
  }
}

.symptom-card.is-muted {
  opacity: 0.42;
  filter: grayscale(0.08);
}
.symptom-card.is-focus {
  border-color: rgba(255,212,0,0.52);
  box-shadow: 0 20px 46px rgba(255, 212, 0, 0.18);
}

.site-nav.site-nav-force {
  margin-left: auto;
}
.site-nav.site-nav-force .lang-toggle-wrap {
  margin-left: 12px;
}
body[data-theme="light"] .site-nav.site-nav-force .theme-toggle {
  background: #fff;
}
body[data-theme="light"] .site-nav.site-nav-force .btn-dark {
  background: #f2f4f8;
  color: #1f232b;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(70,209,139,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(70,209,139,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,209,139,0); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.05); }
}

@keyframes toggleBounce {
  0% { transform: translateY(0) scale(1); }
  38% { transform: translateY(15px) scale(0.97); }
  72% { transform: translateY(30px) scale(1.02); }
  100% { transform: translateY(28px) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
