@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #0c2d4a;
  --brand-blue-mid: #134e6f;
  --brand-teal: #0d9488;
  --brand-green: #10b981;
  --brand-green-dark: #059669;
  --brand-sky: #38bdf8;
  --slate: #64748b;
  --light: #f0f9ff;
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
}

.hero-gradient {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 45%, #0f4c5c 100%);
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 45, 74, 0.15);
}

.btn-primary {
  background: var(--brand-green);
  color: white;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--brand-teal);
  color: white;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-secondary:hover { background: #0f766e; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: white;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.radio-card input:checked + label {
  border-color: var(--brand-teal);
  background: #f0fdfa;
  box-shadow: 0 0 0 2px var(--brand-teal);
}

.radio-card label { cursor: pointer; transition: all 0.15s; }

.nav-link { transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--brand-sky); }

.mobile-menu { transform: translateX(100%); transition: transform 0.3s ease; }
.mobile-menu.open { transform: translateX(0); }

.file-drop {
  border: 2px dashed #cbd5e1;
  transition: border-color 0.2s, background 0.2s;
}
.file-drop:hover, .file-drop.dragover {
  border-color: var(--brand-teal);
  background: #f0fdfa;
}

/* Navigation dropdown */
.nav-dropdown {
  position: relative;
  padding-bottom: 0.625rem;
  margin-bottom: -0.625rem;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.nav-dropdown-trigger:focus {
  outline: none;
}
.nav-dropdown-trigger:focus-visible {
  box-shadow: 0 0 0 2px var(--brand-sky);
  border-radius: 0.25rem;
}
.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 0.65em;
  opacity: 0.75;
  transition: transform 0.15s ease;
}
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 28rem;
  max-width: min(92vw, 28rem);
  background: white;
  border-radius: 0.875rem;
  box-shadow: 0 20px 50px rgba(12, 45, 74, 0.18);
  border: 1px solid #e2e8f0;
  padding: 1rem 1.125rem 0.875rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 60;
}
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}
.nav-mega-panel {
  width: min(44rem, 94vw);
  padding: 1.25rem 1.25rem 1rem;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
}
@media (min-width: 540px) {
  .nav-mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .nav-mega-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.nav-mega-col {
  min-width: 0;
  padding-bottom: 0.25rem;
}
.nav-mega-heading {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
  text-decoration: none;
  line-height: 1.3;
}
.nav-mega-heading:hover { color: var(--brand-teal); }
.nav-mega-link {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0;
  color: #475569;
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}
.nav-mega-link:hover,
.nav-mega-link.is-active { color: var(--brand-teal); }
.nav-mega-more {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-teal);
}
.nav-mega-footer {
  display: block;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-teal);
  text-align: center;
}
.nav-mega-footer:hover { color: #0f766e; }

.mobile-nav-group summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-nav-group summary::after {
  content: ' +';
  float: right;
  opacity: 0.6;
}
.mobile-nav-group[open] summary::after { content: ' −'; }
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.5rem 0 0.75rem 0.75rem;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.mobile-nav-sublink {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  line-height: 1.4;
}
.mobile-nav-sublink:hover { color: var(--brand-sky); }
.mobile-nav-sublink.is-active { color: var(--brand-sky); font-weight: 600; }
.mobile-nav-sublink--all { font-weight: 600; opacity: 0.9; }
.mobile-nav-count {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.55;
  margin-left: 0.25rem;
}

/* Service cards */
.service-card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .service-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .service-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.service-card-img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  display: block;
}
.service-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 100%);
}
.service-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.35rem;
  transition: color 0.15s;
}
.service-card:hover .service-card-title { color: var(--brand-teal); }
.service-card-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
  flex: 1;
}
.service-card-link {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-teal);
}

