:root {
  --bg: #111110;
  --bg-soft: #141412;
  --surface: #151513;
  --card: #1a1a17;
  --card-elevated: #20201c;
  --hover: #28261e;
  --panel: linear-gradient(180deg, rgba(255, 255, 238, 0.07), rgba(255, 255, 238, 0.035)), var(--surface);
  --panel-strong: var(--card);
  --text: #ffffee;
  --muted: #c8c8c8;
  --muted-2: #8c8c8c;
  --yellow: #fed518;
  --yellow-soft: rgba(254, 213, 24, 0.1);
  --yellow-border: rgba(254, 213, 24, 0.18);
  --border: rgba(255, 255, 238, 0.1);
  --highlight: rgba(255, 255, 238, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --shadow: 0 24px 72px rgba(17, 17, 16, 0.42);
  --shadow-soft: 0 14px 36px rgba(17, 17, 16, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 0%, rgba(254, 213, 24, 0.055), transparent 32%),
    linear-gradient(180deg, var(--bg-soft), var(--bg) 34%, #111110);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.admin-bar .site-header {
  top: 32px;
}

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

.wp-block-group {
  margin-top: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

svg {
  height: 1em;
  width: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--yellow);
  color: #111110;
  font-weight: 900;
  padding: 0.8rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.site-main {
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--yellow-border);
  background: rgba(17, 17, 16, 0.88);
  backdrop-filter: blur(18px);
}

.site-nav {
  width: min(100% - 2rem, 1120px);
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: block;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(17, 17, 16, 0.35));
}

.brand-text strong {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: var(--nav-underline-origin, left);
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--yellow);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.nav-links a.is-entering-left {
  --nav-underline-origin: left;
}

.nav-links a.is-entering-right {
  --nav-underline-origin: right;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0.95rem 1.55rem;
  cursor: pointer;
  font-weight: 950;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus {
  box-shadow: var(--shadow-soft);
}

button {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  background: rgba(255, 255, 238, 0.26);
  transform: scale(0);
  animation: cbk-ripple 620ms ease-out forwards;
}

@keyframes cbk-ripple {
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}

.btn-primary {
  background: var(--yellow);
  color: #111110;
  animation: cbk-button-breathe 4.2s ease-in-out infinite;
}

@keyframes cbk-button-breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
  100% {
    transform: scale(1);
  }
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--text);
  animation-play-state: paused;
  transform: scale(1.045);
}

.btn-secondary {
  border-color: var(--yellow-border);
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.045), rgba(255, 255, 238, 0.015)), var(--surface);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: rgba(254, 213, 24, 0.6);
  background: var(--yellow);
  color: #111110;
}

.btn-small {
  min-height: 42px;
  border-radius: 16px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

.wp-block-button.btn-primary,
.wp-block-button.btn-secondary {
  display: inline-flex;
  margin: 0;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
  transform: none;
  overflow: visible;
  color: inherit;
}

.wp-block-button.btn-primary:hover,
.wp-block-button.btn-primary:focus,
.wp-block-button.btn-secondary:hover,
.wp-block-button.btn-secondary:focus {
  background: transparent;
  box-shadow: none;
  animation: none;
  transform: none;
  color: inherit;
}

.wp-block-button.btn-primary > .wp-block-button__link,
.wp-block-button.btn-secondary > .wp-block-button__link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0.95rem 1.55rem;
  cursor: pointer;
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.wp-block-button.btn-primary > .wp-block-button__link {
  background: var(--yellow);
  color: #111110;
  animation: cbk-button-breathe 4.2s ease-in-out infinite;
}

.wp-block-button.btn-primary > .wp-block-button__link:hover,
.wp-block-button.btn-primary > .wp-block-button__link:focus {
  background: var(--text);
  animation-play-state: paused;
  box-shadow: var(--shadow-soft);
  transform: scale(1.045);
}

.wp-block-button.btn-secondary > .wp-block-button__link {
  border-color: var(--yellow-border);
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.045), rgba(255, 255, 238, 0.015)), var(--surface);
  color: var(--text);
}

