/* Lean inner-page layout — one rail with nav/footer */

.page-main { padding-top: 0; }

/* Shared content rail: max-width + horizontal pad (same as .nav-inner) */
.page-rail {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  box-sizing: border-box;
}

.page-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text4);
  margin-bottom: 20px;
}
.page-crumbs a { color: var(--text3); text-decoration: none; }
.page-crumbs a:hover { color: var(--text); }
.page-crumbs .sep { color: var(--text5); }

.page-hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner,
.page-hero.simple .page-hero-inner.simple {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  box-sizing: border-box;
}
.page-hero--split {
  border-bottom: none;
  padding-bottom: 48px;
}
.page-hero-split,
.page-hero.simple .page-hero-inner.simple.page-hero-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.page-hero-copy {
  min-width: 0;
}
.page-hero-visual {
  min-width: 0;
}
.page-hero-visual .demo-ui,
.page-hero-visual .page-demo-illust--hero {
  margin: 0;
  width: 100%;
}
.page-hero-visual .demo-ui-body {
  padding: 16px 14px 14px;
}
.page-hero-visual .dui-bubble {
  font-size: 13px;
}
.page-hero-visual .dui-step-t,
.page-hero-visual .dui-prod-name {
  font-size: 14px;
}
.page-hero-visual .dui-step-s,
.page-hero-visual .dui-prod-meta,
.page-hero-visual .dui-panel li {
  font-size: 12px;
}
@media (max-width: 960px) {
  .page-hero-split,
  .page-hero.simple .page-hero-inner.simple.page-hero-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-hero-visual { order: 2; }
}
.page-h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}
.page-lead {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text3);
  max-width: 52ch;
}
.page-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.page-section-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  box-sizing: border-box;
}
.page-section-inner.narrow {
  max-width: var(--page-max);
}
.page-section-head { margin-bottom: 20px; }
.page-section-head .s-h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 8px;
}
.page-section-head .s-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text3);
  margin: 0;
  max-width: 52ch;
}

.page-value {
  background: #0d0d0d;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  color: #f0f0f0;
}
.page-value .page-section-head .s-h2 { color: #f0f0f0; }
.page-value .page-section-head .s-sub { color: #999; }

/* Why us / guarantees — FAQ → related */
.page-why {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.why-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text4);
}
.why-head .s-h2 {
  margin: 0 0 10px;
  max-width: 12ch;
}
.why-head .s-sub {
  margin: 0;
  max-width: 48ch;
}
.why-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  position: relative;
  padding: 22px 20px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: #14b87d;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 125, 0.1);
  color: #0f8f60;
  margin-bottom: 14px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.why-card-icon svg { display: block; }
.why-card-t {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}
.why-card-d {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text3);
}
.why-card.reveal.is-in:hover {
  border-color: rgba(20, 184, 125, 0.45);
  box-shadow: 0 14px 36px rgba(13, 13, 13, 0.07);
  transform: translateY(-4px);
  transition-delay: 0s;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card:hover .why-card-icon {
  transform: translateY(-2px) scale(1.06);
  background: rgba(20, 184, 125, 0.16);
  color: #0c7a52;
}
.why-head {
  margin-bottom: 28px;
}
@media (prefers-reduced-motion: reduce) {
  .why-card:hover { transform: none; }
  .why-card:hover .why-card-icon { transform: none; }
  .why-card::before { transform: none; }
}

.value-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 22px 20px;
  min-height: 100%;
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.value-card.reveal.is-in:hover {
  transform: translateY(-4px);
  border-color: #3a3a3a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition-delay: 0s;
}
.value-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #14b87d;
  margin-bottom: 14px;
}
.value-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #f0f0f0;
}
.value-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #a3a3a3;
}

.page-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text2);
  margin: 0 0 14px;
}
.page-h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 22px 0 6px;
  color: var(--text);
}
.page-ul,
.page-ol {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
}
.page-ul li,
.page-ol li { margin: 0 0 6px; }
.page-ol { list-style: decimal; }
.page-ul { list-style: disc; }

.page-cta-row {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}
.page-cta-row.left { justify-content: flex-start; }