/* Service list items */
.service-list-grid {
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .service-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: white;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.service-list-item:hover {
  border-color: var(--brand-teal);
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(12, 45, 74, 0.06);
}
.service-list-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: #f0fdfa;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.service-list-text { display: flex; flex-direction: column; min-width: 0; }
.service-list-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-blue);
  transition: color 0.15s;
}
.service-list-item:hover .service-list-title { color: var(--brand-teal); }
.service-list-desc {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  margin-top: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Services hub */
.svc-hub-toolbar {
  position: sticky;
  top: 4rem;
  z-index: 30;
  background: rgba(248, 250, 252, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  padding: 0.875rem 0;
  margin: 0 0 1.75rem;
  box-shadow: none;
}
@media (min-width: 1024px) {
  .svc-hub-toolbar { top: 5rem; }
}
.service-jump-wrap { margin-bottom: 0.875rem; }
.service-jump-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.35rem;
}
.service-jump-select { width: 100%; }
.svc-hub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 639px) {
  .svc-hub-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 0.35rem;
    margin: 0 -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
.svc-hub-tab {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  scroll-snap-align: start;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #475569;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.svc-hub-tab:hover,
.svc-hub-tab.is-active {
  background: #f0fdfa;
  border-color: #99f6e4;
  color: var(--brand-teal);
}
.svc-hub-tab:focus {
  outline: none;
}
.svc-hub-tab:focus-visible {
  box-shadow: 0 0 0 2px var(--brand-sky);
}
.svc-hub-tab:active {
  transform: scale(0.98);
}
.svc-hub-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 9.5rem;
}
.svc-hub-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}
.svc-hub-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}
.svc-hub-section-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}
.svc-hub-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: white;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.svc-row:hover {
  border-color: var(--brand-teal);
  background: #f8fafc;
  box-shadow: 0 4px 14px rgba(12, 45, 74, 0.06);
}
.svc-row--featured {
  border-color: #ccfbf1;
  background: #f0fdfa;
}
.svc-row-main { min-width: 0; }
.svc-row-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-blue);
}
.svc-row:hover .svc-row-title { color: var(--brand-teal); }
.svc-row-desc {
  display: block;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.15rem;
  line-height: 1.4;
}
.svc-row-arrow {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--brand-teal);
  opacity: 0.7;
}
.svc-cat-tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .svc-cat-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .svc-cat-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.svc-cat-tile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1rem;
  min-width: 0;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: white;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.svc-cat-tile:hover {
  border-color: var(--brand-teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 45, 74, 0.1);
}
.svc-cat-tile-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
}
.svc-cat-tile-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-teal);
}
.svc-cat-tile-hint {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

/* Service detail — breadcrumb + sibling chips */
.svc-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 4rem;
  z-index: 40;
}
@media (min-width: 1024px) {
  .svc-bar { top: 5rem; }
}
.svc-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem 0.875rem;
}
@media (min-width: 640px) {
  .svc-bar-inner { padding: 0.75rem 1.5rem 0.875rem; }
}
.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 0.625rem;
  padding: 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.svc-breadcrumb li + li::before {
  content: '›';
  margin-right: 0.5rem;
  color: #cbd5e1;
}
.svc-breadcrumb a {
  color: var(--brand-teal);
  font-weight: 500;
  text-decoration: none;
}
.svc-breadcrumb a:hover { text-decoration: underline; }
.svc-breadcrumb li[aria-current="page"] {
  color: var(--brand-blue);
  font-weight: 600;
}
.svc-chips-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}
.svc-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  min-width: min-content;
}
.svc-chip {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.1s;
}
.svc-chip:hover {
  border-color: #99f6e4;
  color: var(--brand-teal);
}
.svc-chip.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}
.svc-chip:focus {
  outline: none;
}
.svc-chip:focus-visible {
  box-shadow: 0 0 0 2px var(--brand-sky);
}
.svc-chip:active {
  transform: scale(0.98);
}

/* Service page hero with image */
.service-hero {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}
.service-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-hero-grid { grid-template-columns: 1fr 1fr; }
}
.service-hero-img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Form segments */
.segment-group {
  display: grid;
  gap: 0.5rem;
}
.segment-group:has(.segment-btn:nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.segment-group:has(.segment-btn:nth-child(2):last-child),
.segment-group--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 480px) {
  .segment-group:has(.segment-btn:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }
}
.segment-btn {
  position: relative;
  cursor: pointer;
}
.segment-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.segment-btn span {
  display: block;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  border: 2px solid #e2e8f0;
  background: white;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.15s;
}
.segment-btn small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 0.15rem;
}
.segment-btn input:checked + span {
  border-color: var(--brand-teal);
  background: #f0fdfa;
  color: var(--brand-teal);
  box-shadow: 0 0 0 1px var(--brand-teal);
}
.segment-btn input:focus-visible + span {
  outline: 2px solid var(--brand-sky);
  outline-offset: 2px;
}