.wp-block-button.btn-secondary > .wp-block-button__link:hover,
.wp-block-button.btn-secondary > .wp-block-button__link:focus {
  border-color: rgba(254, 213, 24, 0.6);
  background: var(--yellow);
  box-shadow: var(--shadow-soft);
  color: #111110;
}

.pointer-glow {
  pointer-events: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(50vw, 50vh, 0) translate(-50%, -50%);
  background: radial-gradient(circle, rgba(254, 213, 24, 0.13), rgba(254, 213, 24, 0.05) 34%, transparent 68%);
  filter: blur(18px);
  mix-blend-mode: screen;
  transition: opacity 250ms ease;
}

.hero {
  position: relative;
  padding: 150px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(254, 213, 24, 0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(254, 213, 24, 0.1), transparent 30%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-grid > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

.faq-section > .wp-block-group__inner-container {
  width: 100%;
}

.faq-grid > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: 2rem;
  width: 100%;
  align-items: flex-start;
}

.hero-copy,
.hero-copy > .wp-block-group__inner-container {
  min-width: 0;
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(254, 213, 24, 0.3);
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--yellow);
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.badge svg {
  width: 17px;
  height: 17px;
}

.hero h1 {
  max-width: 880px;
  margin: 1.35rem 0 0;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span,
.cta-box h2 span,
.detail-hero h1 span {
  color: var(--yellow);
}

.cta-box h2 .cta-text-white {
  color: var(--text);
}

.hero-copy > p,
.hero-copy > .wp-block-group__inner-container > p {
  max-width: 820px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions.wp-block-buttons {
  display: flex;
}

.panel,
.faq-grid,
.cta-box {
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.panel::before,
.faq-grid::before,
.cta-box::before,
.hero-services-carousel::before,
.service-card::before,
.workflow-card::before,
.workflow-intro::before,
.review-offer::before,
.slot-card::before,
.feature-card::before,
.post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--highlight), transparent 34%);
  opacity: 0.78;
}

.hero-services-carousel {
  min-width: 0;
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  position: relative;
  padding: clamp(1rem, 3vw, 1.4rem);
  overflow: hidden;
}

.hero-services-carousel > *,
.panel > *,
.faq-grid > *,
.cta-box > *,
.service-card > *,
.workflow-card > *,
.workflow-intro > *,
.review-offer > *,
.slot-card > *,
.feature-card > *,
.post-card > * {
  position: relative;
  z-index: 1;
}

.hero-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-service-head span {
  color: var(--muted-2);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-service-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding: 0.15rem 14% 1rem 0;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.hero-service-track::-webkit-scrollbar {
  display: none;
}

.hero-service-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.hero-service-card {
  flex: 0 0 84%;
  scroll-snap-align: start;
  border: 1px solid var(--yellow-border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.055), rgba(255, 255, 238, 0.025)), var(--card);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-service-card:hover,
.hero-service-card:focus {
  border-color: rgba(254, 213, 24, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.075), rgba(255, 255, 238, 0.035)), var(--card-elevated);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.hero-service-card .service-visual {
  min-height: 168px;
}

.hero-service-copy {
  margin-top: 1rem;
}

.hero-service-copy > span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.hero-service-copy h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
}

.hero-service-copy strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--text);
}

.hero-service-copy p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.muted-label,
.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-intro h2,
.faq-grid h2,
.cta-box h2,
.inquiry-section h2,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-intro p:not(.eyebrow),
.faq-grid p,
.cta-box p,
.inquiry-section > .shell > p {
  color: var(--muted);
  line-height: 1.7;
}

.service-visual {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--yellow-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(254, 213, 24, 0.32), transparent 28%),
    radial-gradient(circle at 82% 88%, rgba(255, 255, 238, 0.08), transparent 32%),
    #101c24;
}

.visual-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border: 1px solid rgba(254, 213, 24, 0.35);
  border-radius: 999px;
  background: rgba(254, 213, 24, 0.1);
  color: var(--yellow);
  padding: 0.35rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.visual-shape {
  position: absolute;
  display: block;
  border-radius: 18px;
}