.page-related {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.page-related a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.page-related a:hover { opacity: .7; }

.page-link-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .page-link-grid { grid-template-columns: 1fr 1fr; }
}
.page-link-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  align-items: center;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.25s ease;
}
.page-link-card:hover,
.page-link-card.reveal.is-in:hover {
  border-color: var(--border2);
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.05);
  transform: translateY(-3px);
  transition-delay: 0s;
}
.page-link-card-copy {
  min-width: 0;
}
.page-link-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.page-link-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text3);
}
.page-link-card-illust {
  width: 112px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  border-radius: 12px;
  background:
    radial-gradient(80px 50px at 70% 30%, rgba(20, 184, 125, 0.1), transparent 70%),
    var(--bg2);
}
.page-link-card-illust .svc-illust-svg {
  width: 100px;
  height: 66px;
  display: block;
}
@media (max-width: 520px) {
  .page-link-card {
    grid-template-columns: 1fr;
  }
  .page-link-card-illust {
    width: 100%;
    height: 88px;
    order: -1;
  }
}

.page-demo .page-section-head { max-width: 640px; }
.page-demo-frame {
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 10;
  min-height: 420px;
}
.page-demo-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.page-demo-illust {
  margin: 12px 0 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg2);
  box-shadow: 0 12px 40px rgba(13, 13, 13, 0.06);
}
.page-demo-illust--hero,
.demo-ui.page-demo-illust--hero {
  margin: 28px 0 0;
  max-width: none;
}
.page-hero-visual .page-demo-illust--hero,
.page-hero-visual .demo-ui.page-demo-illust--hero {
  margin: 0;
}
.page-hero-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 50px rgba(13, 13, 13, 0.08);
}
.page-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.page-demo-illust img {
  display: block;
  width: 100%;
  height: auto;
}
.page-hero.simple:not(.page-hero--split) {
  border-bottom: none;
  padding-bottom: 40px;
}
.page-demo .page-cta-row { margin-top: 16px; }

/* Persuasive demo UI */
.demo-ui {
  margin: 28px 0 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(900px 320px at 90% 0%, rgba(20, 184, 125, 0.12), transparent 50%),
    radial-gradient(700px 280px at 0% 100%, rgba(13, 13, 13, 0.04), transparent 55%),
    #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 18px 50px rgba(13, 13, 13, 0.08);
  overflow: hidden;
  position: relative;
}
.demo-ui-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}
.demo-ui-dots {
  display: inline-flex;
  gap: 5px;
}
.demo-ui-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}
.demo-ui-dots i:nth-child(1) { background: #ff5f57; }
.demo-ui-dots i:nth-child(2) { background: #febc2e; }
.demo-ui-dots i:nth-child(3) { background: #28c840; }
.demo-ui-eyebrow {
  font-size: 13px;
  font-weight: 650;
  color: var(--text2);
  letter-spacing: -0.01em;
}
.demo-ui-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
  color: #0f7a52;
}
.demo-ui-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14b87d;
  box-shadow: 0 0 0 0 rgba(20, 184, 125, 0.55);
  animation: demoPulse 1.6s ease-out infinite;
}
@keyframes demoPulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 184, 125, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(20, 184, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 184, 125, 0); }
}
.demo-ui-badge {
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
  color: #0f7a52;
  background: rgba(20, 184, 125, 0.12);
  border: 1px solid rgba(20, 184, 125, 0.22);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}
.demo-ui-live + .demo-ui-badge { margin-left: 0; }
.demo-ui-body { padding: 18px 16px 16px; }
.demo-ui-result {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(20, 184, 125, 0.18);
  background: linear-gradient(90deg, rgba(20, 184, 125, 0.1), rgba(20, 184, 125, 0.03));
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.demo-ui-result-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #14b87d;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}
.demo-ui-toast {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #0f7a52;
  background: #fff;
  border: 1px solid rgba(20, 184, 125, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  animation: demoToast 2.4s ease-in-out infinite;
}
@keyframes demoToast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.dui-chat--story {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dui-bubble {
  max-width: 94%;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}
.dui-bubble-user {
  align-self: flex-end;
  background: var(--text);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.dui-bubble-ai {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  box-shadow: 0 6px 18px rgba(13,13,13,.04);
}
.dui-typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text4);
  padding: 0 4px;
}
.dui-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bbb;
  animation: demoDot 1s infinite ease-in-out;
}
.dui-typing span:nth-child(2) { animation-delay: .15s; }
.dui-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes demoDot {
  0%, 80%, 100% { opacity: .35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}
.dui-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(20, 184, 125, 0.08);
  border: 1px solid rgba(20, 184, 125, 0.2);
}
.dui-offer-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  line-height: 1.35;
}
.dui-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 10px;
  background: #14b87d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(20, 184, 125, 0.28);
}
.dui-a1 { animation: demoIn .45s ease both; }
.dui-a2 { animation: demoIn .45s ease .2s both; }
.dui-a3 { animation: demoIn .45s ease .45s both; }
.dui-a4 { animation: demoIn .45s ease .7s both; }
@keyframes demoIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.dui-order-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.dui-order-id {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -.02em;
}
.dui-order-prod {
  font-size: 13px;
  color: var(--text3);
  margin-top: 2px;
}
.dui-order-time {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  color: #0f7a52;
  background: rgba(20, 184, 125, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
}
.dui-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.dui-timeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 550;
  color: var(--text2);
}
.dui-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  background: #fff;
  flex-shrink: 0;
  position: relative;
}
.dui-timeline li.is-done .dui-tl-dot,
.dui-timeline li.is-active .dui-tl-dot {
  border-color: #14b87d;
  background: #14b87d;
  box-shadow: 0 0 0 4px rgba(20, 184, 125, 0.12);
}
.dui-timeline li.is-active {
  color: var(--text);
  font-weight: 700;
}
.dui-saved {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 650;
  color: #0f7a52;
}

