



:root {
  --main: #1f2937;
  --accent: #0284c7;
  --accent-text: #0284c7;
  --accent-hover: #0369a1;
  --success: #28a745;
  --whatsapp-green: #25D366;

  --bg: #f8fafc;
  --card: #ffffff;

  --text-dark: #0f172a;
  --text-light: #475569;

  --border-light: rgba(15, 23, 42, 0.10);

  --header-bg: #ffffff;
  --footer-bg: #0f172a;
  --footer-text: #f1f5f9;

  --explanation-bg: #f0f9ff;
  --explanation-border: #e0f2fe;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 14px 36px rgba(0,0,0,0.10);

  --radius-sm: 10px;
  --radius-md: 16px;

  --font-size-base: 18px;
  --line-base: 1.85;

  --content-max: 1180px;
  --prose-width: 78ch;
}

html[data-theme="dark"] {
  --main: #f3f4f6;
  --accent: #0284c7;
  --accent-text: #0284c7;
  --accent-hover: #0369a1;
  --success: #34d399;
  --whatsapp-green: #25D366;

  --bg: #0b1220;
  --card: #111b2c;

  --text-dark: #f3f4f6;
  --text-light: #9ca3af;

  --border-light: rgba(255,255,255,0.12);

  --header-bg: #0b1220;
  --footer-bg: #070d18;
  --footer-text: #e2e8f0;

  --explanation-bg: rgba(2,132,199,0.10);
  --explanation-border: rgba(2,132,199,0.20);

  --shadow-sm: 0 2px 14px rgba(0,0,0,0.30);
  --shadow-md: 0 18px 44px rgba(0,0,0,0.40);
}



* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  height: 100%;
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: var(--line-base);
  font-size: var(--font-size-base);
  padding-top: 84px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { flex-grow: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 10px;
}

p { margin: 0 0 1.15rem 0; }
p + p { margin-top: 0.65rem; }

h1, h2, h3 {
  color: var(--main);
  line-height: 1.25;
  margin: 0 0 0.95rem 0;
  letter-spacing: -0.01em;
}

ul, ol { padding-left: 1.15rem; margin: 0 0 1.15rem 0; }
li { margin: 0.35rem 0; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: clamp(56px, 8vh, 94px) 0;
}

.section-title {
  font-size: clamp(28px, 3.8vw, 38px);
  text-align: center;
  margin: 0 0 0.9rem 0;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 2.6rem auto;
  text-align: center;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 1.06rem;
}

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




.site-header {
  background: var(--header-bg);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
}

@media (min-width: 769px) {
  .site-header .container.nav {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  color: var(--main);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--main);
}

.nav-toggle .icon-svg {
  width: 1em;
  height: 1em;
  vertical-align: 0;
  color: inherit;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--accent); }


.icon-svg {
  display: inline-block;
  width: 1em;
  min-width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.125em;
  flex-shrink: 0;
  shape-rendering: geometricPrecision;
  fill: currentColor;
  color: var(--accent);
}

.icon-svg use {
  fill: currentColor;
}

.icon-svg path,
.icon-svg line,
.icon-svg polyline,
.icon-svg circle,
.icon-svg rect {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.theme-toggle:hover { transform: translateY(-1px); border-color: rgba(2,132,199,0.35); }

.theme-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  transition: opacity 0.2s ease;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}

.icon-sun { opacity: 0; }
.icon-moon { opacity: 1; }

html[data-theme="dark"] .icon-sun { opacity: 1; }
html[data-theme="dark"] .icon-moon { opacity: 0; }

@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 14px 12px;
    row-gap: 8px;
  }

  .logo {
    font-size: 17px;
    gap: 8px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .header-controls {
    gap: 10px;
    justify-self: end;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: min(520px, calc(100vw - 24px));
    background: var(--header-bg);
    position: absolute;
    top: 64px;
    right: 12px;
    padding: 14px;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    gap: 10px;
  }

  .nav-links.show { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: rgba(2,132,199,0.10);
    color: var(--text-dark);
  }
}

#palvelut,
#hinnat,
#ukk,
#luottamus,
#yhteys {
  scroll-margin-top: 102px;
}

@media (max-width: 768px) {
  #palvelut,
  #hinnat,
  #ukk,
  #luottamus,
  #yhteys {
    scroll-margin-top: 92px;
  }
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  transform: translateY(-220%);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;

  padding: 10px 12px;
  border-radius: 12px;
  background: var(--card);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 18px;
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;

  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-align: center;

  width: 100%;
  max-width: 360px;
}

.cta-button .icon-svg {
  width: 1.04em;
  height: 1.04em;
  vertical-align: -0.12em;
  color: inherit;
}