.service-visual-content .visual-shape-a {
  left: 2rem;
  top: 4rem;
  width: 76px;
  height: 128px;
  border: 1px solid rgba(254, 213, 24, 0.45);
  border-radius: 28px;
  background: var(--surface);
}

.service-visual-content .visual-shape-b {
  left: 3rem;
  top: 6rem;
  width: 44px;
  height: 56px;
  background: var(--yellow);
}

.service-visual-content .visual-shape-c {
  right: 2rem;
  bottom: 2rem;
  width: 120px;
  height: 18px;
  background: var(--yellow);
}

.service-visual-website .visual-shape-a,
.service-visual-hosting .visual-shape-a,
.service-visual-seo .visual-shape-a,
.service-visual-automation .visual-shape-a,
.service-visual-integrations .visual-shape-a {
  inset: 4.2rem 1.5rem auto;
  height: 95px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 238, 0.06);
}

.service-visual-website .visual-shape-b,
.service-visual-hosting .visual-shape-b,
.service-visual-seo .visual-shape-b,
.service-visual-automation .visual-shape-b,
.service-visual-integrations .visual-shape-b {
  left: 2.3rem;
  right: 2.3rem;
  bottom: 1.6rem;
  height: 40px;
  border: 1px solid rgba(254, 213, 24, 0.25);
  border-radius: 999px;
  background: var(--surface);
}

.service-visual-social .visual-shape-a,
.service-visual-brand .visual-shape-a {
  left: 2rem;
  top: 4.3rem;
  width: 80px;
  height: 80px;
  background: var(--yellow);
}

.service-visual-social .visual-shape-b,
.service-visual-brand .visual-shape-b {
  right: 2rem;
  top: 4rem;
  width: 112px;
  height: 112px;
  border: 1px solid var(--border);
  background:
    linear-gradient(90deg, var(--yellow) 0 48%, transparent 48% 52%, var(--text) 52%),
    var(--surface);
}

.service-visual-analytics .visual-shape-a,
.service-visual-analytics .visual-shape-b,
.service-visual-analytics .visual-shape-c {
  bottom: 2rem;
  width: 34px;
  background: var(--yellow);
}

.service-visual-analytics .visual-shape-a { left: 3rem; height: 76px; opacity: 0.75; }
.service-visual-analytics .visual-shape-b { left: 6rem; height: 108px; opacity: 0.9; }
.service-visual-analytics .visual-shape-c { left: 9rem; height: 138px; }

.fade-in-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mini-grid {
  display: grid;
  gap: 0.75rem;
}

.mini-grid span {
  display: block;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 238, 0.055);
  color: var(--muted);
  padding: 0.85rem;
  font-size: 0.9rem;
}

.faq-section,
.cta-section,
.inquiry-section,
.section {
  padding: 64px 0;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(254, 213, 24, 0.11), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(254, 213, 24, 0.055), transparent 28%),
    linear-gradient(180deg, rgba(254, 213, 24, 0.035), transparent 24%, transparent 74%, rgba(254, 213, 24, 0.025));
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(254, 213, 24, 0.08), rgba(254, 213, 24, 0.025), transparent);
  filter: blur(24px);
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

.detail-hero + .inquiry-section,
.detail-hero + .section {
  padding-top: 24px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-intro h2 {
  max-width: 720px;
}

.section-intro p:not(.eyebrow) {
  max-width: 680px;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.trust-detail {
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.slot-grid span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--yellow-border);
  border-radius: 18px;
  background: var(--yellow-soft);
  color: var(--yellow);
  font-weight: 950;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--yellow-border);
  border-radius: 24px;
  background: rgba(255, 255, 238, 0.045);
  padding: 1rem;
}

.profile-card > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 22px;
  background: var(--yellow);
  color: #111110;
  font-size: 1.4rem;
  font-weight: 950;
}

