/* ── CSS Variables (theme tokens) ─────────────────────────────────────────── */
:root {
  /* Core palette — overridden by active theme */
  --brand:          #1B5C8B;
  --brand-2:        #A9C8E4;
  --brand-dark:     #154a6f;
  --brand-light:    #A9C8E4;
  --brand-lighter:  #B3CFE7;
  --brand-pale:     #E7F0F9;
  --brand-border:   #D2E4F0;
  --accent:         #E7F0F9;
  --star:           #FFC107;

  /* Backgrounds */
  --bg:             #FFFFFF;
  --bg-alt:         #F4F8FC;
  --card:           #F9FAFB;
  --card-icon:      #F0F1F3;

  /* Text */
  --text:           #000000;
  --muted:          #818181;
  --border:         #D2E4F0;

  /* Section-specific backgrounds — referenced by themed sections */
  --clients-bg:             var(--brand);
  --footer-bg:              var(--brand);
  --footer-contact-card-bg: var(--brand-dark, #17527C);
  --footer-social-bg:       var(--brand);
  --service-icon-bg:        var(--brand);

  /* Gradients */
  --hero-gradient:     linear-gradient(270deg, rgba(218, 232, 246, 0.85) 30%, #A7C7E3 100%);
  --services-gradient: linear-gradient(270deg, rgba(218, 232, 246, 0.65) 30%, #A7C7E3 100%);

  /* Typography */
  --font:         "Roboto", "Segoe UI", sans-serif;
  --font-heading: "Manrope", "Segoe UI", sans-serif;
  --font-size-hero:  40px;
  --font-size-h2:    24px;
  --font-size-h3:    20px;
  --font-size-body:  18px;
  --font-size-stat:  34px;
  --font-size-sm:    15px;
  --font-size-btn:   16px;

  /* Spacing */
  --section-pad-y:  72px;
  --container-pad:  72px;

  /* Radius */
  --radius:         10px;
  --radius-btn:     10px;
  --radius-card:    10px;
  --radius-lg:      30px;
  --radius-icon:    8px;
  --radius-logo:    6px;
  --radius-pill:    9999px;

  --container: 1200px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: var(--font-size-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: none; opacity: .85; }
img { max-width: 100%; display: block; }

/* ── Container ────────────────────────────────────────────────────────────── */
.ws-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
#siteNav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg, linear-gradient(90deg, #A8C8E4 0%, #E6EFF9 100%));
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.10);
}
.ws-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 73px;
  gap: 0;
  padding: 0 60px;
  max-width: 1440px;
  margin-inline: auto;
}
.ws-nav-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ws-nav-logo { height: 64px; width: auto; max-width: 160px; object-fit: contain; }
.ws-nav-links {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  align-items: center;
}
/* Nav links — exclude CTA so its styles don't bleed */
.ws-nav-links a:not(.ws-nav-cta) {
  color: var(--nav-link-color, #1B5C8B);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  transition: color .15s, background .15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ws-nav-links a:not(.ws-nav-cta):hover {
  color: var(--brand);
  background: rgba(255,255,255,0.35);
  opacity: 1;
}
.ws-nav-links a[data-has-sub]::after {
  content: '▾';
  font-size: 11px;
  opacity: .7;
}
/* CTA button — fully isolated styles */
.ws-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nav-cta-bg, #C22C22);
  color: #fff;
  padding: 0 22px;
  height: 42px;
  border-radius: 5px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
  transition: opacity .15s;
  text-decoration: none;
}
.ws-nav-cta:hover { opacity: .88; color: #fff; }

/* ── Common section base ──────────────────────────────────────────────────── */
.ws-section { padding: var(--section-pad-y) 0; }
.ws-section-label {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.ws-section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: var(--font-size-h2-lh, 35px);
  margin-bottom: 12px;
  color: var(--text);
}
.ws-section-title .accent { color: var(--brand); }
.ws-section-desc {
  color: var(--text);
  max-width: 1093px;
  margin-bottom: 40px;
  font-size: var(--font-size-body);
  line-height: 32px;
  text-align: justify;
}
.ws-empty { color: var(--muted); font-style: italic; padding: 24px 0; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.ws-btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.ws-btn-primary {
  display: inline-flex; align-items: center;
  background: var(--brand); color: #fff;
  padding: 13px 24px; border-radius: var(--radius-btn);
  font-family: var(--font-heading); font-weight: 700; font-size: var(--font-size-btn);
  transition: opacity .15s, transform .15s;
}
.ws-btn-primary:hover { opacity: .9; transform: translateY(-1px); text-decoration: none; }
.ws-btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid var(--brand); color: var(--brand);
  padding: 11px 22px; border-radius: var(--radius-btn);
  font-family: var(--font-heading); font-weight: 700; font-size: var(--font-size-btn);
  transition: background .15s;
}
.ws-btn-outline:hover { background: var(--brand-pale); text-decoration: none; }
.ws-btn-outline-white {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,.7); color: #fff;
  padding: 11px 22px; border-radius: var(--radius-btn);
  font-family: var(--font-heading); font-weight: 700; font-size: var(--font-size-btn);
}
.ws-btn-outline-white:hover { background: rgba(255,255,255,.15); text-decoration: none; }

/* ── Cards grid ───────────────────────────────────────────────────────────── */
.ws-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.ws-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.ws-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.ws-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.ws-card p { color: var(--muted); font-size: 14px; }
.ws-card-link { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--brand); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.ws-hero {
  background: var(--hero-gradient);
  padding: 72px 0 80px;
  overflow: hidden;
  position: relative;
}
.ws-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.ws-hero-text { flex: 1; min-width: 0; }
.ws-hero-image {
  flex: 0 0 420px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(27,92,139,.20);
}
.ws-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-hero);
  font-weight: 700;
  line-height: 55px;
  color: var(--text);
  margin-bottom: 20px;
}
.ws-hero h1 .accent { color: var(--brand); }
.ws-hero-sub  { font-size: 1.1rem; font-weight: 500; color: var(--brand); margin-bottom: 8px; }
.ws-hero-desc {
  font-size: var(--font-size-body);
  color: var(--text);
  line-height: 34px;
  max-width: 683px;
  margin-bottom: 0;
  text-align: justify;
}
.ws-badge {
  display: inline-block; background: var(--brand);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
  letter-spacing: .05em; text-transform: uppercase;
}
.ws-hero-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; }
.ws-stat { display: flex; flex-direction: column; }
.ws-stat strong {
  font-family: var(--font-heading);
  font-size: var(--font-size-stat);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.ws-stat span {
  font-size: var(--font-size-body);
  font-weight: 500;
  color: var(--text);
  margin-top: 6px;
}

/* ── Clients strip ────────────────────────────────────────────────────────── */
.ws-clients {
  background: var(--clients-bg);
  height: 150px;
  overflow: hidden;
  position: relative;
}
.ws-clients-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 72px;
  gap: 0;
}
.ws-clients-label {
  font-family: Manrope, var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  /* matches Figma: label at left:72, cards start at 295 → label occupies ~160px + gap ~63px */
  min-width: 160px;
  margin-right: 63px;
  flex-shrink: 0;
  align-self: center;
  padding-top: 4px; /* subtle optical centering matching top:61 */
}
.ws-clients-track {
  display: flex;
  align-items: center;
  gap: 21px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  height: 100%;
  padding: 24px 0;
}
.ws-clients-track::-webkit-scrollbar { display: none; }
.ws-client-card {
  background: #fff;
  border-radius: 6px;
  width: 190px;
  min-width: 190px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.ws-client-card img {
  max-width: 80%;
  max-height: 75%;
  object-fit: contain;
}
.ws-client-name {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-align: center;
  padding: 8px;
}

/* ── About ────────────────────────────────────────────────────────────────── */
.ws-about { background: var(--bg); }
.ws-about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ws-about-text h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 16px;
}
.ws-about-text h2 .accent { color: var(--brand); }
.ws-about-text p {
  color: var(--text);
  font-size: var(--font-size-body);
  line-height: 32px;
  margin-bottom: 20px;
  text-align: justify;
}
.ws-feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ws-feature-list li { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.ws-feature-list li::before { content: '✓'; color: var(--brand); font-weight: 800; }
.ws-about-right { display: flex; flex-direction: column; gap: 16px; }
.ws-stat-chip {
  background: var(--brand-pale);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  display: flex; flex-direction: column;
}
.ws-stat-chip strong { font-size: var(--font-size-stat); font-weight: 700; color: var(--brand); }
.ws-stat-chip span { font-size: var(--font-size-body); color: var(--text); }
.ws-about-img { border-radius: var(--radius-card); }

/* ── Features ─────────────────────────────────────────────────────────────── */
.ws-features { background: var(--bg); }
.ws-feature-card { border-left: 3px solid var(--brand); }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.ws-testimonials { background: var(--accent); }
.ws-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 36px; }
.ws-testimonial {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ws-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.ws-quote { color: var(--muted); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.ws-reviewer strong { display: block; font-weight: 700; }
.ws-reviewer span { font-size: 13px; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.ws-faq { background: var(--card); }
.ws-faq-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.ws-faq-list { display: flex; flex-direction: column; gap: 2px; }
.ws-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.ws-faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.ws-faq-item summary::-webkit-details-marker { display: none; }
.ws-faq-item summary::after { content: '+'; font-size: 20px; color: var(--brand); }
.ws-faq-item[open] summary::after { content: '−'; }
.ws-faq-item[open] summary { color: var(--brand); }
.ws-faq-answer { padding: 0 20px 16px; color: var(--muted); line-height: 1.7; }

/* ── CTA Strip ────────────────────────────────────────────────────────────── */
.ws-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
}
.ws-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ws-cta-text h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: #fff; margin-bottom: 8px; }
.ws-cta-text p { opacity: .88; }
.ws-cta-phone { color: #fff; font-weight: 700; font-size: 18px; border-bottom: 2px solid rgba(255,255,255,.4); }

/* ── Services / What We Do ────────────────────────────────────────────────── */
.ws-services {
  background: var(--services-gradient, linear-gradient(270deg, rgba(218,232,246,0.65) 30%, #A7C7E3 100%));
  padding: 26px 0 60px;
}
.ws-services-header {
  text-align: center;
  margin-bottom: 40px;
}
/* "What We Do" label — 24px/500 matching Figma left:654 (≈center for this text width) */
.ws-services-label {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 35px;
  margin: 0 0 20px;
}
/* Description — 1093px wide, centered */
.ws-services-desc {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 32px;
  max-width: 1093px;
  margin: 0 auto;
  text-align: center;
}
/* 4-column × 3-row service grid — matches Figma layout */
.ws-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 60px;
  column-gap: 0;
  margin-top: 52px;
}
/* Each service: icon + label, no card background */
.ws-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 12px;
}
/* Icon container — brand blue square, ~100px to match Figma's 90–110px icons */
.ws-service-icon-wrap {
  width: 100px;
  height: 100px;
  background: var(--service-icon-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
  /* No shadow, no hover card — matches Figma bare icon */
}
/* Service name — Roboto 18px/500, black */
.ws-service-name {
  font-family: Roboto, var(--font);
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 25px;
}

/* ── Statistics ───────────────────────────────────────────────────────────── */
.ws-stats { background: var(--brand); color: #fff; padding: 56px 0; }
.ws-stats .ws-section-title { color: #fff; }
.ws-stats-row { display: flex; flex-wrap: wrap; gap: 0; margin-top: 24px; }
.ws-stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.ws-stat-item:last-child { border-right: none; }
.ws-stat-item strong { display: block; font-size: var(--font-size-stat); font-weight: 700; color: #fff; line-height: 1; }
.ws-stat-item span { display: block; font-size: var(--font-size-body); opacity: .9; margin-top: 6px; }

/* ── Blog preview ─────────────────────────────────────────────────────────── */
.ws-blog-preview { background: var(--bg); }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.ws-contact { background: var(--card); }
.ws-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.ws-contact-info h2 { margin-bottom: 20px; }
.ws-contact-info p { color: var(--muted); margin-bottom: 10px; }
.ws-contact-info a { color: var(--brand); }

/* ── Generic / Error ──────────────────────────────────────────────────────── */
.ws-generic { background: var(--bg); }
.ws-generic-media {
  margin: 28px auto 0;
  max-width: 920px;
  border-radius: var(--radius);
  overflow: hidden;
}
.ws-generic-media img,
.ws-generic-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.ws-generic-media img { max-height: 420px; }
.ws-generic-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ws-generic-card img {
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 4px;
}
.ws-text-link {
  margin-top: auto;
  color: var(--brand);
  font-weight: 700;
}
.ws-error { background: var(--bg); }
.ws-error h2 { color: #ef4444; margin-bottom: 12px; }
.ws-hint { color: var(--muted); font-size: 13px; margin-top: 12px; }
.ws-hint code { background: var(--border); padding: 2px 6px; border-radius: 4px; font-size: 12px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
#siteFooter {
  background: var(--footer-bg);
  color: #fff;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

/* Main content grid — 4 columns matching Figma positions */
.ws-footer-main {
  display: grid;
  grid-template-columns: 474px 308px 336px 1fr;
  gap: 0;
  padding: 105px 57px 0;
  flex: 1;
}

/* Brand + contact card column */
.ws-footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 40px;
}
.ws-footer-logo {
  height: 86px;
  width: 173px;
  object-fit: contain;
  margin-bottom: 19px;
}
.ws-footer-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 19px;
}
.ws-footer-contact-card {
  background: var(--footer-contact-card-bg);
  border-radius: 10px;
  padding: 13px 23px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 403px;
  min-height: 266px;
}
.ws-footer-contact-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 28px;
  margin-bottom: 8px;
}
.ws-footer-contact-desc {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 28px;
  margin: 0 0 auto;
  flex: 1;
}
.ws-footer-socials {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}
.ws-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--footer-social-bg);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s;
}
.ws-footer-social:hover { background: var(--brand-dark, #154a6f); text-decoration: none; }

/* Link columns */
.ws-footer-col { padding-top: 0; }
.ws-footer-col-heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 59px; /* links start 59px below heading: 191-132 */
  white-space: nowrap;
}
.ws-footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ws-footer-col-links li { height: 52px; display: flex; align-items: flex-start; }
.ws-footer-col-links a {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  line-height: 28px;
  transition: opacity .15s;
}
.ws-footer-col-links a:hover { opacity: .75; text-decoration: none; }

/* Bottom bar */
.ws-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 71px 28px;
  margin-top: 40px;
  border-top: 1px solid #B2B2B2;
  padding-top: 27px;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 400;
  color: #fff;
}
.ws-footer-bottom-links { display: flex; gap: 40px; }
.ws-footer-bottom-links a {
  color: #fff;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 400;
}
.ws-footer-bottom-links a:hover { opacity: .75; text-decoration: none; }

@media (max-width: 1200px) {
  .ws-footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px 0; }
  .ws-footer-contact-card { width: 100%; }
}
@media (max-width: 768px) {
  .ws-footer-main { grid-template-columns: 1fr; padding: 40px 24px 0; }
  .ws-footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }
  .ws-footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}

/* ── Edit mode ────────────────────────────────────────────────────────────── */
body.edit-mode { cursor: default; }
body.edit-mode #siteNav { pointer-events: none; }

.icore-section { position: relative; transition: outline .15s; }
.icore-section:hover { outline: 2px dashed var(--brand); outline-offset: 2px; }
.icore-section.section-selected { outline: 2px solid var(--brand); outline-offset: 2px; }

.section-edit-overlay {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 50;
  display: none;
}
.icore-section:hover .section-edit-overlay,
.icore-section.section-selected .section-edit-overlay { display: block; }
.section-edit-label {
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ── Preview theme banner ─────────────────────────────────────────────────── */
.preview-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--brand); color: #fff;
  padding: 10px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 13px; font-family: var(--font);
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
.preview-banner button {
  background: rgba(255,255,255,.2); border: none; color: #fff;
  padding: 4px 10px; border-radius: 6px; cursor: pointer;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ws-hero-image { flex: 0 0 320px; max-width: 320px; }
  .ws-footer-grid { grid-template-columns: 1fr 1fr; }
  .ws-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --section-pad-y: 48px; --container-pad: 20px; }
  .ws-nav-inner { padding: 0 20px; }
  .ws-nav-links a { padding: 6px 10px; font-size: 14px; }
  .ws-section { padding: 48px 0; }
  .ws-about-inner { grid-template-columns: 1fr; gap: 32px; }
  .ws-faq-inner { grid-template-columns: 1fr; }
  .ws-hero-inner { flex-direction: column; }
  .ws-hero-image { flex: unset; max-width: 100%; }
  .ws-hero-image img { height: 240px; }
  .ws-cta-inner { flex-direction: column; text-align: center; }
  .ws-contact-inner { grid-template-columns: 1fr; }
  .ws-stats-row { flex-direction: column; }
  .ws-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .ws-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ws-footer-bottom { flex-direction: column; text-align: center; }
}

.theme-package-frame {
  display: block;
  width: 100%;
  height: 100vh;
  border: 0;
  background: #fff;
  overflow: auto;
}

html.package-theme-active,
html.package-theme-active body {
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

html.package-theme-loading {
  overflow-y: hidden;
  background: #fff;
}

html.package-theme-loading body,
html.package-theme-loading #siteBody {
  background: #fff;
}