/* Trust strip */
.trust-strip {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}
@media (min-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .trust-strip-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.trust-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}
.trust-strip-item > div {
  min-width: 0;
}
.trust-strip-icon {
  font-size: 1.25rem;
  line-height: 1.3;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.trust-strip-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-blue);
}
.trust-strip-desc {
  font-size: 0.75rem;
  color: #64748b;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.pricing-card { border-left: 4px solid var(--brand-teal); }
.pricing-card.featured {
  border-left-color: var(--brand-green);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.text-brand { color: var(--brand-teal); }
.bg-brand { background: var(--brand-blue); }

.chat-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--brand-green);
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.chat-fab:hover {
  background: var(--brand-green-dark);
  transform: scale(1.05);
}

.chat-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 22rem;
  max-width: calc(100vw - 2rem);
  max-height: min(32rem, calc(100vh - 7rem));
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid #e2e8f0;
  transform: scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}
.chat-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.chat-panel-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
}
.chat-panel-footer {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.chat-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.chat-faq-btn {
  width: 100%;
  text-align: left;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-size: 0.8125rem;
  line-height: 1.35;
  transition: border-color 0.15s, background 0.15s;
}
.chat-faq-btn:hover,
.chat-faq-btn.is-active {
  border-color: var(--brand-teal);
  background: #f0fdfa;
  color: var(--brand-blue);
}
.chat-faq-more {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-teal);
}
.chat-faq-more:hover { text-decoration: underline; }
.chat-answer {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.625rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  overflow: hidden;
}
.faq-question {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--brand-blue);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--brand-teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.faq-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}
.faq-price-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.faq-bullets li::before {
  content: '•';
  color: var(--brand-teal);
  margin-right: 0.5rem;
}

.cal-embed { min-height: 600px; border-radius: 1rem; overflow: hidden; }

.logo-img {
  height: 2.5rem;
  width: auto;
  max-width: 10.5rem;
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent;
}
#site-header .logo-img,
#site-header .logo-link {
  background: transparent;
}
#site-header .logo-img {
  mix-blend-mode: lighten;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}
.logo-img-footer {
  height: 2.75rem;
  max-width: 12rem;
}
@media (min-width: 1024px) {
  .logo-img { height: 3rem; max-width: 12.5rem; }
  .logo-img-footer { height: 3.25rem; max-width: 14rem; }
}

.hero-video-wrap {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  background: var(--brand-blue);
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video-wrap video.is-ready {
  opacity: 1;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,45,74,0.88) 0%, rgba(19,78,111,0.78) 45%, rgba(15,76,92,0.82) 100%);
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
}

.hero-main-grid > * {
  min-width: 0;
}
.hero-title {
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title-line {
  display: block;
}
.hero-side-cards {
  position: relative;
  z-index: 1;
}
.hero-reco-inline {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
@media (max-width: 639px) {
  .hero-reco-inline {
    width: 100%;
    margin-top: 0.25rem;
  }
}
.hero-reco-inline .reco-badge-widget,
.hero-reco-inline .reco-badge-widget > *,
.hero-reco-inline iframe {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.hero-reco-inline img {
  height: 4.5rem;
  width: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.prose .lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #334155;
}

.reco-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
}
.reco-badge-wrap--featured {
  min-height: 5.5rem;
  padding: 1rem 0;
}
.reco-badge-widget iframe,
.reco-badge-wrap iframe {
  margin: 0 auto;
}

.reco-venue-widget {
  width: 100%;
  max-width: 48rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.reco-venue-widget iframe {
  border-radius: 0.75rem;
}

/* Section headings with icons */
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.section-head-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-teal);
  margin-bottom: 0.5rem;
}
.section-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: #f0fdfa;
  font-size: 0.95rem;
  line-height: 1;
}
.section-head-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1.2;
  margin: 0;
}
.section-head-desc {
  margin-top: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* Fact stat cards */
.fact-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .fact-stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .fact-stat-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.fact-stat-grid--about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .fact-stat-grid--about { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.fact-stat-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  min-width: 0;
  box-shadow: 0 4px 14px rgba(12, 45, 74, 0.04);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.fact-stat-card:hover {
  border-color: #99f6e4;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 45, 74, 0.08);
}
.fact-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #f0fdfa;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.fact-stat-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--brand-teal);
  line-height: 1.2;
  overflow-wrap: break-word;
  hyphens: auto;
}
.fact-stat-value--compact {
  font-size: 1rem;
  line-height: 1.3;
}
.fact-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 0.25rem;
  overflow-wrap: break-word;
  line-height: 1.35;
}
.fact-stat-hint {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.35rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

/* Contact fact cards */
.contact-fact-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(12, 45, 74, 0.04);
}
a.contact-fact-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.contact-fact-card:hover .contact-fact-title {
  color: var(--brand-teal);
}
.contact-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  background: #f0fdfa;
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
}
.contact-fact-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}
.contact-fact-body {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* Hero fact cards */
.hero-fact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem 1.5rem;
}
.hero-fact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.15rem;
}
.hero-fact-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.hero-fact-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