.profile-card p {
  margin: 0;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-grid span {
  display: block;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 238, 0.055);
  color: var(--muted);
  padding: 1rem;
}

.trust-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.faq-grid {
  display: block;
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.faq-list {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--yellow-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.055), rgba(255, 255, 238, 0.02)), var(--card);
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(254, 213, 24, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.075), rgba(255, 255, 238, 0.028)), var(--card-elevated);
}

.faq-item button,
.faq-item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 1.1rem;
  text-align: left;
  font-weight: 950;
  list-style: none;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item button strong,
.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--yellow);
  color: #111110;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 1.1rem 1.1rem;
}

.faq-item.is-open p,
.faq-item[open] p {
  display: block;
}

.cta-box {
  padding: clamp(2rem, 7vw, 4.5rem);
  text-align: center;
}

.cta-box h2 {
  max-width: 760px;
  margin-inline: auto;
}

.cta-box p {
  max-width: 600px;
  margin: 1rem auto 1.8rem;
}

.panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.inquiry-section h2 {
  max-width: 840px;
}

.form-status {
  display: grid;
  gap: 0.35rem;
  margin: 1.5rem 0;
  border-radius: 22px;
  padding: 1rem;
}

.form-status-success {
  border: 1px solid rgba(254, 213, 24, 0.28);
  background: rgba(254, 213, 24, 0.08);
}

.form-status-error {
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.08);
}

.form-status strong {
  color: var(--text);
  font-size: 1.1rem;
}

.form-status span {
  color: var(--muted);
}

.inquiry-form {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--yellow-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.035), rgba(255, 255, 238, 0.015)), var(--surface);
  padding: clamp(1rem, 3vw, 1.5rem);
}

legend {
  padding: 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 950;
}

legend small {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

fieldset > p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-soft);
  color: var(--text);
  outline: none;
  padding: 0.95rem 1rem;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254, 213, 24, 0.12);
}