.cta-button.primary { background: #0284c7; color: #fff; }
.cta-button.primary:hover { background: #0369a1; transform: translateY(-1px); }

.cta-button.whatsapp {
  background: var(--card);
  color: var(--whatsapp-green);
  border-color: rgba(37,211,102,0.70);
}
.cta-button.whatsapp:hover { background: rgba(37,211,102,0.08); transform: translateY(-1px); }

.cta-button.ghost {
  background: transparent;
  border-color: rgba(2,132,199,0.9);
  color: var(--accent);
}
.cta-button.ghost:hover { background: rgba(2,132,199,0.10); transform: translateY(-1px); }

@media (min-width: 768px) {
  .cta-button { width: auto; max-width: none; }
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 26px 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer p { margin: 0; line-height: 1.7; }
.site-footer a { color: #93c5fd; text-decoration: none; padding: 0 5px; }
.site-footer a:hover { color: #ffffff; text-decoration: underline; }

.mobile-sticky-cta { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 92px) !important; }

  .mobile-sticky-cta {
    display: flex !important;
    position: fixed;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    z-index: 1001;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    align-items: stretch;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  html[data-theme="dark"] .mobile-sticky-cta {
    background: rgba(11, 18, 32, 0.96);
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .sticky-btn {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    min-height: 52px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.94rem;
    text-decoration: none;
    color: white;
    box-shadow: 0 6px 16px rgba(0,0,0,0.16);
    line-height: 1.15;
    text-align: center;
  }

  .sticky-btn .icon-svg {
    width: 1em;
    height: 1em;
    vertical-align: -0.1em;
    color: inherit;
  }

  .sticky-btn.call { background-color: #0284c7; }
  html[data-theme="dark"] .sticky-btn.call { background-color: #0284c7; }
  .sticky-btn.whatsapp {
    background-color: var(--whatsapp-green);
    font-size: 0.90rem;
  }
}

#toTop {
  position: fixed;
  bottom: 92px;
  right: 18px;
  width: 46px;
  height: 46px;
  background: #0284c7;
  color: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: transform 0.2s ease, background 0.2s ease;
}

#toTop .icon-svg {
  width: 1.08rem;
  height: 1.08rem;
  vertical-align: 0;
  color: inherit;
}

.callback-prompt-button .icon-svg,
.cookie-btn .icon-svg,
.btn-submit .icon-svg {
  color: inherit;
}

#toTop:hover { transform: translateY(-1px); background: #0369a1; }
@media (max-width: 768px) { #toTop { bottom: calc(env(safe-area-inset-bottom, 0px) + 96px); } }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--card);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.14);
  padding: 18px 16px;
  z-index: 9998;
  display: none;
  border-top: 1px solid var(--border-light);
}

.cookie-banner-content {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.cookie-banner-buttons { display: flex; gap: 12px; }

.cookie-link {
  color: var(--accent-text);
  font-weight: 700;
}
.cookie-link:hover { color: var(--accent-hover); }

.cookie-btn {
  padding: 0.7rem 1.05rem;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid var(--border-light);
  cursor: pointer;
}

.cookie-btn.accept { background: #0284c7; color: white; border-color: transparent; }
.cookie-btn.accept:hover { background: #0369a1; }

.cookie-btn.deny { background: transparent; color: var(--text-dark); }

@media (min-width: 768px) {
  .cookie-banner-content { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (max-width: 768px) {
  .cookie-banner-content p {
    line-height: 1.55;
  }

  .cookie-banner-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-btn {
    width: 100%;
  }
}

code {
  background: rgba(15,23,42,0.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}
html[data-theme="dark"] code { background: rgba(255,255,255,0.10); }

.hero {
  background: var(--card);
  padding: clamp(56px, 7vh, 88px) 0 clamp(36px, 5vh, 58px);
  text-align: center;
}

.hero-title {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.10;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-slogan {
  display: block;
  margin-top: 0.65rem;
  color: var(--accent);
  font-size: 1.05em;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.08rem;
  max-width: 72ch;
  margin: 1rem auto 1.6rem auto;
  color: var(--text-light);
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  max-width: 80ch;
  margin: 0 auto 0.95rem auto;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(2,132,199, 0.35);
}

.breadcrumb a:hover {
  color: var(--accent-hover);
  border-bottom-color: rgba(2,132,199, 0.7);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.55;
}

.breadcrumb span:last-child {
  color: var(--text-light);
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.hero-cta-buttons .cta-button {
  min-width: 240px;
}

.hero-support-text {
  margin-top: 18px;
  color: var(--text-light);
  max-width: 72ch;
}

.hero-availability {
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--main);
}

.hero.hero-home {
  text-align: left;
  background:
    radial-gradient(900px 380px at 30% -10%, rgba(2,132,199,0.10), transparent 60%),
    radial-gradient(900px 380px at 75% -20%, rgba(99,102,241,0.08), transparent 55%),
    var(--card);
  padding: clamp(68px, 9vh, 118px) 0;
}

html[data-theme="dark"] .hero.hero-home {
  background:
    radial-gradient(900px 380px at 30% -10%, rgba(2,132,199,0.14), transparent 60%),
    radial-gradient(900px 380px at 75% -20%, rgba(99,102,241,0.12), transparent 55%),
    var(--card);
}

.hero-home .hero-container-flex {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.hero-home .hero-profile-img {
  width: 260px;
  height: 260px;
  border-radius: 999px;
  object-fit: cover;
  border: 6px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-md);
  justify-self: center;
}

.hero-home .hero-text-content {
  max-width: 920px;
}

.hero-home .hero-title {
  max-width: 32ch;
}

.hero-home .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
  max-width: 70ch;
}

.hero-home .hero-cta-buttons {
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.hero-home .cta-button {
  width: auto;
  min-width: 220px;
}

.hero-home .hero-support-text {
  max-width: 74ch;
  margin-top: 18px;
}

.hero-home .hero-availability {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 980px) {
  .hero-home .hero-container-flex {
    grid-template-columns: 260px minmax(0, 1fr);
  }
  .hero-home .hero-profile-img {
    width: 220px;
    height: 220px;
  }
  .hero-home .hero-text-content { max-width: 860px; }
}

@media (max-width: 768px) {
  .hero.hero-home { text-align: center; padding: 58px 0; }

  .hero-home .hero-container-flex {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-home .hero-profile-img {
    width: 170px;
    height: 170px;
    border-width: 5px;
  }

  .hero-home .hero-text-content { max-width: 720px; margin: 0 auto; }
  .hero-home .hero-text-content { padding-inline: 6px; }
  .hero-home .hero-title { max-width: 18ch; margin: 0 auto; }
  .hero-home .hero-subtitle { margin: 14px auto 18px; }

  .hero-home .hero-cta-buttons {
    flex-direction: column;
  }
  .hero-home .hero-cta-buttons .cta-button {
    width: 100%;
    min-width: 0;
    max-width: 420px;
  }
  .hero-home .hero-support-text { margin-left: auto; margin-right: auto; }
}

.help-section { text-align: left; }

.help-steps-grid {
  max-width: 980px;
  margin: 2.2rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.help-step {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.55rem 1.55rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.help-step:hover {
  transform: translateY(-2px);
  border-color: rgba(2,132,199,0.35);
  box-shadow: var(--shadow-md);
}

.help-step > .icon-svg {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  color: var(--accent);
  margin: 0 auto 12px;
  vertical-align: 0;
}

.help-step h3 { margin: 0 0 0.6rem 0; }
.help-step p { margin: 0; color: var(--text-light); line-height: 1.75; }

.help-step-link-overlay { position: absolute; inset: 0; z-index: 1; }

.service-intro-text {
  text-align: center;
  max-width: 860px;
  margin: -0.6rem auto 2.6rem;
  font-weight: 600;
  color: var(--main);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem 1.65rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2,132,199,0.25);
}

.service-link { display: block; color: inherit; text-decoration: none; height: 100%; }

.service-card .icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  vertical-align: 0;
}

.service-card h3 { font-size: 1.22rem; margin-bottom: 0.65rem; }
.service-card p { margin: 0; color: var(--text-light); line-height: 1.75; }

.read-more {
  display: inline-block;
  margin-top: 0.95rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-text);
}

.service-outro { text-align: center; margin-top: 2.9rem; }
.service-outro p { color: var(--text-light); margin-bottom: 0.95rem; }

.service-outro-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.service-outro-link {
  font-weight: 700;
  color: var(--accent-text);
  text-decoration: none;
  border-bottom: 2px solid rgba(2,132,199,0.55);
  padding-bottom: 2px;
}

.service-outro-link-soft {
  color: var(--text-light);
  border-bottom-color: rgba(100,116,139,0.4);
}

.service-outro-link-strong {
  color: var(--accent-text);
}

.callback-prompt-box {
  margin-top: 44px;
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: var(--explanation-bg);
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.callback-prompt-box h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--main);
}

.callback-prompt-box p {
  margin: 0 auto 18px;
  max-width: 640px;
  color: var(--text-light);
  line-height: 1.65;
}

.callback-prompt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 2px solid #0284c7;
  color: #0284c7;
  background: transparent;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.callback-prompt-button:hover,
.callback-prompt-button:focus {
  background: #0369a1;
  color: #fff;
}

html[data-theme="dark"] .callback-prompt-button:hover,
html[data-theme="dark"] .callback-prompt-button:focus {
  background: #0369a1;
  border-color: #0369a1;
}

@media (max-width: 768px) {
  .service-outro-links {
    gap: 10px;
  }

  .callback-prompt-box {
    margin-top: 34px;
    padding: 22px 18px;
    border-radius: 16px;
  }
}

.price-card {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.75rem 1.4rem;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}

.price-top {
  margin-bottom: 0.9rem;
}

.min-price-label {
  font-weight: 700;
  color: var(--main);
  margin-bottom: 0.7rem;
  font-size: 1.02rem;
}

.min-price-label span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
}

.price-display {
  font-size: clamp(52px, 10vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.price-display.normal {
  color: var(--accent-text);
}

.price-description {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.vat-info {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.price-mid {
  margin-bottom: 0.9rem;
}

.price-benefit-highlight {
  display: inline-block;
  margin: 0 auto;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(2,132,199, 0.14);
  border: 1px solid rgba(2,132,199, 0.28);
  color: var(--accent-text);
  font-weight: 800;
  font-size: 1.03rem;
  line-height: 1.2;
}

.price-details {
  max-width: 500px;
  margin: 0.25rem auto 0;
  text-align: center;
  padding: 0;
}

.price-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  justify-content: center;
}

.price-detail-list li {
  margin: 0;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 0.45rem;
  align-items: flex-start;
  text-align: left;
  max-width: 390px;
  color: var(--text-dark);
  line-height: 1.55;
  font-size: 0.98rem;
}

.price-detail-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
  background: rgba(2,132,199, 0.7);
  margin-top: 0.42rem;
}

@media (max-width: 768px) {
  .price-card {
    padding: 1.5rem 0.95rem;
    border-radius: 16px;
  }

  .price-benefit-highlight {
    font-size: 0.97rem;
    padding: 0.62rem 0.9rem;
  }

  .price-details {
    max-width: 100%;
    padding: 0;
  }

  .price-detail-list li {
    max-width: 100%;
  }
}

.section-faq { padding-top: 40px; }

.faq {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  background: var(--card);
}

.faq-question {
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-weight: 800;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.35;
}

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

.faq-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  background: rgba(240,249,255,0.55);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.75;
  padding: 0.2rem 1.35rem 1.25rem 1.35rem;
  border-top: 1px solid var(--border-light);
}

html[data-theme="dark"] .faq-answer { background: rgba(17,24,39,0.55); }

#luottamus { background: var(--card); }

.trust-image {
  margin: 2.2rem auto;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: rgba(248,250,252,0.65);
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  border-left: 4px solid rgba(2,132,199,0.75);
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .testimonial-card { background: rgba(17,24,39,0.55); }

.testimonial-card.highlight { border-left-width: 6px; background: var(--explanation-bg); }

.testimonial-card .text { font-style: italic; margin-bottom: 1rem; line-height: 1.75; }
.testimonial-card .author { font-weight: 800; color: var(--text-light); text-align: right; }
.testimonial-card .author span { display: block; font-size: 0.86rem; font-weight: 700; opacity: 0.85; }

#yhteys { background: var(--card); }

.contact-wrapper { display: grid; gap: 34px; align-items: start; }
@media (min-width: 992px) { .contact-wrapper { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 48px; } }

#yhteys .section-title {
  margin-bottom: 1.6rem;
}

.contact-info { text-align: center; }
@media (min-width: 992px) { .contact-info { text-align: left; } }
@media (min-width: 992px) { .contact-info { max-width: 560px; } }

#yhteys .contact-info > h3 {
  margin: 0.1rem 0 0.2rem;
}

.contact-info > p {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .contact-info > p {
    margin-left: 0;
    margin-right: 0;
  }
}

.contact-profile-img {
  margin: 0 auto 1.5rem auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
@media (min-width: 992px) { .contact-profile-img { margin-left: 0; margin-right: 0; } }

.contact-note {
  margin: 0.75rem 0 1.1rem;
  font-weight: 700;
  color: var(--main);
  border-left: 4px solid var(--accent);
  padding: 0.75rem 0.9rem 0.75rem 1rem;
  display: block;
  max-width: 56ch;
  background: rgba(2,132,199,0.08);
  border-radius: 14px;
  line-height: 1.6;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.7rem;
}
@media (min-width: 992px) { .contact-row { justify-content: flex-start; } }
.contact-row:last-of-type { margin-bottom: 0; }

.contact-row .icon { color: var(--accent); font-size: 1.2rem; }
.contact-row a { color: var(--accent-text); text-decoration: none; font-weight: 800; }
.contact-row a:hover { text-decoration: underline; }

.contact-form {
  background: var(--card);
  border-radius: 18px;
  padding: 1.35rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}
@media (min-width: 992px) { .contact-form { max-width: 640px; } }

.form-notice { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0.7rem; line-height: 1.55; }

#yhteys .contact-quick-buttons {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

#yhteys .free-consultation {
  margin-top: 0.1rem;
  margin-bottom: 0.15rem;
}

#yhteys .contact-form h3 {
  margin: 0;
}

#yhteys .form-notice {
  margin-bottom: 0.45rem;
}

@media (min-width: 992px) {
  #yhteys .contact-form {
    padding: 1.55rem 1.45rem;
  }
}

.form-group {
  margin: 0;
}

.form-label {
  display: block;
  margin: 0 0 0.28rem;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  font-size: 1rem;
  background: rgba(248,250,252,0.65);
  color: var(--text-dark);
  margin-bottom: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group textarea { background: rgba(17,24,39,0.55); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(2,132,199,0.6);
  box-shadow: 0 0 0 4px rgba(2,132,199,0.15);
}

.form-error {
  margin: 0.25rem 0 0;
  min-height: 0;
  font-size: 0.9rem;
  color: #b91c1c;
  line-height: 1.4;
}

html[data-theme="dark"] .form-error {
  color: #fecaca;
}

.form-error:empty {
  display: none;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}

.btn-submit {
  background: #0284c7;
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 1.08rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-submit:hover { background: #0369a1; transform: translateY(-1px); }

.form-response-time {
  margin-top: 0.35rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--text-light);
}

.cta-price-compact {
  margin: 0.58rem auto 0;
  max-width: 540px;
  display: grid;
  gap: 0.26rem;
  text-align: left;
}

.cta-price-compact p {
  margin: 0;
  line-height: 1.45;
}

.cta-price-main {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--main);
}

.cta-price-benefit {
  display: inline-block;
  justify-self: start;
  padding: 0.16rem 0.56rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(2,132,199, 0.1);
}

.cta-price-meta {
  font-size: 0.93rem;
  color: var(--text-light);
}

html[data-theme="dark"] .cta-price-benefit {
  background: rgba(2,132,199, 0.14);
  color: rgba(186, 230, 253, 0.98);
}

html[data-theme="dark"] .cta-price-meta {
  color: rgba(241, 245, 249, 0.84);
}

.free-consultation {
  margin-top: 0.52rem;
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.service-area-note {
  margin: 0.44rem auto 0;
  max-width: 62ch;
  font-size: 0.9rem;
  line-height: 1.48;
  color: var(--text-light);
  text-align: center;
}

.cta-inline-form-wrap {
  margin: 0.9rem auto 0;
  padding-top: 0.72rem;
  border-top: 1px solid var(--border-light);
  max-width: 620px;
  text-align: left;
}

.contact-form-compact {
  display: flex;
  flex-direction: column;
  padding: 0.82rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--border-light);
  box-shadow: none;
  gap: 0.52rem;
  max-width: none;
}

.contact-form-compact .form-label {
  font-size: 0.82rem;
  margin-bottom: 0.24rem;
  font-weight: 600;
}

.contact-form-compact .form-error {
  font-size: 0.84rem;
  margin-top: 0.16rem;
}

.contact-form-compact .btn-submit {
  margin-top: 0.16rem;
}

.contact-form-compact .form-group input,
.contact-form-compact .form-group textarea {
  padding: 11px 12px;
}

.contact-quick-buttons {
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
}

.cta-section .hero-cta-buttons {
  margin-top: 0.7rem;
  margin-bottom: 0.48rem;
}

.cta-section .hero-cta-buttons .cta-button {
  min-width: 220px;
}

.cta-section .price-note {
  margin-top: 0.34rem;
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-section .free-consultation + .price-note {
  margin-top: 0.28rem;
}

.cta-section .service-area-note + .cta-inline-form-wrap {
  margin-top: 1rem;
}

.cta-section .related-service-link.guide-next-steps {
  margin-top: 0.42rem;
  margin-bottom: 0;
  max-width: 700px;
}

.cta-section .guide-next-steps p {
  margin: 0;
}

.cta-section .guide-next-steps-main {
  color: var(--text-dark);
  line-height: 1.62;
}

.cta-section .guide-next-steps-extra {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.cta-section .guide-next-steps-extra a {
  font-weight: 600;
}

html[data-theme="dark"] .cta-section .guide-next-steps-main {
  color: rgba(241, 245, 249, 0.94);
}

html[data-theme="dark"] .cta-section .guide-next-steps-extra {
  color: rgba(241, 245, 249, 0.84);
}

@media (max-width: 640px) {
  .service-area-note {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .breadcrumb {
    justify-content: flex-start;
    gap: 0.28rem;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .cta-section .related-service-link.guide-next-steps {
    margin-top: 0.36rem;
    padding: 12px 13px;
    border-radius: 13px;
  }

  .cta-section .guide-next-steps-main {
    line-height: 1.56;
  }

  .contact-form-compact {
    padding: 0.72rem;
    gap: 0.48rem;
  }
}

.payment-section { text-align: center; padding: 60px 0; background: var(--bg); }
.payment-title { font-size: 1.5rem; margin-bottom: 0.9rem; }

.payment-section p {
  max-width: 720px;
  margin: 0 auto 1.8rem auto;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.payment-label { margin: 0; font-weight: 800; color: var(--text-dark); }

.icon-invoice, .icon-mobilepay {
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 10px;
  color: var(--accent);
}
.icon-invoice { color: var(--accent); }
.icon-mobilepay { color: var(--accent); }




body.service-page-landing {
  background: var(--bg);
  color: var(--text-dark);
}

body.service-page-landing .hero {
  padding: clamp(60px, 8vh, 96px) 0 42px 0;
  border-bottom: 1px solid var(--border-light);
  background:
    radial-gradient(900px 380px at 30% -10%, rgba(2,132,199,0.12), transparent 60%),
    radial-gradient(900px 380px at 75% -20%, rgba(99,102,241,0.10), transparent 55%),
    var(--card);
}

html[data-theme="dark"] body.service-page-landing .hero {
  background:
    radial-gradient(900px 380px at 30% -10%, rgba(2,132,199,0.16), transparent 60%),
    radial-gradient(900px 380px at 75% -20%, rgba(99,102,241,0.14), transparent 55%),
    var(--card);
}

body.service-page-landing .hero .icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin: 0 auto 14px auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent);
  font-size: 1.25rem;
}

body.service-page-landing .hero-title {
  font-size: clamp(1.95rem, 3.6vw, 2.85rem);
}

body.service-page-landing .hero-subtitle {
  max-width: var(--prose-width);
  margin-bottom: 1.45rem;
  line-height: 1.7;
}

body.service-page-landing .free-consultation {
  margin-top: 14px;
}

body.service-page-landing .vst-section { padding: 56px 0; }

body.service-page-landing .vst-title {
  text-align: center;
  margin: 0 0 22px 0;
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
}

body.service-page-landing .vst-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  body.service-page-landing .vst-cards { grid-template-columns: 1fr; }
}

body.service-page-landing .vst-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
}

body.service-page-landing .vst-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 14px;
  display: inline-block;
  vertical-align: middle;
  background: transparent;
  color: var(--accent);
}

body.service-page-landing .vst-card h3 { margin: 12px 0 10px 0; }
body.service-page-landing .vst-card p { margin: 0; color: var(--text-light); line-height: 1.75; }
body.service-page-landing .vst-card p + p { margin-top: 0.9rem; }

body.service-page-landing .dark-section {
  background: var(--bg);
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

body.service-page-landing .dark-section .section-title { color: var(--main); }
body.service-page-landing .dark-section .section-subtitle { color: var(--text-light); }

body.service-page-landing .help-steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body.service-page-landing .help-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;

  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

body.service-page-landing .help-step > .icon-svg {
  width: 54px;
  height: 54px;
  margin: 0;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 16px;
  display: inline-block;
  background: transparent;
  color: var(--accent);
  vertical-align: 0;
}

body.service-page-landing .help-step h3 {
  margin: 2px 0 10px 0;
  color: var(--main);
}

body.service-page-landing .help-step p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.75;
}
body.service-page-landing .help-step p + p { margin-top: 0.9rem; }

@media (max-width: 640px) {
  body.service-page-landing .hero {
    padding: clamp(54px, 7vh, 80px) 0 34px 0;
  }

  body.service-page-landing .hero-subtitle {
    margin-bottom: 1.32rem;
    line-height: 1.66;
  }

  body.service-page-landing .help-step {
    grid-template-columns: 46px 1fr;
    padding: 18px 16px;
  }
  body.service-page-landing .help-step > .icon-svg {
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 14px;
  }

  body.service-page-landing .help-steps {
    margin-top: 18px;
    gap: 12px;
  }

  body.service-page-landing .cta-section {
    padding: 46px 0 60px 0;
  }

  body.service-page-landing .cta-section .hero-cta-buttons {
    gap: 10px;
    margin-bottom: 0.62rem;
  }

  body.service-page-landing .cta-section .hero-cta-buttons .cta-button {
    width: 100%;
    max-width: 420px;
    min-width: 0;
    min-height: 48px;
  }

  body.service-page-landing .cta-price-compact {
    padding: 0 1rem;
    gap: 1rem;
  }
}

body.service-page-landing .cta-section {
  padding: clamp(52px, 7vh, 78px) 0;
  border-top: 1px solid var(--border-light);
  background:
    radial-gradient(900px 380px at 50% 120%, rgba(2,132,199,0.10), transparent 60%),
    var(--card);
  text-align: center;
}

html[data-theme="dark"] body.service-page-landing .cta-section {
  background:
    radial-gradient(900px 380px at 50% 120%, rgba(2,132,199,0.16), transparent 60%),
    var(--card);
}

body.service-page-landing .cta-section .container {
  max-width: 980px;
}

body.service-page-landing .price-main { font-size: 1.38rem; color: var(--main); }
body.service-page-landing .price-note { font-size: 0.95rem; opacity: 0.95; line-height: 1.7; }

body.service-page-landing .cta-section .hero-cta-buttons {
  margin-top: 0.75rem;
  margin-bottom: 0.66rem;
  gap: 12px;
  justify-content: center;
}

body.service-page-landing .cta-section .hero-cta-buttons .cta-button {
  min-height: 50px;
  padding: 13px 18px;
  line-height: 1.2;
}

body.service-page-landing .cta-price-compact {
  margin-top: 1.02rem;
  margin-bottom: 1.2rem;
  max-width: 560px;
  justify-items: center;
  text-align: center;
  gap: 0.38rem;
}

body.service-page-landing .cta-price-main {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.8;
}

body.service-page-landing .cta-price-benefit {
  justify-self: center;
  margin-top: 0.06rem;
  line-height: 1.42;
}

body.service-page-landing .cta-price-meta {
  text-align: center;
  margin-top: 0.06rem;
  line-height: 1.5;
}

body.service-page-landing .free-consultation {
  margin-top: 0.62rem;
  line-height: 1.5;
}

body.service-page-landing .cta-inline-form-wrap {
  margin-top: 0.98rem;
  padding-top: 0.8rem;
}

.vst-price-note-spaced {
  margin-top: 18px;
}

.vst-cards-spaced {
  margin-top: 26px;
}

.vst-list-compact {
  margin: 10px 0 0 18px;
  line-height: 1.6;
}

body.service-page-landing main > section .container > p,
body.service-page-landing main > section .container > ul,
body.service-page-landing main > section .container > ol {
  max-width: var(--prose-width);
  margin-left: auto;
  margin-right: auto;
}

html[data-theme="dark"] body.service-page-landing .dark-section {
  background: var(--footer-bg);
  color: var(--footer-text);
}

html[data-theme="dark"] body.service-page-landing .dark-section .section-title {
  color: var(--footer-text);
}

html[data-theme="dark"] body.service-page-landing .dark-section .section-subtitle {
  color: rgba(241,245,249,0.85);
}

html[data-theme="light"] body.service-page-landing .dark-section {
  background: var(--bg);
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

html[data-theme="light"] body.service-page-landing .dark-section .section-title {
  color: var(--main);
}

html[data-theme="light"] body.service-page-landing .dark-section .section-subtitle {
  color: var(--text-light);
}

html[data-theme="dark"] body.service-page-landing .dark-section .help-step {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

html[data-theme="dark"] body.service-page-landing .dark-section .help-step h3 {
  color: var(--footer-text);
}

html[data-theme="dark"] body.service-page-landing .dark-section .help-step p {
  color: rgba(241,245,249,0.90);
}

html[data-theme="dark"] body.service-page-landing .dark-section .help-step > .icon-svg {
  background: transparent;
  color: var(--accent);
}

html[data-theme="light"] body.service-page-landing .dark-section .help-step {
  background: var(--card);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

html[data-theme="light"] body.service-page-landing .dark-section .help-step h3 {
  color: var(--main);
}

html[data-theme="light"] body.service-page-landing .dark-section .help-step p {
  color: var(--text-light);
}

html[data-theme="light"] body.service-page-landing .dark-section .help-step > .icon-svg {
  background: transparent;
  color: var(--accent);
}

html[data-theme="dark"] .hero.hero-home .hero-subtitle {
  color: rgba(255,255,255,0.84);
}

.hero.hero-home .hero-support-text {
  font-size: 1.02rem;
  line-height: 1.75;
}

html[data-theme="dark"] .hero.hero-home .hero-support-text {
  color: rgba(255,255,255,0.84);
}

.hero.hero-home .hero-support-text {
  max-width: 70ch;
}

.contact-form input,
.contact-form textarea,
.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 1rem;
}

.hero-opening-hours {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(2,132,199, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  margin-top: 0.35rem;
  margin-bottom: 20px;
  border: 1px solid rgba(2,132,199, 0.2);
}

.hero-opening-hours .icon-svg {
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.1em;
}

html[data-theme="dark"] .hero-opening-hours {
  background: rgba(2,132,199, 0.15);
  border-color: rgba(2,132,199, 0.25);
  color: var(--accent);
}

@media (max-width: 768px) {

  .hero-opening-hours {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
}

.trust-section .section-subtitle {
  max-width: 760px;
  margin: 0 auto 28px auto;
  text-align: center;
}

.trust-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 28px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}

.trust-intro {
  max-width: 780px;
  margin: 0 auto 20px;
  text-align: left;
  color: var(--text-light);
  line-height: 1.75;
}

.trust-point {
  text-align: left;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  padding-left: 24px;
}

.trust-point:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.trust-point h3 {
  position: relative;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--main);
  line-height: 1.3;
}

.trust-point h3::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.trust-point p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  max-width: none;
}

.trust-closing {
  max-width: 780px;
  margin: 20px auto 0;
  text-align: left;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trust-box {
    max-width: 100%;
    padding: 24px 18px;
    border-radius: 14px;
  }

  .trust-points {
    gap: 16px;
  }

  .trust-intro {
    margin-bottom: 14px;
    font-size: 0.98rem;
  }

  .trust-point {
    padding-bottom: 16px;
    padding-left: 20px;
  }

  .trust-point h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .trust-point p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .trust-closing {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .trust-point h3::before {
    left: -20px;
    width: 7px;
    height: 7px;
  }
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.text-content h1 {
  text-align: left;
  margin-bottom: 2rem;
}

.text-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--main);
}

.text-content p,
.text-content li {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.text-content ul {
  padding-left: 2rem;
}

.text-content a {
  color: var(--accent);
  font-weight: 600;
}

.hero.hero-home .hero-opening-hours {
  background: rgba(2,132,199, 0.08);
  border-color: rgba(2,132,199, 0.16);
  color: var(--text-light);
  font-weight: 700;
}

html[data-theme="dark"] .hero.hero-home .hero-opening-hours {
  background: rgba(2,132,199, 0.14);
  border-color: rgba(2,132,199, 0.22);
  color: rgba(241, 245, 249, 0.9);
}

.common-issues-section .section-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.thank-you-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.related-service-link {
  max-width: 820px;
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: var(--explanation-bg);
  color: var(--text-dark);
  line-height: 1.7;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.related-service-link strong {
  color: var(--main);
}

.related-service-link a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(2,132,199,0.35);
}

.related-service-link a:hover {
  color: var(--accent-hover);
  border-bottom-color: rgba(2,132,199,0.7);
}

html[data-theme="dark"] .related-service-link {
  background: rgba(2,132,199,0.10);
  border-color: rgba(255,255,255,0.12);
}

@media (max-width: 768px) {
  .related-service-link {
    margin-top: 18px;
    padding: 14px 14px;
    border-radius: 14px;
    font-size: 0.97rem;
    line-height: 1.65;
  }
}


.page-404 .hero {
  padding: clamp(56px, 8vh, 78px) 0 clamp(20px, 4vh, 30px) 0;
  text-align: center;
}

.page-404 .hero .container {
  max-width: 900px;
}

.page-404 .hero-title {
  margin-bottom: 0.65rem;
}

.page-404 .hero-subtitle {
  max-width: 44ch;
  margin: 0 auto 0.4rem auto;
}

.page-404 .hero-support-text {
  max-width: 68ch;
  margin: 0 auto;
}

.page-404 .hero-cta-buttons {
  margin-top: 1rem;
  gap: 12px;
}

.page-404 .hero-cta-buttons .cta-button {
  min-width: 200px;
}

.page-404 .hero-cta-buttons .page-404-home-icon {
  min-width: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-404 .hero-cta-buttons .page-404-home-icon .icon-svg {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  vertical-align: 0;
}

.page-404 .services {
  padding-top: 12px;
}

.page-404 .page-404-help-grid {
  margin-top: 0.4rem;
}

.page-404 .page-404-help-step {
  display: block;
  color: inherit;
  text-decoration: none;
}

.page-404 .page-404-help-step:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 14px;
}

.page-404 .page-404-help-step > .icon-svg {
  margin-bottom: 10px;
}

.page-404 .page-404-help-step h3 {
  margin-bottom: 0.55rem;
}

.page-404 .page-404-help-step p:not(.page-404-card-cta) {
  margin-bottom: 0.95rem;
}

.page-404 .page-404-card-cta {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 640px) {
  .page-404 .hero-cta-buttons .cta-button {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }

  .page-404 .hero-cta-buttons .page-404-home-icon {
    width: 48px;
    max-width: 48px;
  }
}
