/* DENYCOM web v3.2 SEO */
:root {
  --bg: #f5f6f7;
  --surface: #ffffff;
  --ink: #111820;
  --muted: #5e6873;
  --dark: #101820;
  --dark-2: #18232d;
  --accent: #ffb000;
  --accent-2: #ffd166;
  --line: #dfe3e7;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(16, 24, 32, .08);
  --wrap: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
svg { display: block; width: 100%; height: 100%; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 9999;
  background: var(--accent); color: #000; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(16,24,32,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 76px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo { width: 46px; height: 46px; flex: 0 0 46px; display:block; }
.brand-logo.small { width: 40px; height: 40px; flex-basis: 40px; }
.brand-logo img { width:100%; height:100%; object-fit:contain; display:block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { color: #fff; letter-spacing: .08em; font-size: 18px; }
.brand-text small { color: #aeb8c2; font-size: 9px; letter-spacing: .24em; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { color: #dbe1e6; text-decoration: none; font-size: 14px; font-weight: 750; }
.main-nav a:hover { color: #fff; }
.main-nav .nav-cta { padding: 10px 16px; background: var(--accent); color: #111; border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; width: 24px; background: #fff; margin: 5px auto; }

/* Typography */
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 5.25vw, 68px);
  line-height: 1.0; letter-spacing: -.048em;
  max-width: 860px; margin-bottom: 25px;
}
h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.03; letter-spacing: -.04em; margin-bottom: 18px;
}
h3 { font-size: 23px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 12px; }
.eyebrow {
  color: #a66d00; font-weight: 900; font-size: 12px;
  letter-spacing: .16em; margin: 0 0 14px;
}
.big-copy { color: var(--muted); font-size: 19px; }

/* Hero */
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(255,176,0,.13), transparent 26%),
    linear-gradient(135deg, #101820 0%, #16212b 62%, #0d141b 100%);
  color: #fff;
}
.hero-grid {
  min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 62px; align-items: center; padding-block: 78px;
}
.hero .eyebrow, .section-dark .eyebrow, .product-section .eyebrow { color: var(--accent); }
.hero-lead {
  color: #c8d0d7; font-size: clamp(18px, 1.9vw, 21px);
  max-width: 770px; margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 12px;
  text-decoration: none; font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #111; box-shadow: 0 12px 30px rgba(255,176,0,.18); }
.btn-primary:hover { background: var(--accent-2); }
.btn-secondary { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.13); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-meta span, .chips span {
  padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 750;
}
.hero-meta span { color: #c7d0d8; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }

.hero-panel {
  border-radius: 28px; padding: 26px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 35px 90px rgba(0,0,0,.25);
}
.panel-top {
  display: flex; align-items: center; gap: 10px;
  color: #aab5bf; font-size: 11px; font-weight: 900; letter-spacing: .16em;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.09);
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,176,0,.10);
}
.circuit { padding-top: 18px; }
.circuit-card {
  display: grid; grid-template-columns: 42px 1fr; column-gap: 14px;
  align-items: center; padding: 16px; border-radius: 16px;
  background: rgba(255,255,255,.055);
}
.circuit-card .num { grid-row: 1 / 3; color: var(--accent); font-weight: 900; font-size: 22px; }
.circuit-card strong { font-size: 18px; }
.circuit-card small { color: #9da9b4; }
.line {
  width: 2px; height: 18px; margin-left: 36px;
  background: linear-gradient(var(--accent), rgba(255,176,0,.2));
}

/* Process strip */
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { padding: 26px 26px 26px 0; display: flex; flex-direction: column; gap: 3px; }
.trust-grid div + div { border-left: 1px solid var(--line); padding-left: 26px; }
.trust-grid strong { font-size: 15px; }
.trust-grid span { color: var(--muted); font-size: 13px; }

/* Sections */
.section { padding: 100px 0; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.wide { max-width: 860px; }
.section-head > p:last-child { color: var(--muted); font-size: 18px; max-width: 760px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  padding: 28px; min-height: 320px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(16,24,32,.03);
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: #cfd4d9; box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card { transition: .2s ease; }
.service-card .icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: #fff4d6; margin-bottom: 26px; font-size: 22px;
}
.service-card p { color: var(--muted); font-size: 15px; }
.service-card a { margin-top: auto; padding-top: 18px; text-decoration: none; font-weight: 900; }

/* Why revision */
.section-dark {
  background:
    radial-gradient(circle at 88% 18%, rgba(255,176,0,.09), transparent 25%),
    linear-gradient(115deg, #101820, #18232d);
  color: #fff;
}
.section-dark .section-head > p:last-child { color: #bdc7cf; }
.reason-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px;
}
.reason-card {
  padding: 29px; border-radius: 21px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.045);
}
.reason-no { display: inline-block; color: var(--accent); font-weight: 900; margin-bottom: 30px; }
.reason-card p { margin-bottom: 0; color: #b8c3cc; }
.interval-box {
  margin-top: 22px; padding: 30px;
  display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px;
  align-items: start; border-radius: 22px;
  background: var(--accent); color: #111820;
}
.interval-box .eyebrow { color: #674500; }
.interval-box h3 { font-size: 32px; margin: 0; }
.interval-copy p { font-size: 16px; }
.interval-copy .note {
  margin-bottom: 0; padding-top: 15px; border-top: 1px solid rgba(17,24,32,.18);
  font-weight: 800;
}

/* FVE */
.fve-section { background: #f2f4f5; }
.fve-grid {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px;
  margin-bottom: 20px;
}
.micro-panel, .supply-card, .virtual-box {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
}
.micro-panel {
  overflow: hidden; display: grid; grid-template-columns: .95fr 1.05fr; min-height: 360px;
}
.micro-visual {
  position: relative; min-height: 320px;
  background: linear-gradient(160deg, #18232d 0 61%, #24323d 61% 100%);
}
.mini-panel {
  position: absolute; width: 105px; height: 135px;
  border: 5px solid #586873;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.16) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255,255,255,.16) 49% 51%, transparent 52%),
    linear-gradient(135deg, #1e455e, #315f79);
  box-shadow: 0 16px 25px rgba(0,0,0,.18);
}
.mini-panel.p1 { left: 42px; top: 65px; transform: rotate(-7deg); }
.mini-panel.p2 { left: 132px; top: 87px; transform: rotate(5deg); }
.micro-box {
  position: absolute; left: 84px; bottom: 42px;
  padding: 10px 14px; border-radius: 10px;
  background: var(--accent); color: #111; font-size: 11px; font-weight: 900;
  letter-spacing: .08em;
}
.flow-line {
  position: absolute; left: 140px; right: 50px; bottom: 60px; height: 2px;
  background: var(--accent);
}
.house-icon {
  position: absolute; right: 24px; bottom: 38px;
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 14px; background: #fff; color: #111820; font-size: 28px; font-weight: 900;
}
.micro-copy { padding: 36px; align-self: center; }
.micro-copy p, .supply-card p { color: var(--muted); }
.supply-card { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.tag {
  align-self: flex-start; margin-bottom: 24px; padding: 7px 10px;
  border-radius: 999px; background: #fff4d6; color: #744e00;
  font-size: 10px; font-weight: 900; letter-spacing: .12em;
}
.text-link { display: inline-block; margin-top: 12px; font-weight: 900; text-decoration: none; }

.virtual-box {
  padding: 34px 38px; border-left: 5px solid var(--accent);
  display: grid; grid-template-columns: .4fr 1fr 1.3fr; gap: 36px; align-items: center;
}
.virtual-kicker {
  color: #8b5e00; font-size: 12px; font-weight: 900; letter-spacing: .12em;
  text-transform: uppercase; margin: 0;
}
.virtual-box h3 { margin: 0; font-size: 28px; }
.virtual-box > p:last-child { margin: 0; color: var(--muted); }

/* Manifesto */
.manifesto {
  padding: 84px 0;
  background: var(--accent); color: #111820;
}
.manifesto p {
  margin: 0 0 6px; font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700; letter-spacing: -.02em;
}
.manifesto h2 {
  margin: 0; max-width: 1050px;
  font-size: clamp(38px, 5.6vw, 72px); line-height: .98;
}

/* DEM */
.product-section {
  background:
    radial-gradient(circle at 72% 40%, rgba(255,176,0,.08), transparent 27%),
    linear-gradient(180deg, #0c1218, #101820);
  color: #fff;
}
.product-badge {
  display: inline-block; margin-bottom: 28px; padding: 8px 12px;
  border-radius: 999px; background: rgba(255,176,0,.13);
  border: 1px solid rgba(255,176,0,.35); color: var(--accent);
  font-weight: 900; font-size: 11px; letter-spacing: .12em;
}
.product-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center;
}
.product-section .big-copy { color: #c6d0d8; }
.product-section p:not(.eyebrow):not(.big-copy) { color: #9eabb6; }
.dem-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; }
.dem-logo {
  width: 68px; height: 68px; padding: 6px; border-radius: 16px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
}
.dem-brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.dem-brand strong { font-size: 25px; letter-spacing: .1em; }
.dem-brand small { margin-top: 6px; color: #b7c2ca; letter-spacing: .18em; font-size: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chips span { color: #dbe2e7; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); }
.energy-diagram {
  padding: 32px; border-radius: 26px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,176,0,.10), transparent 45%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10); text-align: center;
}
.energy-node {
  margin: 0 auto; width: 160px; min-height: 90px; padding: 16px;
  border-radius: 18px; display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.energy-node b { font-size: 28px; color: var(--accent); }
.energy-node span { color: #d4dce2; font-size: 13px; font-weight: 800; }
.manager-node { width: 210px; background: rgba(255,176,0,.10); border-color: rgba(255,176,0,.35); }
.manager-node b { letter-spacing: .1em; }
.energy-arrow { color: var(--accent); font-size: 28px; line-height: 1.5; }
.energy-arrows { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.energy-arrows div { padding: 10px 8px; border-radius: 12px; background: rgba(255,255,255,.05); color: var(--accent); }
.energy-arrows span { display: block; margin-top: 5px; font-size: 11px; color: #d3dce3; font-weight: 900; }
.energy-diagram > p { margin: 20px 0 0 !important; font-size: 12px !important; color: #7f8e99 !important; }

/* Area / Contact / Footer */
.area-section { background: #fff; border-bottom: 1px solid var(--line); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.area-grid p:last-child { color: var(--muted); font-size: 18px; margin-bottom: 10px; }
.contact-section { background: #eef1f3; }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: start; }
.contact-card {
  overflow: hidden; border-radius: 22px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.contact-row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 22px 24px; border-bottom: 1px solid var(--line); text-decoration: none;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row span { color: var(--muted); font-size: 13px; }
.contact-row strong { text-align: right; }
.contact-row:not(.static):hover { background: #fff7e5; }
.site-footer { background: #0b1117; color: #87939d; padding: 34px 0 90px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; }
.footer-grid p { margin: 0; font-size: 13px; }
.footer-grid > a { color: #c6ced5; text-decoration: none; font-weight: 800; }
.mobile-bar {
  display: none; position: fixed; z-index: 1100; bottom: 0; left: 0; right: 0;
  background: #101820; border-top: 1px solid rgba(255,255,255,.1);
  padding: 8px; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mobile-bar a {
  min-height: 48px; display: grid; place-items: center;
  border-radius: 10px; text-decoration: none; font-weight: 900; font-size: 14px;
}
.mobile-bar a:first-child { background: var(--accent); color: #111; }
.mobile-bar a:last-child { background: rgba(255,255,255,.08); color: #fff; }

@media (max-width: 1020px) {
  .main-nav {
    position: absolute; left: 20px; right: 20px; top: 68px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px; border-radius: 16px; background: #131d26;
    border: 1px solid rgba(255,255,255,.1); box-shadow: 0 30px 70px rgba(0,0,0,.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .main-nav .nav-cta { margin-top: 4px; text-align: center; }
  .menu-toggle { display: block; }
  .hero-grid, .product-grid, .contact-grid, .area-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { min-height: auto; padding-block: 70px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .trust-grid div { padding: 16px 0; }
  .trust-grid div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .fve-grid { grid-template-columns: 1fr; }
  .virtual-box { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .nav-wrap { min-height: 68px; }
  .brand-logo { width: 40px; height: 40px; flex-basis: 40px; }
  .hero-grid { padding-block: 56px; }
  h1 { font-size: clamp(39px, 11.8vw, 54px); }
  h2 { font-size: 38px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-panel { padding: 18px; }
  .section { padding: 74px 0; }
  .cards, .reason-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .interval-box { grid-template-columns: 1fr; gap: 20px; }
  .interval-box h3 { font-size: 28px; }
  .micro-panel { grid-template-columns: 1fr; }
  .micro-visual { min-height: 285px; }
  .micro-copy, .supply-card { padding: 28px; }
  .manifesto { padding: 62px 0; }
  .product-grid { gap: 44px; }
  .energy-diagram { padding: 22px 14px; }
  .contact-row { flex-direction: column; gap: 4px; }
  .contact-row strong { text-align: left; }
  .mobile-bar { display: grid; }
  .site-footer { padding-bottom: 90px; }
}


/* Legal / privacy page */
.privacy-link { color: #b9c3cb; text-decoration: underline; text-underline-offset: 3px; }
.privacy-link:hover { color: #fff; }
.legal-back {
  color: #dbe1e6; text-decoration: none; font-size: 14px; font-weight: 800;
}
.legal-back:hover { color: #fff; }
.legal-hero {
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 85% 30%, rgba(255,176,0,.12), transparent 26%),
    linear-gradient(135deg, #101820, #16212b);
  color: #fff;
}
.legal-wrap { max-width: 900px; }
.legal-hero h1 { max-width: 800px; margin-bottom: 22px; }
.legal-lead { color: #c6d0d8; font-size: 20px; max-width: 760px; margin-bottom: 0; }
.legal-content { padding: 70px 0 90px; background: #f5f6f7; }
.legal-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.legal-block:first-child { padding-top: 0; }
.legal-block h2 {
  font-size: 28px;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.legal-block p,
.legal-block li { color: #4f5b66; font-size: 16px; }
.legal-block a { color: #111820; font-weight: 800; }
.legal-block ul { padding-left: 22px; }
.legal-block li + li { margin-top: 8px; }
.legal-highlight {
  margin: 20px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--accent);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(16,24,32,.04);
}
.legal-highlight strong { font-size: 18px; }
.legal-highlight p { margin: 8px 0 0; }
.legal-updated { font-size: 13px !important; color: #7b8791 !important; margin-top: 24px; }
.legal-last { border-bottom: 0; }
.legal-footer { padding-bottom: 34px; }

@media (max-width: 700px) {
  .legal-hero { padding: 64px 0 48px; }
  .legal-hero h1 { font-size: 42px; }
  .legal-lead { font-size: 18px; }
  .legal-content { padding: 48px 0 70px; }
  .legal-block { padding: 26px 0; }
  .legal-block h2 { font-size: 25px; }
  .legal-back { font-size: 13px; }
}


/* Google review CTA */
.review-cta {
  margin-top: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 16px;
  background: rgba(255,176,0,.10);
  border: 1px solid rgba(255,176,0,.32);
}
.review-cta span {
  color: var(--muted);
  font-size: 13px;
}
.review-cta a {
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.review-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 700px) {
  .review-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .review-cta a { white-space: normal; }
}


/* v3.2 SEO service pages */
.footer-grid { align-items: center; }
.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-services a {
  color: #c7d0d8;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.footer-services a:hover { color: #fff; }

.service-hero {
  background:
    radial-gradient(circle at 84% 28%, rgba(255,176,0,.13), transparent 27%),
    linear-gradient(135deg, #101820 0%, #16212b 65%, #0d141b 100%);
  color: #fff;
}
.service-hero-inner { padding: 72px 0 76px; }
.service-hero h1 { max-width: 920px; }
.service-hero .eyebrow { color: var(--accent); }
.service-hero .hero-lead { max-width: 850px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #9eabb6;
  font-size: 12px;
  margin-bottom: 36px;
}
.breadcrumb a { color: #dbe1e6; text-decoration: none; font-weight: 800; }
.breadcrumb a:hover { color: #fff; }

.service-content { background: #f5f6f7; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.detail-card h3 { font-size: 20px; }
.detail-card p { margin: 0; color: var(--muted); font-size: 15px; }

.service-page-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 54px;
  align-items: start;
}
.service-muted { color: #bcc6ce; font-size: 17px; max-width: 760px; }
.check-list, .plain-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.check-list li, .plain-list li {
  position: relative;
  padding: 13px 0 13px 32px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.check-list li::before, .plain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 12px;
  font-weight: 900;
}
.plain-list li {
  border-bottom-color: var(--line);
  color: #4f5b66;
}
.result-card {
  position: sticky;
  top: 104px;
  padding: 30px;
  border-radius: 22px;
  background: var(--accent);
  color: #111820;
}
.result-card .tag {
  display: inline-block;
  margin-bottom: 22px;
  background: rgba(17,24,32,.10);
  color: #111820;
}
.result-card h3 { font-size: 29px; }
.result-card p { font-size: 16px; }
.result-card .small-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17,24,32,.18);
  font-size: 13px;
  font-weight: 700;
}

.prep-section { background: #fff; }
.location-box {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f5f6f7;
}
.location-box h3 { font-size: 27px; }
.location-box p:last-child { color: var(--muted); margin-bottom: 0; }

.related-section { background: #eef1f3; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  min-height: 190px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  transition: .2s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: #c8cfd5;
  box-shadow: var(--shadow);
}
.related-card span {
  color: #9a6700;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.related-card strong { font-size: 20px; line-height: 1.15; }
.related-card em {
  margin-top: auto;
  color: #111820;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 980px) {
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page-grid { grid-template-columns: 1fr; gap: 30px; }
  .result-card { position: static; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .service-hero-inner { padding: 52px 0 58px; }
  .breadcrumb { margin-bottom: 28px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card { padding: 23px; }
  .result-card, .location-box { padding: 24px; }
  .footer-services { order: 2; }
}