.dui-transform {
  display: grid;
  grid-template-columns: .85fr auto 1.15fr;
  gap: 10px;
  align-items: stretch;
}
.dui-spark {
  align-self: center;
  color: #14b87d;
  font-size: 18px;
  animation: demoSpark 1.8s ease-in-out infinite;
}
@keyframes demoSpark {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.dui-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.dui-panel-before { background: var(--bg2); }
.dui-panel-out {
  border-color: rgba(20, 184, 125, 0.32);
  box-shadow: 0 10px 28px rgba(20, 184, 125, 0.08);
}
.dui-panel-h {
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text4);
  margin-bottom: 10px;
}
.dui-raw {
  display: block;
  font-family: var(--fm);
  font-size: 12px;
  color: var(--text3);
  background: #fff;
  border: 1px dashed var(--border2);
  border-radius: 8px;
  padding: 12px;
  line-height: 1.4;
}
.dui-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.dui-panel li {
  font-size: 12px;
  color: var(--text2);
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--bg2);
}
.dui-prod-name {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.dui-prod-meta {
  font-size: 12px;
  color: #0f7a52;
  font-weight: 700;
  margin-bottom: 10px;
}

.dui-sales {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
}
.dui-leads,
.dui-metrics { display: grid; gap: 8px; }
.dui-lead,
.dui-metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.dui-lead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.dui-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.dui-lead-who {
  font-size: 11px;
  font-weight: 700;
  color: var(--text4);
}
.dui-lead-msg {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.dui-tag {
  font-size: 11px;
  font-weight: 750;
  color: #0f7a52;
  background: rgba(20, 184, 125, 0.12);
  border-radius: 999px;
  padding: 5px 8px;
  white-space: nowrap;
}
.dui-metric-k {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.dui-metric-v {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}
.dui-tip {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text2);
  background: rgba(20, 184, 125, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 550;
}

.dui-book {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 10px;
}
.dui-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dui-slot {
  min-width: 68px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg2);
  font-size: 13px;
  font-weight: 650;
  color: var(--text2);
}
.dui-slot.is-active {
  background: #14b87d;
  border-color: #14b87d;
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 184, 125, 0.28);
  animation: demoSlot .9s ease both;
}
@keyframes demoSlot {
  from { transform: scale(.96); }
  to { transform: none; }
}
.dui-confirm {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.dui-client {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text3);
}

@media (max-width: 800px) {
  .dui-transform,
  .dui-sales,
  .dui-book {
    grid-template-columns: 1fr;
  }
  .dui-spark { display: none; }
  .demo-ui-toast { width: 100%; margin-left: 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .demo-ui-live-dot,
  .demo-ui-toast,
  .dui-typing span,
  .dui-a1, .dui-a2, .dui-a3, .dui-a4,
  .dui-spark,
  .dui-slot.is-active { animation: none; }
}

/* FAQ / contact: same rail as nav (pad on inner, not outer) */
.wl-faq {
  padding: 80px 0 !important;
  background: var(--bg) !important;
}
.wl-contact {
  padding: 80px 0 100px !important;
  background: #0d0d0d !important;
  border-top-color: #222 !important;
  color: #f0f0f0;
}
.wl-faq-inner,
.wl-faq-inner.simple,
.wl-contact-inner {
  max-width: var(--page-max) !important;
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  box-sizing: border-box;
}
.wl-faq-inner.simple {
  display: block;
}
.wl-faq-inner.simple .wl-faq-title { margin-bottom: 24px; }

.wl-faq-title { color: var(--text) !important; }
.wl-contact-title { color: #f0f0f0 !important; }
.wl-contact-text { color: #999 !important; }
.wl-faq-item { border-bottom-color: var(--border) !important; }
.wl-faq-btn { color: var(--text) !important; }
.wl-faq-plus { color: var(--text4) !important; }
.wl-faq-answer { color: var(--text3) !important; }
.wl-contact-meta a { color: #c0c0c0 !important; }
.wl-contact-meta a:hover { color: #fff !important; }
.wl-form input,
.wl-form textarea {
  background: #161616 !important;
  border: 1px solid #333 !important;
  color: #f0f0f0 !important;
}
.wl-form input::placeholder,
.wl-form textarea::placeholder { color: #777 !important; }
.wl-form input:focus,
.wl-form textarea:focus { border-color: #888 !important; }
.wl-form-foot p { color: #777 !important; }
.form-error { color: #f87171 !important; }
.form-success { color: #4ade80 !important; }
.wl-form input.is-invalid,
.wl-form textarea.is-invalid { border-color: #ef4444 !important; }

.wl-contact .btn-primary {
  background: #fff !important;
  color: #0d0d0d !important;
}
.wl-contact .btn-primary:hover { opacity: 0.88; }
.wl-contact .btn-secondary {
  background: transparent !important;
  color: #f0f0f0 !important;
  border-color: #444 !important;
}
.wl-contact .btn-secondary:hover {
  background: #1a1a1a !important;
}

.wl-contact-inner {
  display: grid !important;
  gap: 40px !important;
  align-items: center;
}
@media (min-width: 900px) {
  .wl-contact-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
    gap: 56px !important;
  }
}
.wl-contact-main { min-width: 0; }
.wl-contact-title { margin: 0 0 12px !important; }
.wl-contact-text { margin: 0 0 18px !important; }
.wl-contact-meta { margin: 0 0 24px !important; }
.wl-contact-visual { min-width: 0; }
.wl-contact-illust {
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(420px 180px at 90% 0%, rgba(20, 184, 125, 0.16), transparent 55%),
    #141414;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.wci-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.wci-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #14b87d;
}
.wci-time { font-size: 12px; color: #888; }
.wci-thread { display: flex; flex-direction: column; gap: 10px; }
.wci-bubble {
  border-radius: 14px;
  padding: 12px 14px;
  max-width: 92%;
}
.wci-bubble p { margin: 0; font-size: 14px; line-height: 1.45; }
.wci-label {
  display: block;
  font-size: 11px;
  color: #888;
  margin-bottom: 6px;
}
.wci-in {
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  color: #e8e8e8;
  align-self: flex-start;
}
.wci-out {
  background: rgba(20, 184, 125, 0.12);
  border: 1px solid rgba(20, 184, 125, 0.28);
  color: #dff8ec;
  align-self: flex-end;
}
.wci-status {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #cfcfcf;
}
.wci-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14b87d;
  box-shadow: 0 0 0 4px rgba(20, 184, 125, 0.18);
  animation: wciPulse 1.8s ease-in-out infinite;
}
@keyframes wciPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(20, 184, 125, 0.12); }
  50% { box-shadow: 0 0 0 7px rgba(20, 184, 125, 0.22); }
}
@media (max-width: 899px) {
  .wl-contact-visual { order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .wci-dot { animation: none; }
}

/* Contacts page */
.page-contacts-channels {
  border-bottom: 1px solid var(--border);
}
.contacts-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 700px) {
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
}
.contacts-card {
  display: block;
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
a.contacts-card:hover {
  border-color: var(--text);
  background: var(--bg2);
}
.contacts-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text4);
  margin-bottom: 10px;
}
.contacts-card-value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.35;
}
.contacts-card-hours {
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  line-height: 1.5;
}
.contacts-card-msng {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.contacts-card-msng a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.contacts-card-msng a:hover { opacity: 0.75; }
.contacts-card-msng svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (max-width: 900px) {
  :root { --page-pad: 24px; }
}

@media (max-width: 640px) {
  :root { --page-pad: 20px; }
}