/* Pricing cards with icons */
.pricing-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #f0fdfa;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.pricing-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}
.pricing-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
}
.pricing-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--brand-green);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Service category tiles */
.svc-cat-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: #f0fdfa;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.svc-hub-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #f0fdfa;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Prose article enhancements */
.prose-enhanced h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.35;
}
.prose-enhanced h2 .fact-h2-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: #f0fdfa;
  font-size: 1.05rem;
  margin-top: 0.1rem;
}
.prose-enhanced h2 .fact-h2-text {
  flex: 1;
  min-width: 0;
}
.prose-enhanced ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.25rem;
}
.prose-enhanced ul > li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0.5rem 0;
}
.prose-enhanced ul > li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--brand-teal);
  font-weight: 700;
  font-size: 0.875rem;
}
.prose-enhanced .lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #334155;
  padding: 1rem 1.25rem;
  background: #f8fafc;
  border-left: 3px solid var(--brand-teal);
  border-radius: 0 0.75rem 0.75rem 0;
  margin-bottom: 2rem;
}

/* Service page pricing box */
.service-pricing-box {
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  border: 1px solid #99f6e4;
  border-radius: 1rem;
}
.service-pricing-box-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-pricing-box-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  background: white;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.12);
}
.service-pricing-box-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.35rem;
}
.service-pricing-box-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}
.service-pricing-box-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.service-pricing-box-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-teal);
  text-decoration: none;
  padding: 0.75rem 0;
}
.service-pricing-box-link:hover {
  color: #0f766e;
}

.page-content-h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.page-content-h2 .fact-h2-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: #f0fdfa;
  font-size: 1.05rem;
}

.fact-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  margin-top: 0.5rem;
}
.fact-highlight-box > div {
  min-width: 0;
}
.fact-highlight-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #f0fdfa;
  font-size: 1.15rem;
}
.fact-highlight-title {
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 0.35rem;
}
.fact-highlight-desc {
  font-size: 0.9375rem;
  color: #64748b;
}

.retail-fact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
}
.retail-fact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}
.retail-fact-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.retail-fact-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.booking-fact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 24rem;
  text-align: left;
}
.booking-fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #64748b;
}
.booking-fact-list li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--brand-teal);
  font-weight: 700;
}

.booking-price-preview-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 768px) {
  .booking-price-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.booking-price-preview {
  text-align: left;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
}
.booking-price-preview--privatperson {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  border: 1px solid #99f6e4;
}
.booking-price-preview--foretag {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
}
.booking-price-preview-head {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}
.booking-price-preview-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: white;
  font-size: 1.15rem;
}
.booking-price-preview-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.15rem;
}
.booking-price-preview-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.1;
}
.booking-price-preview-suffix {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}
.booking-price-preview-badge {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.booking-price-preview-badge--rot {
  color: var(--brand-teal);
}
.booking-price-preview-badge--foretag {
  color: var(--brand-blue);
}
.booking-price-preview-note {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.booking-price-preview-details {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  border-top: 1px solid rgba(100, 116, 139, 0.15);
  padding-top: 0.75rem;
}
.booking-price-preview-details li + li {
  margin-top: 0.25rem;
}
.booking-price-preview-details strong {
  color: var(--brand-blue);
  font-weight: 600;
}
.faq-price-rot-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-teal);
}
.booking-thanks-rot {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-teal);
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  line-height: 1.45;
}