.span-2 {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-panel {
  display: none;
}

.inquiry-panel.is-active {
  display: block;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-submit span {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--yellow-border);
  background: linear-gradient(180deg, var(--surface), var(--bg));
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.footer-grid strong {
  color: var(--yellow);
  font-size: 1.15rem;
}

.footer-grid .footer-brand-text span:first-child {
  color: var(--text);
}

.footer-grid .footer-brand-text span:last-child {
  color: var(--yellow);
}

.footer-grid p {
  max-width: 520px;
  margin: 0.35rem 0 0;
  color: var(--muted-2);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
  color: var(--muted);
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  border: 1px solid var(--yellow-border);
  border-radius: 18px;
  background: rgba(254, 213, 24, 0.04);
  color: var(--yellow);
  padding: 0.8rem 1rem;
  font-weight: 950;
}

.detail-hero {
  padding-top: 130px;
  padding-bottom: 28px;
}

.detail-hero .panel > p:not(.eyebrow),
.workflow-intro p,
.workflow-card p,
.review-offer p,
.slot-card p,
.entry-content {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-carousel-shell {
  overflow: hidden;
}

.service-grid.service-carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(1rem, calc((100% - min(72vw, 680px)) / 2));
  padding: 0.25rem max(1rem, calc((100% - min(72vw, 680px)) / 2)) 1rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  user-select: none;
}

.service-grid.service-carousel-track::-webkit-scrollbar {
  display: none;
}

.service-grid.service-carousel-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.detail-stack {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.workflow-card,
.workflow-intro,
.review-offer,
.slot-card,
.feature-card,
.post-card {
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.workflow-card:hover,
.workflow-intro:hover,
.review-offer:hover,
.slot-card:hover,
.feature-card:hover,
.post-card:hover {
  border-color: rgba(254, 213, 24, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 238, 0.075), rgba(255, 255, 238, 0.035)), var(--card-elevated);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card h2,
.workflow-card h2,
.review-offer h2,
.slot-card h2,
.feature-card h2,
.post-card h2 {
  margin: 0.8rem 0;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 950;
}

.service-card-rich {
  display: grid;
  flex: 0 0 min(72vw, 680px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  gap: 1rem;
  align-content: start;
}

.service-card-visual {
  min-height: 150px;
}

.service-card-head {
  display: block;
}

.service-card-head .eyebrow {
  margin-bottom: 0.2rem;
}

.service-measure-groups {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.service-measure-groups strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
}

.service-measure-groups ul {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
  line-height: 1.45;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-number {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(254, 213, 24, 0.35);
  border-radius: 16px;
  background: var(--yellow-soft);
  color: var(--yellow);
  padding: 0 0.75rem;
  font-weight: 950;
}

.workflow-list,
.review-grid {
  display: grid;
  gap: 1rem;
}

.workflow-intro,
.review-offer {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.workflow-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
}

.workflow-card > div {
  min-width: 0;
}

.workflow-card .pill {
  max-width: max-content;
  white-space: normal;
}

.workflow-number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: var(--yellow);
  color: #111110;
  font-size: 1.5rem;
  font-weight: 950;
}

details {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

summary {
  color: var(--yellow);
  cursor: pointer;
  font-weight: 950;
}

.offer-box {
  border: 1px solid var(--yellow-border);
  border-radius: 24px;
  background: var(--yellow-soft);
  padding: 1.3rem;
}

.offer-box > span {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-box > strong {
  display: block;
  margin-top: 1rem;
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 950;
}

.slot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slot-head span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--yellow);
  color: #111110;
  font-weight: 950;
}

.slot-head strong {
  border: 1px solid var(--yellow-border);
  border-radius: 999px;
  color: var(--yellow);
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.wp-content-panel h1 {
  margin-top: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 0;
  }

  .site-nav {
    min-height: 78px;
    flex-wrap: nowrap;
    gap: 0.8rem;
    padding: 0.75rem 0;
  }

  .nav-links {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(0.6rem, 2vw, 1.2rem);
    overflow: visible;
    padding-bottom: 0;
    font-size: clamp(0.78rem, 1.8vw, 0.94rem);
    white-space: nowrap;
  }

  .brand {
    flex: 0 0 auto;
    gap: 0.55rem;
    font-size: clamp(0.92rem, 1.7vw, 1.08rem);
  }

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

  .brand-text {
    max-width: none;
    line-height: 1.05;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 48px;
    flex: 0 0 auto;
    border-radius: 18px;
    padding: 0.75rem 1.05rem;
    font-size: 0.9rem;
  }

  .hero-grid,
  .hero-grid > .wp-block-group__inner-container,
  .faq-grid,
  .faq-grid > .wp-block-group__inner-container,
  .trust-detail,
  .workflow-intro,
  .workflow-card,
  .review-offer {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    gap: 1rem;
  }

  .workflow-card > div {
    min-width: 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-services-carousel {
    margin-top: 0.25rem;
  }

  .hero-service-card {
    flex-basis: 58%;
  }

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

  .service-card-rich {
    flex-basis: min(76vw, 620px);
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 1rem, 1120px);
  }

  .brand-text {
    max-width: none;
    line-height: 1.1;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 46px;
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-actions,
  .hero-actions .btn,
  .hero-actions .wp-block-button,
  .hero-actions .wp-block-button__link {
    width: 100%;
  }

  .hero-service-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-service-card {
    flex-basis: 84%;
  }

  .hero-service-actions,
  .hero-service-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .form-grid,
  .mini-grid,
  .trust-grid,
  .service-grid,
  .feature-grid,
  .feature-grid-compact,
  .workflow-card {
    grid-template-columns: 1fr;
  }

  .service-grid.service-carousel-track {
    scroll-padding-inline: 8vw;
    padding-inline: 8vw;
  }

  .service-card-rich {
    flex-basis: 84%;
  }

  .service-visual {
    min-height: 175px;
  }

  .slot-grid {
    grid-template-columns: repeat(5, minmax(42px, 1fr));
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .nav-links {
    display: none;
  }

  .brand-text {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .pointer-glow {
    display: none;
  }
}
