/* global.css: merged theme.css + clones-unified.css */

@font-face {
  font-family: "Monument Extended";
  src: url("/wp-content/themes/xtechs-renewables/assets/fonts/MonumentExtended-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Monument Extended";
  src: url("/wp-content/themes/xtechs-renewables/assets/fonts/MonumentExtended-Ultrabold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica 255";
  src: url("/wp-content/themes/xtechs-renewables/assets/fonts/Helvetica.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica 255";
  src: url("/wp-content/themes/xtechs-renewables/assets/fonts/Helvetica-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --brand-primary: #18877e;
  --brand-primary-light: #34a0a4;
  --brand-secondary: #06303f;
  --brand-secondary-light: #52b69a;
  --logo-deep: #06303f;
  --logo-teal: #18877e;
  --logo-teal-light: #52b69a;
  --logo-charcoal: #031f29;
  --background: #eeeeee;
  --foreground: #06303f;
  --muted-foreground: #64748b;
  --card: #f8fcfb;
  --border: #b7d8d2;
  --primary: #18877e;
  --primary-foreground: #eeeeee;
  --muted: #d7ebe5;
  --radius: 0.625rem;
  --font-heading: "Monument Extended", "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica 255", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.xt-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

/* Secondary font for body + subtexts */
h5,
h6,
p,
li,
small,
label,
input,
select,
textarea,
button {
  font-family: var(--font-body);
}

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

.xt-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .xt-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.xt-container-narrow {
  max-width: 64rem;
}

.xt-site-main {
  min-height: 40vh;
}

/* ——— Header ——— */
.xt-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.xt-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.xt-brand-logo {
  height: 2rem;
  width: auto;
  display: block;
}

.xt-nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .xt-nav-desktop {
    display: block;
    flex: 1;
    margin: 0 1.5rem;
  }
}

.xt-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
}

.xt-nav-item {
  position: relative;
}

.xt-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.xt-nav-link:hover,
.xt-nav-link:focus-visible {
  color: var(--brand-primary);
  outline: none;
}

.xt-nav-link-soon {
  gap: 0.5rem;
}

.xt-icon-chevron {
  flex-shrink: 0;
}

.xt-pill-soon {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-secondary-light) 20%, transparent);
  color: var(--brand-secondary);
}

.xt-has-dropdown .xt-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 16rem;
  padding: 0.5rem 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 60;
}

.xt-has-dropdown:hover .xt-dropdown,
.xt-has-dropdown:focus-within .xt-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.xt-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
}

.xt-dropdown a:hover {
  background: #f9fafb;
  color: var(--brand-primary);
}

.xt-header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .xt-header-cta {
    display: flex;
  }
}

.xt-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .xt-menu-toggle {
    display: none;
  }
}

.xt-menu-icon-close {
  display: none;
}

.xt-menu-toggle.is-open .xt-menu-icon-open {
  display: none;
}

.xt-menu-toggle.is-open .xt-menu-icon-close {
  display: block;
}

.xt-mobile-nav {
  border-top: 1px solid #e5e7eb;
  background: #fff;
  padding: 1rem 0 1.25rem;
}

.xt-mobile-nav[hidden] {
  display: none !important;
}

.xt-mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.xt-mobile-parent {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.xt-mobile-sub {
  margin: 0.35rem 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.xt-mobile-sub a {
  font-size: 0.8125rem;
  color: #4b5563;
}

.xt-mobile-sub a:hover {
  color: var(--brand-primary);
}

.xt-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

/* ——— Buttons ——— */
.xt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.xt-btn-sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
}

.xt-btn-lg {
  padding: 0.75rem 1.35rem;
  font-size: 1rem;
}

.xt-btn-block {
  width: 100%;
}

.xt-btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.xt-btn-primary:hover {
  filter: brightness(1.05);
}

.xt-btn-outline {
  background: #fff;
  color: var(--foreground);
  border-color: #d1d5db;
}

.xt-btn-outline:hover {
  background: var(--brand-secondary-light);
  border-color: var(--brand-secondary-light);
  color: #fff;
}

.xt-icon-inline {
  flex-shrink: 0;
}

/* ——— Home hero + background ——— */
.xt-min-h-screen {
  min-height: 72vh;
}

.xt-home-hero {
  position: relative;
  overflow: hidden;
}

.xt-hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.xt-bg-circles {
  position: absolute;
  inset: 0;
}

.xt-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(24, 135, 126, 0.16) 0px,
    rgba(24, 135, 126, 0.16) 1px,
    transparent 1px,
    transparent 16px
  );
  background-size: 32px 32px;
  animation: xt-grid-shift 40s linear infinite;
}

.xt-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(24, 135, 126, 0.2), rgba(52, 160, 164, 0.12) 35%, transparent 62%);
}

.xt-bg-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xt-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}

.xt-ring-a {
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  border-color: rgba(24, 135, 126, 0.48);
  animation: xt-ring-pulse 5s ease-in-out infinite;
}

.xt-ring-b {
  width: min(720px, 120vw);
  height: min(720px, 120vw);
  border-color: rgba(52, 160, 164, 0.35);
  animation: xt-ring-pulse-rev 6s ease-in-out infinite;
}

.xt-ring-c {
  width: min(1040px, 140vw);
  height: min(1040px, 140vw);
  border-color: rgba(71, 85, 105, 0.28);
  animation: xt-ring-pulse 7s ease-in-out infinite;
}

.xt-bg-logo-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: xt-logo-breathe 4s ease-in-out infinite;
}

.xt-bg-logo {
  width: min(20rem, 55vw);
  height: auto;
  object-fit: contain;
  opacity: 0.45;
}

.xt-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  background: rgba(255, 255, 255, 0.35);
}

.xt-bg-blob-tl {
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
}

.xt-bg-blob-br {
  bottom: -6rem;
  right: -6rem;
  width: 28rem;
  height: 28rem;
}

@keyframes xt-ring-pulse {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: rotate(180deg) scale(1.04);
    opacity: 1;
  }
}

@keyframes xt-ring-pulse-rev {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: rotate(-180deg) scale(1.05);
    opacity: 1;
  }
}

@keyframes xt-logo-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes xt-grid-shift {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xt-ring-a,
  .xt-ring-b,
  .xt-ring-c,
  .xt-bg-logo-wrap,
  .xt-bg-grid {
    animation: none;
  }
}

.xt-hero-front {
  position: relative;
  z-index: 10;
}

.xt-hero-inner {
  padding-top: 4.5rem;
  padding-bottom: 2.2rem;
}

@media (min-width: 1024px) {
  .xt-hero-inner {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }
}

.xt-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.xt-hero-h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.xt-hero-line {
  display: block;
}

.xt-hero-line-deep {
  color: var(--logo-deep);
}

.xt-text-gradient-logo {
  display: block;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, var(--logo-deep) 0%, var(--logo-teal) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.xt-hero-rotate-wrap {
  width: 100%;
  max-width: 48rem;
  margin-top: 3.1rem;
}

@media (min-width: 768px) {
  .xt-hero-rotate-wrap {
    margin-top: 3rem;
  }
}

.xt-hero-rotate-track {
  position: relative;
  min-height: 2.8em;
}

.xt-hero-rotate-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1rem;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--logo-charcoal);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.xt-hero-rotate-line.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.xt-hero-lead {
  margin: 2.4rem 0 0;
  max-width: 40rem;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 500;
  color: #111827;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .xt-hero-lead {
    margin-top: 2.5rem;
  }
}

.xt-hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .xt-hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.xt-hero-footnote {
  margin: 0;
  max-width: 28rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}

/* ——— Sections ——— */
.xt-section {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .xt-section {
    padding: 4rem 0;
  }
}

.xt-section-white {
  background: #fff;
}

.xt-section-muted {
  background: #f8fafc;
}

.xt-services-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.xt-services-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .xt-services-header {
    margin-bottom: 4rem;
  }
}

.xt-services-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.xt-services-sub {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 300;
}

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

@media (min-width: 640px) {
  .xt-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .xt-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-service-card {
  display: flex;
  flex-direction: column;
  height: 320px;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #f9fafb;
  transition: background 0.3s, box-shadow 0.3s;
  outline: none;
}

.xt-service-card:hover,
.xt-service-card:focus-visible {
  background: #f3f4f6;
  box-shadow: 0 0 0 2px #d1d5db;
}

.xt-service-images {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 0;
}

.xt-service-img {
  position: absolute;
  width: 176px;
  height: 176px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.xt-service-img-back {
  transform: rotate(-6deg);
}

.xt-service-img-front {
  transform: rotate(3deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.xt-service-card:hover .xt-service-img-back {
  transform: rotate(-10deg) scale(1.04);
}

.xt-service-card:hover .xt-service-img-front {
  transform: rotate(6deg) scale(1.04);
}

.xt-service-title {
  margin: auto 0 0;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  font-family: var(--font-body);
}

/* ——— Process ——— */
.xt-process-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .xt-process-header {
    margin-bottom: 2.5rem;
  }
}

.xt-process-h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.xt-process-intro {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .xt-process-intro {
    font-size: 1rem;
  }
}

.xt-process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .xt-process-grid {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
  }

  .xt-process-aside {
    position: sticky;
    top: 5.5rem;
  }
}

.xt-process-stepper-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card);
  padding: 1rem;
}

.xt-process-stepper-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.xt-stepper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 1023px) {
  .xt-stepper {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .xt-stepper::-webkit-scrollbar {
    display: none;
  }
}

.xt-step-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, box-shadow 0.2s;
}

@media (max-width: 1023px) {
  .xt-step-btn {
    flex-shrink: 0;
    width: auto;
    white-space: nowrap;
  }
}

.xt-step-btn:hover {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
}

.xt-step-btn.is-active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 25%, transparent);
}

.xt-step-btn.is-active .xt-step-num {
  background: var(--primary-foreground);
  color: var(--primary);
}

.xt-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--muted);
  color: #475569;
  flex-shrink: 0;
}

.xt-step-label {
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .xt-step-label {
    font-size: 1rem;
  }
}

.xt-process-panel-outer {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.xt-process-panel-inner {
  position: relative;
  min-height: min(60vh, 700px);
}

.xt-step-panel {
  display: none;
  flex-direction: column;
  height: 100%;
  min-height: min(60vh, 700px);
  padding: 1.5rem;
}

.xt-step-panel.is-active {
  display: flex;
}

@media (min-width: 768px) {
  .xt-step-panel {
    padding: 2rem;
  }
}

.xt-step-panel-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.xt-step-panel-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.xt-step-panel-desc {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.xt-step-panel-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(to bottom right, color-mix(in srgb, var(--brand-secondary) 15%, transparent), color-mix(in srgb, var(--brand-secondary) 8%, transparent));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .xt-step-panel-body {
    font-size: 1rem;
    padding: 2rem;
  }
}

.xt-step-panel-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.xt-step-phase {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.xt-step-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 60%, transparent);
}

.xt-step-dots {
  display: flex;
  gap: 0.25rem;
}

.xt-step-dot-sm {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--muted);
}

.xt-step-dot-sm.is-on {
  background: var(--primary);
}

/* ——— Calculator + reviews ——— */
.xt-calc-header {
  text-align: center;
  padding: 0.75rem 0;
}

#calculator-tile .xt-container-narrow {
  max-width: 72rem;
}

.xt-calc-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #022b47;
}

.xt-calc-sub {
  margin: 0.2rem 0 0;
  color: #385785;
  font-size: clamp(0.95rem, 1.2vw, 1.55rem);
}

.xt-calc-shell {
  margin-top: 1rem;
  padding: 1rem 0.5rem 1.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  display: grid;
  gap: 1.5rem;
}

.xt-calc-shell-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .xt-calc-shell-3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
}

.xt-calc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-content: stretch;
  min-height: 0;
}

@media (min-width: 1024px) {
  .xt-calc-card {
    min-height: 640px;
  }
}

.xt-calc-card-rebates #xt-calc-run {
  margin-top: auto;
}

.xt-calc-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.xt-calc-card-ico {
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 0.12rem;
}

.xt-calc-card-ico-blue {
  color: #2563eb;
}

.xt-calc-rebates-ico {
  color: #16a34a;
}

.xt-calc-card-heading-text {
  min-width: 0;
}

.xt-req {
  color: #dc2626;
  font-weight: 700;
}

.xt-calc-input-mono {
  text-align: center;
  font-size: 1.05rem !important;
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.06em;
}

.xt-calc-zone-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
}

.xt-calc-zone-row.is-hidden {
  display: none;
}

.xt-calc-zone-check {
  display: inline-flex;
  color: #16a34a;
}

.xt-badge-zone {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.xt-calc-postcode-err {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #dc2626;
}

.xt-calc-postcode-err.is-hidden {
  display: none;
}

.xt-calc-postcode-err-ico {
  display: inline-flex;
  flex-shrink: 0;
  color: #dc2626;
}

.xt-calc-card-rebates .xt-calc-output {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  gap: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.xt-calc-card-rebates .xt-calc-empty {
  border: none;
  background: transparent;
  border-radius: 0;
  min-height: 200px;
  padding: 2rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.xt-calc-card-rebates .xt-calc-empty p {
  font-size: 0.875rem;
  color: #64748b;
  max-width: 18rem;
}

.xt-calc-card-title {
  font-size: clamp(1.1rem, 1vw, 1.35rem);
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.25;
}

.xt-calc-card-sub {
  margin: 0.25rem 0 0;
  font-size: clamp(0.8125rem, 0.78vw, 0.9375rem);
  color: #64748b;
  line-height: 1.45;
}

.xt-calc-field {
  display: grid;
  gap: 0.28rem;
}

.xt-calc-field label {
  font-size: 1.1rem;
  font-size: clamp(0.95rem, 0.85vw, 1.2rem);
  font-weight: 600;
  color: #0f2740;
}

.xt-calc-field input:not([type="range"]),
.xt-calc-field select {
  appearance: none;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 0.72rem;
  font-size: clamp(0.9rem, 0.78vw, 1.05rem);
  color: #0f172a;
  background: #fff;
}

.xt-calc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  padding-right: 2.25rem;
}

.xt-calc-field input:focus,
.xt-calc-field select:focus {
  outline: 2px solid color-mix(in srgb, var(--brand-primary) 25%, transparent);
  border-color: var(--brand-primary);
}

.xt-calc-inline {
  display: flex;
  align-items: center;
}

.xt-badge-soft {
  display: inline-flex;
  border: 1px solid #c8ece8;
  background: #ecfeff;
  color: #0e7490;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
}

.xt-calc-check label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: clamp(0.95rem, 0.82vw, 1.1rem);
  color: #334155;
}

.xt-calc-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: #2563eb;
  cursor: pointer;
}

.xt-check-icon {
  display: inline-flex;
  color: #0f172a;
}

.xt-calc-range-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #64748b;
}

.xt-calc-mini {
  margin: 0;
  font-size: 0.86rem;
  color: #64748b;
}

.xt-calc-elig {
  display: grid;
  gap: 0.28rem;
}

.xt-calc-elig p {
  margin: 0;
  font-size: clamp(0.95rem, 0.82vw, 1.1rem);
  font-weight: 700;
  color: #0f2740;
}

.xt-calc-elig label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 0.78vw, 0.9375rem);
  color: #334155;
  line-height: 1.35;
  cursor: pointer;
}

.xt-calc-elig label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: #2563eb;
  border-radius: 0.2rem;
  cursor: pointer;
}

.xt-calc-output {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.xt-calc-output.is-hidden {
  display: none;
}

.xt-calc-empty {
  border: 1px solid #dbe4ea;
  border-radius: 0.75rem;
  background: #fff;
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}
.xt-calc-empty.is-hidden {
  display: none;
}

.xt-calc-empty p {
  margin: 0.5rem 0 0;
  color: #6b7280;
  font-size: 1.25rem;
  max-width: 17rem;
  line-height: 1.4;
}

.xt-calc-empty-icon {
  opacity: 0.85;
}

.xt-calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 0.5rem;
}

.xt-calc-result-row p {
  margin: 0;
  font-size: clamp(0.92rem, 0.76vw, 1.05rem);
  color: #475569;
}

.xt-calc-result-row strong {
  font-size: clamp(0.95rem, 0.84vw, 1.15rem);
  color: #0f172a;
}

.xt-calc-result-total strong {
  font-size: 1.1rem;
  color: #00a78f;
}

.xt-calc-disclaimer {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

.xt-calc-output .xt-btn {
  margin-top: 0.4rem;
}

.xt-rebate-panel {
  border-radius: 0.5rem;
  background: #fff;
  padding: 1rem;
}

.xt-rebate-panel h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0c2f55;
}

.xt-rebate-panel p {
  margin: 0.3rem 0 0;
  font-size: 0.92rem;
  line-height: 1.2;
  color: #55657f;
}

.xt-rebate-sv {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.xt-rebate-fed {
  background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
}

.xt-rebate-sv h4 {
  color: #14532d;
}

.xt-rebate-sv p {
  color: #c14f00;
}

#xt-calc-sv-status.is-eligible {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #15803d;
  font-weight: 600;
}

#xt-calc-sv-status.is-eligible .xt-calc-sv-check {
  flex-shrink: 0;
  color: #16a34a;
}

.xt-rebate-row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
}

.xt-info-wrap {
  position: relative;
  flex-shrink: 0;
}

.xt-info-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #94a3b8;
  color: #64748b;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  cursor: help;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.xt-info-dot:hover,
.xt-info-wrap:hover .xt-info-dot {
  color: #475569;
  border-color: #64748b;
}

.xt-info-dot:focus {
  outline: none;
}

.xt-info-dot:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.xt-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: max-content;
  max-width: min(280px, 85vw);
  padding: 0.65rem 0.8rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.45;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.xt-tooltip-wide {
  max-width: min(320px, 92vw);
  font-weight: 400;
}

.xt-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0.6rem;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  filter: drop-shadow(0 1px 0 #e2e8f0);
}

.xt-tooltip-list {
  margin: 0;
  padding-left: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}

.xt-tooltip-list li {
  margin: 0.15rem 0;
}

.xt-tooltip-body {
  text-align: left;
}

.xt-tooltip-body p {
  margin: 0 0 0.4rem;
}

.xt-tooltip-body p:last-child {
  margin-bottom: 0;
}

.xt-tooltip-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: #334155;
}

.xt-tooltip-note {
  margin-top: 0.45rem !important;
  padding-top: 0.4rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.8125rem;
}

.xt-tooltip-muted {
  color: #64748b;
  font-weight: 500;
}

.xt-info-wrap:hover .xt-tooltip,
.xt-info-wrap:focus-within .xt-tooltip {
  opacity: 1;
  visibility: visible;
}

.xt-warn-dot {
  color: #d97706;
  font-weight: 700;
}

.xt-rebate-badge {
  background: #2563eb;
  color: #fff;
  border-radius: 999px;
  min-width: 72px;
  height: 28px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 0.25rem;
  padding: 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  border: none;
}

.xt-rebate-badge strong {
  display: inline;
  font-size: 0.8125rem;
  margin: 0;
}

.xt-rebate-fed-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.65rem;
}

.xt-rebate-fed-top h4 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 8rem;
  color: #1e3a8a;
  font-weight: 600;
}

.xt-rebate-fed-top-right {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.xt-rebate-value {
  font-weight: 700;
  color: #1e3a8a !important;
}

.xt-rebate-value-hero {
  margin: 0.65rem 0 0 !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  line-height: 1.2;
}

.xt-rebate-total {
  background: #fff;
  border: 1px solid #e5e7eb;
}

.xt-rebate-total .xt-rebate-row-head {
  align-items: center;
}

.xt-rebate-total h4 {
  font-weight: 600;
  color: #0f172a;
}

.xt-rebate-total-value {
  margin: 0 !important;
  color: #4c1d95 !important;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}

.xt-rebate-breakdown {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.42rem;
}

.xt-rebate-breakdown span {
  border-radius: 0.5rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.83rem;
  line-height: 1.35;
}

.xt-rebate-breakdown .xt-rebate-break-pv {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e293b;
}

.xt-rebate-breakdown .xt-rebate-break-sv {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #1e293b;
}

.xt-calc-proposal {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.875rem;
}

.xt-calc-proposal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.xt-calc-proposal-market span {
  color: #64748b;
}

.xt-calc-proposal-market strong {
  color: #0f172a;
  font-weight: 600;
}

.xt-calc-proposal-discounts {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.5rem;
  margin-top: 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.xt-calc-proposal-discount {
  border: none;
  padding: 0.2rem 0;
}

.xt-calc-proposal-discount span,
.xt-calc-proposal-discount strong {
  color: #047857;
  font-weight: 500;
}

.xt-calc-proposal-total {
  border-top: 1px solid #e5e7eb;
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  align-items: center;
}

.xt-calc-proposal-total span {
  font-weight: 500;
  color: #0f172a;
}

.xt-calc-proposal-total strong {
  color: #4c1d95;
  font-size: 1.125rem;
  font-weight: 700;
}

.xt-calc-disclaimer-inline {
  margin: 0.65rem 0 0 !important;
  padding: 0 !important;
  font-size: 0.75rem !important;
  line-height: 1.45;
  color: #64748b !important;
}

.xt-calc-table {
  border: 1px solid #e5e7eb;
  border-radius: 0.72rem;
  overflow: hidden;
  background: #fff;
}

.xt-calc-table-head,
.xt-calc-table-row {
  display: grid;
  grid-template-columns: 1.7fr 0.4fr 0.55fr 0.45fr;
  gap: 0.45rem;
  align-items: start;
  padding: 0.48rem 0.58rem;
  font-size: clamp(0.88rem, 0.72vw, 1rem);
}

.xt-calc-table-head {
  background: #f9fafb;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: none;
  color: #475569;
}

.xt-calc-table-row {
  border-top: 1px solid #eef2f7;
  color: #111827;
}

.xt-calc-table-foot {
  border-top: 1px solid #e5e7eb;
  font-size: 0.75rem;
  color: #64748b;
  padding: 0.5rem 0.58rem;
  line-height: 1.4;
}

.xt-calc-card-proposal > a.xt-btn-block {
  margin-top: auto;
}

.xt-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d74d9 0%, #1d74d9 35%, #e2e8f0 35%, #e2e8f0 100%);
  outline: none;
  border: none !important;
  padding: 0 !important;
}

.xt-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #1d74d9;
  background: #fff;
  cursor: pointer;
}

.xt-range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
}

.xt-range::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: #1d74d9;
}

.xt-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #1d74d9;
  background: #fff;
  cursor: pointer;
}

.xt-reviews-section {
  padding: 4rem 0;
  background: linear-gradient(to right, #eff6ff, #ecfdf5);
}

.xt-reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.xt-reviews-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.xt-reviews-sub {
  margin: 0;
  font-size: 1.125rem;
  color: #4b5563;
}

.xt-reviews-frame {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.xt-reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  color: #111827;
}

.xt-reviews-prev {
  left: 0;
  transform: translate(-40%, -50%);
}

.xt-reviews-next {
  right: 0;
  transform: translate(40%, -50%);
}

@media (max-width: 640px) {
  .xt-reviews-prev {
    transform: translate(0, -50%);
    left: 0.25rem;
  }

  .xt-reviews-next {
    transform: translate(0, -50%);
    right: 0.25rem;
  }
}

.xt-reviews-card-wrap {
  position: relative;
  min-height: 280px;
}

.xt-review-card {
  display: none;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}

.xt-review-card.is-active {
  display: block;
}

@media (min-width: 768px) {
  .xt-review-card {
    padding: 2rem;
  }
}

.xt-review-layout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.xt-review-quote-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(to bottom right, #3b82f6, #22c55e);
}

.xt-review-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.xt-star {
  color: #facc15;
  font-size: 1.25rem;
  line-height: 1;
}

.xt-review-text {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #374151;
}

.xt-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.xt-review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #4b5563;
}

.xt-review-name {
  margin: 0;
  font-weight: 600;
  color: #111827;
}

.xt-review-source {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.xt-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.xt-reviews-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
}

.xt-reviews-dot.is-active {
  background: #2563eb;
  transform: scale(1.15);
}

.xt-reviews-links {
  text-align: center;
  margin-top: 1.5rem;
}

.xt-reviews-links-lead {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.xt-reviews-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.xt-reviews-ext {
  font-weight: 600;
  color: #2563eb;
}

.xt-reviews-ext:hover {
  text-decoration: underline;
}

.xt-reviews-note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ——— Footer ——— */
.xt-site-footer {
  background: #fff;
  color: #000;
  border-top: 1px solid #e5e7eb;
  padding: 3.5rem 1.5rem 2rem;
}

.xt-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.xt-footer-brand {
  margin-bottom: 3rem;
}

.xt-footer-logo {
  height: 2rem;
  width: auto;
}

.xt-footer-tagline {
  margin: 1rem 0 0;
  max-width: 48rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.xt-footer-legal-lines {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.xt-footer-legal-lines p {
  margin: 0.15rem 0;
}

.xt-footer-columns-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .xt-footer-columns-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
}

.xt-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  flex: 1;
}

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

.xt-footer-col-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.xt-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xt-footer-links li {
  margin-bottom: 0.5rem;
}

.xt-footer-links a {
  font-size: 0.9rem;
  color: #4b5563;
}

.xt-footer-links a:hover {
  color: #3b82f6;
}

.xt-footer-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.25rem;
}

@media (min-width: 1024px) {
  .xt-footer-card {
    width: 33%;
    max-width: 22rem;
    flex-shrink: 0;
  }
}

.xt-footer-card-title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.xt-footer-contact-lines {
  font-size: 0.875rem;
  color: #4b5563;
}

.xt-footer-contact-lines p {
  margin: 0 0 0.35rem;
}

.xt-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.xt-footer-contact-icon {
  display: inline-flex;
  color: #6b7280;
}

.xt-footer-contact-lines a:hover {
  color: var(--brand-primary);
}

.xt-footer-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.xt-footer-follow {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.xt-footer-follow-title {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.xt-footer-socials {
  display: flex;
  gap: 0.75rem;
}

.xt-footer-socials a {
  color: #6b7280;
}

.xt-footer-socials a:hover {
  color: #3b82f6;
}

.xt-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .xt-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.xt-footer-copy {
  margin: 0;
}

.xt-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.xt-footer-bottom-links a:hover {
  color: #3b82f6;
}

.xt-footer-widgets {
  margin-top: 2rem;
}

/* ——— Blog index ——— */
.xt-page-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.xt-page-lead {
  margin: 0 0 2rem;
  color: var(--muted-foreground);
}

.xt-post-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.xt-post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.xt-post-card-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
}

.xt-post-card-title a:hover {
  color: var(--brand-primary);
}

/* ——— PV & Battery landings (xtechs-website parity) ——— */
.xt-pv-page {
  background: #fff;
}

.xt-pv-breadcrumb {
  padding: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.xt-pv-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

.xt-pv-breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.xt-pv-breadcrumb-list a:hover {
  color: var(--brand-primary);
}

.xt-pv-hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
}

@media (min-width: 768px) {
  .xt-pv-hero {
    padding: 3.5rem 0 4rem;
  }
}

.xt-pv-hero--soft {
  background: linear-gradient(135deg, #eff6ff 0%, #fff 45%, #f9fafb 100%);
}

.xt-pv-hero--green {
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 50%, #f9fafb 100%);
}

.xt-pv-hero--mint {
  background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 55%, #f8fafc 100%);
}

.xt-pv-hero--ev {
  background: linear-gradient(135deg, #dbeafe 0%, #ecfdf5 50%, #f8fafc 100%);
}

.xt-pv-hero-inner {
  position: relative;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.xt-pv-hub .xt-pv-hero-inner {
  max-width: 48rem;
}

.xt-pv-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-family: var(--font-body);
}

.xt-pv-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  color: #111827;
}

.xt-pv-hero-lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
  font-family: var(--font-body);
}

.xt-pv-filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.xt-pv-chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

.xt-pv-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.xt-pv-trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .xt-pv-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .xt-pv-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.xt-pv-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.xt-pv-trust-item strong {
  font-size: 0.9rem;
  color: #111827;
  font-family: var(--font-heading);
}

.xt-pv-trust-item span {
  color: #6b7280;
  line-height: 1.5;
}

.xt-pv-tile {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xt-pv-tile {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }

  .xt-pv-tile--reverse .xt-pv-tile-media {
    order: 2;
  }

  .xt-pv-tile--reverse .xt-pv-tile-body {
    order: 1;
  }
}

.xt-pv-tile-media {
  min-height: 14rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #e5e7eb 0%, #f3f4f6 40%, #d1d5db 100%);
}

.xt-pv-tile-media--blue {
  background: linear-gradient(145deg, #bfdbfe 0%, #e0e7ff 50%, #f8fafc 100%);
}

.xt-pv-tile-media--teal {
  background: linear-gradient(145deg, #99f6e4 0%, #a5f3fc 45%, #f0fdfa 100%);
}

.xt-pv-tile-media--green {
  background: linear-gradient(145deg, #bbf7d0 0%, #d9f99d 40%, #f7fee7 100%);
}

.xt-pv-tile-media--slate {
  background: linear-gradient(145deg, #cbd5e1 0%, #e2e8f0 50%, #f8fafc 100%);
}

.xt-pv-tile-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-primary);
  font-family: var(--font-body);
}

.xt-pv-tile-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: #111827;
}

.xt-pv-tile-desc {
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.65;
  font-family: var(--font-body);
}

.xt-pv-tile-bullets {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: #374151;
  font-family: var(--font-body);
}

.xt-pv-tile-bullets li {
  margin-bottom: 0.35rem;
}

.xt-pv-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.xt-pv-mini-chip {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  background: #f3f4f6;
  border-radius: 0.25rem;
  color: #374151;
}

.xt-pv-tile-brands {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: #6b7280;
  font-family: var(--font-body);
}

.xt-pv-block-header {
  text-align: center;
  margin-bottom: 2rem;
}

.xt-pv-compare-header {
  margin-bottom: 1.5rem;
}

.xt-pv-block-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.5rem;
  color: #111827;
}

.xt-pv-block-lead {
  margin: 0 auto;
  max-width: 36rem;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

.xt-pv-compare-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .xt-pv-compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .xt-pv-compare-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.xt-pv-compare-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.xt-pv-compare-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 10px 25px -12px rgba(6, 48, 63, 0.25);
}

.xt-pv-compare-title {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: #111827;
}

.xt-pv-compare-features {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  flex: 1;
  color: #4b5563;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.xt-pv-compare-more {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.xt-pv-benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .xt-pv-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .xt-pv-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.xt-pv-benefit-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.xt-pv-benefit-title {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: #111827;
  font-family: var(--font-heading);
}

.xt-pv-benefit-text {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
  font-family: var(--font-body);
}

.xt-pv-bullet-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #374151;
  line-height: 1.7;
  font-family: var(--font-body);
}

.xt-pv-bullet-list li {
  margin-bottom: 0.5rem;
}

.xt-pv-faq {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.xt-pv-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.25rem 1rem;
  background: #fff;
}

.xt-pv-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.65rem 0;
  color: #111827;
  font-family: var(--font-body);
  list-style: none;
}

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

.xt-pv-faq-item p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  font-family: var(--font-body);
}

.xt-pv-cta-band {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #0a4a5f 100%);
  color: #e5e7eb;
}

.xt-pv-cta-band-inner {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.xt-pv-cta-band-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.5rem;
  color: #fff;
}

.xt-pv-cta-band-text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  opacity: 0.92;
  font-family: var(--font-body);
}

.xt-pv-cta-band .xt-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.xt-pv-cta-band .xt-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}


/* ===== clones-unified.css ===== */

/* PV & Battery — clone of xtechs-website /pv-battery (Next.js), themed with xTechs Renewables palette */

.xt-pvclone {
  --pv-accent: var(--brand-primary);
  --pv-accent-2: var(--brand-secondary-light);
  --pv-deep: var(--brand-secondary);
  --pv-soft: color-mix(in srgb, var(--brand-primary) 14%, #fff);
  --pv-soft-2: color-mix(in srgb, var(--brand-secondary-light) 12%, #fff);
  --pv-border: var(--border);
  --pv-muted: var(--muted-foreground);
  --pv-ink: #111827;
  background: #fff;
  color: var(--foreground);
}

.xt-pvclone .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.xt-pvclone-h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.5rem;
  color: var(--pv-ink);
}

.xt-pvclone-h2--lg {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.xt-pvclone-muted {
  margin: 0;
  color: var(--pv-muted);
  font-family: var(--font-body);
  line-height: 1.6;
}

.xt-pvclone-pill {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pv-deep);
  background: var(--pv-soft);
  border: 1px solid color-mix(in srgb, var(--brand-primary) 35%, transparent);
  border-radius: 999px;
  font-family: var(--font-body);
}

.xt-pvclone-pill--solid {
  background: color-mix(in srgb, var(--brand-primary) 18%, #fff);
  border-color: transparent;
}

/* ——— Hub hero ——— */
/* Layout parity with Next.js HeroSection / ResidentialClient (spacing + type scale; colors unchanged) */
.xt-pvclone-hero {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .xt-pvclone-hero {
    padding: 3rem 0;
  }
}

.xt-pvclone-hero--sub {
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .xt-pvclone-hero--sub {
    padding: 3rem 0;
  }
}

.xt-pvclone-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--pv-soft) 0%, #fff 45%, #f8fafc 100%);
  pointer-events: none;
}

.xt-pvclone-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
}

.xt-pvclone-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.xt-pvclone-hero-title {
  margin: 0 0 1rem;
  color: var(--pv-ink);
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.15;
}

/* Hub: text-3xl lg:text-5xl */
.xt-pvclone-hero:not(.xt-pvclone-hero--sub) .xt-pvclone-hero-title {
  font-size: clamp(1.875rem, 4.5vw, 3rem);
}

/* Segment (residential, off-grid, builders, …): text-3xl lg:text-5xl */
.xt-pvclone-hero--sub:not(.xt-pvclone-hero--biz) .xt-pvclone-hero-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
}

/* Business: text-2xl lg:text-4xl */
.xt-pvclone-hero--sub.xt-pvclone-hero--biz .xt-pvclone-hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

/* Long segment titles: wrap cleanly — do not use nowrap + overflow-x (causes visible scrollbars). */
.xt-pvclone-hero-title--nowrap {
  text-wrap: balance;
  overflow-x: visible;
  max-width: 100%;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
}

.xt-pvclone-hero-lead {
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.625;
  color: #4b5563;
  font-family: var(--font-body);
  max-width: 36rem;
}

.xt-pvclone-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.xt-pvclone-filter-chip {
  padding: 0.4rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.xt-pvclone-filter-chip:hover {
  border-color: var(--pv-accent);
  background: var(--pv-soft);
}

.xt-pvclone-filter-chip.is-active {
  background: var(--pv-accent);
  border-color: var(--pv-accent);
  color: #fff;
}

.xt-pvclone-hero-cta-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .xt-pvclone-hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.xt-pvclone-hero-cta-row .xt-btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* ——— Trust ——— */
.xt-pvclone-trust {
  padding: 1.5rem 0;
  background: color-mix(in srgb, var(--muted) 35%, #fff);
}

.xt-pvclone-trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .xt-pvclone-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .xt-pvclone-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.xt-pvclone-trust-card {
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
  cursor: help;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.xt-pvclone-trust-card:hover {
  border-color: var(--pv-accent);
  box-shadow: 0 4px 12px rgba(6, 48, 63, 0.08);
}

.xt-pvclone-trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #374151;
  font-family: var(--font-body);
}

/* ——— Section tiles (hub) ——— */
/* Next.js PVIndex: py-8 lg:py-12 + space-y-12 lg:space-y-16 between SectionTiles */
.xt-pvclone-tiles-wrap {
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .xt-pvclone-tiles-wrap {
    padding: 3rem 0;
  }
}

.xt-pvclone-tiles-wrap .xt-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .xt-pvclone-tiles-wrap .xt-container {
    gap: 4rem;
  }
}

.xt-pvclone-tile {
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: 350px;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .xt-pvclone-tile {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3rem;
    min-height: 450px;
  }

  .xt-pvclone-tile-img--right {
    order: 2;
  }

  .xt-pvclone-tile-txt--left {
    order: 1;
  }
}

.xt-pvclone-tile-inner {
  max-width: 36rem;
}

.xt-pvclone-tile-img-inner {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .xt-pvclone-tile-img-inner {
    aspect-ratio: 3 / 2;
  }
}

.xt-pvclone-tile-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xt-pvclone-tile-img-inner--bottom img {
  object-position: bottom;
}

.xt-pvclone-tile-ph {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  background: linear-gradient(145deg, var(--pv-soft) 0%, #e5e7eb 100%);
}

.xt-pvclone-tile-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.xt-pvclone-tile-txt {
  padding: 0 0.25rem;
}

@media (min-width: 1024px) {
  .xt-pvclone-tile-txt {
    padding: 0 2rem;
  }
}

.xt-pvclone-tile-eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pv-accent);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.xt-pvclone-tile-title {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--pv-ink);
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .xt-pvclone-tile-title {
    font-size: 1.875rem;
  }
}

.xt-pvclone-tile-desc {
  margin: 0 0 1.5rem;
  color: #4b5563;
  line-height: 1.625;
  font-family: var(--font-body);
  font-size: 1rem;
}

.xt-pvclone-tile-bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.xt-pvclone-tile-bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: #4b5563;
  font-size: 1rem;
  font-family: var(--font-body);
}

.xt-pvclone-tile-bullets li:last-child {
  margin-bottom: 0;
}

.xt-pvclone-tile-dot {
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pv-accent);
}

.xt-pvclone-tile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.xt-pvclone-tile-chip {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  background: #f3f4f6;
  border-radius: 0.25rem;
  color: #374151;
}

.xt-pvclone-tile-pair-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 0.5rem;
}

.xt-pvclone-tile-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.xt-pvclone-tile-brand {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 40%, #fff);
  border-radius: 0.25rem;
  color: var(--pv-deep);
}

.xt-pvclone-tile-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .xt-pvclone-tile-cta {
    flex-direction: row;
    align-items: center;
  }
}

.xt-pvclone-tile-cta .xt-btn-primary {
  background: var(--pv-accent);
  border-color: var(--pv-accent);
}

.xt-pvclone-tile-cta .xt-btn-primary:hover {
  filter: brightness(0.92);
}

.xt-pvclone-tile-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pv-accent);
  font-family: var(--font-body);
}

.xt-pvclone-tile-more:hover {
  color: var(--pv-deep);
}

/* ——— Compare strip ——— */
.xt-pvclone-compare {
  padding: 2rem 0;
  background: #fff;
}

.xt-pvclone-compare-head {
  text-align: center;
  margin-bottom: 2rem;
}

.xt-pvclone-compare-scroll-btns {
  display: none;
}

@media (min-width: 1024px) {
  .xt-pvclone-compare-scroll-btns {
    display: flex;
    justify-content: space-between;
    max-width: 72rem;
    margin: 0 auto 0.75rem;
  }
}

.xt-pvclone-compare-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  background: #f3f4f6;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #4b5563;
}

.xt-pvclone-compare-nav:hover {
  background: #e5e7eb;
}

.xt-pvclone-compare-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.xt-pvclone-compare-track::-webkit-scrollbar {
  display: none;
}

.xt-pvclone-compare-card {
  flex: 0 0 18rem;
  scroll-snap-align: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -12px rgba(0, 0, 0, 0.12);
}

.xt-pvclone-compare-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--pv-ink);
}

.xt-pvclone-compare-accent {
  width: 3rem;
  height: 0.25rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.xt-pvclone-compare-accent--a1,
.xt-pvclone-compare-accent--a2,
.xt-pvclone-compare-accent--a3,
.xt-pvclone-compare-accent--a4 {
  background: var(--pv-accent);
}

.xt-pvclone-compare-card ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.xt-pvclone-compare-card li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.xt-pvclone-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.3rem;
  height: 0.3rem;
  background: #9ca3af;
  border-radius: 50%;
}

.xt-pvclone-compare-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pv-accent);
}

/* ——— Services alternating ——— */
/* Next.js ServicesSection: py-12 lg:py-16, max-w-6xl, space-y-12 lg:space-y-16 */
.xt-pvclone-services {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .xt-pvclone-services {
    padding: 4rem 0;
  }
}

.xt-pvclone-services-inner.xt-container {
  max-width: 72rem;
}

.xt-pvclone-services-head {
  text-align: center;
  margin-bottom: 3rem;
}

.xt-pvclone-services-head .xt-pvclone-h2--lg {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.xt-pvclone-services-lead {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
}

.xt-pvclone-svc-rows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .xt-pvclone-svc-rows {
    gap: 4rem;
  }
}

.xt-pvclone-svc-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xt-pvclone-svc-row {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3rem;
  }

  .xt-pvclone-svc-row--flip .xt-pvclone-svc-body {
    order: 1;
  }

  .xt-pvclone-svc-row--flip .xt-pvclone-svc-img {
    order: 2;
  }
}

.xt-pvclone-svc-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.xt-pvclone-svc-img img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .xt-pvclone-svc-img img {
    height: 20rem;
  }
}

.xt-pvclone-svc-img--contain {
  background: #f3f4f6;
}

.xt-pvclone-svc-blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(24px);
  opacity: 0.45;
  transform: scale(1.08);
}

.xt-pvclone-svc-img-fit {
  position: relative;
  z-index: 1;
  object-fit: contain !important;
  padding: 1rem;
}

.xt-pvclone-svc-ph {
  height: 16rem;
  background: linear-gradient(135deg, var(--pv-soft), #e5e7eb);
}

.xt-pvclone-svc-body {
  padding: 1.5rem 0;
}

@media (min-width: 640px) {
  .xt-pvclone-svc-body {
    padding: 2rem 0;
  }
}

@media (min-width: 1024px) {
  .xt-pvclone-svc-body {
    padding: 1.5rem 2rem;
  }
}

.xt-pvclone-svc-body > * {
  max-width: 32rem;
}

.xt-pvclone-svc-h {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.xt-pvclone-svc-h .xt-pvclone-svg {
  color: var(--pv-accent);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.xt-pvclone-svc-h h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pv-ink);
  text-wrap: balance;
  line-height: 1.3;
}

.xt-pvclone-svc-body p {
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.625;
  font-family: var(--font-body);
  font-size: 1rem;
}

.xt-pvclone-svc-note {
  font-size: 0.875rem;
  font-style: italic;
  color: #6b7280 !important;
}

/* ——— Process ——— */
/* Next.js ProcessSteps: max-w-7xl px-4 md:px-6 py-12 md:py-16; grid [320px_1fr] gap-6 */
.xt-pvclone-process {
  padding: 3rem 0;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .xt-pvclone-process {
    padding: 4rem 0;
  }
}

.xt-pvclone-process-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .xt-pvclone-process-head {
    margin-bottom: 2rem;
  }
}

.xt-pvclone-process-head .xt-pvclone-h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.xt-pvclone-process-head .xt-pvclone-muted {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .xt-pvclone-process-head .xt-pvclone-muted {
    font-size: 1rem;
  }
}

.xt-pvclone-process-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .xt-pvclone-process-grid {
    grid-template-columns: 20rem minmax(0, 1fr);
    align-items: start;
  }

  .xt-pvclone-process-aside {
    position: sticky;
    top: 6rem;
  }
}

.xt-pvclone-process-card {
  border: 1px solid var(--pv-border);
  border-radius: 0.5rem;
  padding: 1rem;
  background: var(--card);
}

.xt-pvclone-process-card-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: var(--font-heading);
}

.xt-pvclone-stepper {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xt-pvclone-step-btn {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.35rem;
  margin-bottom: 0.25rem;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
  font-family: var(--font-body);
  transition: background 0.15s, color 0.15s;
}

.xt-pvclone-step-btn:hover {
  background: var(--pv-soft);
}

.xt-pvclone-step-btn.is-active {
  background: color-mix(in srgb, var(--brand-primary) 18%, #fff);
  color: var(--pv-deep);
  font-weight: 600;
}

.xt-pvclone-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  background: #e5e7eb;
  flex-shrink: 0;
}

.xt-pvclone-step-btn.is-active .xt-pvclone-step-num {
  background: var(--pv-accent);
  color: #fff;
}

.xt-pvclone-process-panel-wrap {
  border: 1px solid var(--pv-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  min-height: min(60vh, 700px);
  display: flex;
  flex-direction: column;
}

.xt-pvclone-process-panel {
  padding: 1.5rem;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .xt-pvclone-process-panel {
    padding: 2rem;
  }
}

.xt-pvclone-process-panel[hidden] {
  display: none;
}

.xt-pvclone-process-panel-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

.xt-pvclone-process-panel-desc {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: var(--pv-muted);
}

.xt-pvclone-process-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #374151;
  font-family: var(--font-body);
}

.xt-pvclone-process-body p {
  margin: 0 0 0.85rem;
}

.xt-pvclone-process-foot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.xt-pvclone-process-phase-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-primary) 55%, #fff);
}

/* ——— FAQ hub ——— */
.xt-pvclone-faq {
  padding: 2.5rem 0 3rem;
  background: #f9fafb;
}

.xt-pvclone-faq-inner {
  max-width: 72rem;
}

.xt-pvclone-faq-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.xt-pvclone-faq-intro {
  max-width: 36rem;
  margin: 0 auto 1rem;
}

.xt-pvclone-faq-search-wrap {
  display: block;
  max-width: 28rem;
  margin: 0 auto;
}

.xt-pvclone-faq-search {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.xt-pvclone-faq-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .xt-pvclone-faq-layout {
    grid-template-columns: 15rem minmax(0, 1fr);
  }
}

.xt-pvclone-faq-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.xt-pvclone-faq-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  text-align: left;
  font-family: var(--font-body);
}

.xt-pvclone-faq-cat:hover {
  background: #fff;
}

.xt-pvclone-faq-cat.is-active {
  background: #fff;
  border-color: var(--pv-border);
  font-weight: 600;
  color: var(--pv-deep);
}

.xt-pvclone-faq-cat-count {
  font-size: 0.7rem;
  color: var(--pv-muted);
}

.xt-pvclone-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0 1rem;
  margin-bottom: 0.65rem;
  background: #fff;
}

.xt-pvclone-faq-item[hidden] {
  display: none;
}

.xt-pvclone-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  color: var(--pv-ink);
  list-style: none;
  font-family: var(--font-body);
}

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

.xt-pvclone-faq-answer p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.xt-pvclone-faq-actions {
  padding-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
}

.xt-pvclone-faq-copy {
  font-size: 0.75rem;
  background: none;
  border: none;
  color: var(--pv-muted);
  cursor: pointer;
  padding: 0;
}

.xt-pvclone-faq-copy:hover {
  color: var(--pv-accent);
}

.xt-pvclone-faq-empty {
  text-align: center;
  color: var(--pv-muted);
  padding: 2rem;
}

.xt-pvclone-faq-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

/* ——— Benefits grid ——— */
/* Next.js ResidentialClient benefits: py-8 lg:py-12, max-w-6xl, head mb-12, grid gap-6 */
.xt-pvclone-benefits {
  padding: 2rem 0;
  background: #f9fafb;
}

@media (min-width: 1024px) {
  .xt-pvclone-benefits {
    padding: 3rem 0;
  }
}

.xt-pvclone-benefits .xt-container {
  max-width: 72rem;
}

.xt-pvclone-benefits-head {
  text-align: center;
  margin-bottom: 3rem;
}

.xt-pvclone-benefits-head .xt-pvclone-h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.xt-pvclone-benefits-head .xt-pvclone-muted {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
}

.xt-pvclone-benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .xt-pvclone-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.xt-pvclone-benefit {
  text-align: center;
}

.xt-pvclone-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.xt-pvclone-benefit-icon .xt-pvclone-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.xt-pvclone-benefit-icon--brand {
  background: var(--pv-soft);
  color: var(--pv-accent);
}

.xt-pvclone-benefit-icon--teal {
  background: color-mix(in srgb, var(--brand-primary) 16%, #fff);
  color: var(--pv-accent);
}

.xt-pvclone-benefit-icon--warm {
  background: color-mix(in srgb, var(--brand-primary) 16%, #fff);
  color: var(--pv-accent);
}

.xt-pvclone-benefit-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pv-ink);
}

.xt-pvclone-benefit-text {
  margin: 0;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
  font-family: var(--font-body);
}

/* ——— Icon cards (off-grid / builders) ——— */
.xt-pvclone-icon-cards {
  padding: 4rem 0;
  background: #f9fafb;
}

.xt-pvclone-icon-cards-head {
  text-align: center;
  margin-bottom: 3rem;
}

.xt-pvclone-icon-cards-sub {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

.xt-pvclone-icon-cards-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .xt-pvclone-icon-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-pvclone-icard {
  padding: 2rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.xt-pvclone-icard-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--brand-primary) 14%, #fff);
  color: var(--pv-accent);
}

.xt-pvclone-icon-cards--builders .xt-pvclone-icard-icon {
  background: color-mix(in srgb, var(--brand-primary) 14%, #fff);
  color: var(--pv-accent);
}

.xt-pvclone-icard-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.xt-pvclone-icard-list {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}

.xt-pvclone-icard-list li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.45;
}

.xt-pvclone-icard-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--pv-accent);
  border-radius: 50%;
}

.xt-pvclone-icard-hint {
  margin: 0;
  font-size: 0.7rem;
  font-style: italic;
  color: #6b7280;
}

/* ——— CTA band ——— */
/* Next.js CTASection: py-20, inner max-w-4xl px-6 */
.xt-pvclone-cta {
  padding: 5rem 0;
}

.xt-pvclone-cta--brand {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.xt-pvclone-cta--brand-deep {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #042a38 100%);
}

.xt-pvclone-cta--warm {
  background: linear-gradient(135deg, var(--brand-primary) 0%, color-mix(in srgb, var(--brand-secondary-light) 75%, #06303f) 100%);
}

.xt-pvclone-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.xt-pvclone-cta-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.xt-pvclone-cta-desc {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  line-height: 1.55;
}

.xt-pvclone-cta-btns {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .xt-pvclone-cta-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.xt-pvclone-cta-primary {
  background: #fff !important;
  color: var(--pv-deep) !important;
  border-color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.xt-pvclone-cta-primary:hover {
  filter: brightness(0.96);
}

.xt-pvclone-cta-secondary {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.xt-pvclone-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.xt-pvclone-cta-ic {
  flex-shrink: 0;
}

.xt-pvclone-cta-disclaimer {
  margin: 1.25rem auto 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
  text-align: center;
}

/* ——— Off-grid split hero ——— */
.xt-pvclone-hero-split {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.xt-pvclone-hero-split--wide {
  padding: 4rem 0;
}

.xt-pvclone-hero-split-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 12%, #fff) 0%, #fff 55%, #f8fafc 100%);
  z-index: 0;
}

.xt-pvclone-hero-split-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xt-pvclone-hero-split-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  }
}

.xt-pvclone-hero-split-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 50px -20px rgba(6, 48, 63, 0.25);
  border: 1px solid #f3f4f6;
}

.xt-pvclone-split-card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--pv-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pv-accent);
}

.xt-pvclone-hero-split-card h3 {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 1.15rem;
}

.xt-pvclone-hero-split-card .xt-pvclone-muted {
  text-align: center;
  font-size: 0.85rem;
}

.xt-pvclone-split-checks {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.xt-pvclone-split-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  color: #374151;
}

.xt-pvclone-split-checks .xt-pvclone-svg {
  color: var(--pv-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.xt-pvclone-split-card-foot {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  text-align: center;
}

.xt-pvclone-split-small {
  font-size: 0.75rem;
  margin-bottom: 0.5rem !important;
}

/* ——— Builders hero ——— */
.xt-pvclone-hero-builders {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.xt-pvclone-hero-builders-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pv-soft) 0%, color-mix(in srgb, var(--brand-secondary-light) 10%, #fff) 50%, #fff 100%);
  opacity: 1;
}

.xt-pvclone-hero-builders-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(rgba(6, 48, 63, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 48, 63, 0.4) 1px, transparent 1px);
  background-size: 40px 40px;
}

.xt-pvclone-hero-builders-inner {
  position: relative;
  z-index: 1;
}

.xt-pvclone-hero-builders-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xt-pvclone-hero-builders-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 24rem);
  }
}

.xt-pvclone-builders-h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
}

.xt-pvclone-accent-text {
  color: var(--pv-accent);
}

.xt-pvclone-builders-card-wrap {
  position: relative;
}

.xt-pvclone-builders-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 24px 48px -24px rgba(6, 48, 63, 0.3);
}

.xt-pvclone-builders-card h3 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.25rem;
}

.xt-pvclone-builders-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.xt-pvclone-builders-blob--1 {
  width: 6rem;
  height: 6rem;
  top: -1rem;
  right: -1rem;
  background: color-mix(in srgb, var(--brand-primary) 25%, transparent);
}

.xt-pvclone-builders-blob--2 {
  width: 8rem;
  height: 8rem;
  bottom: -1.5rem;
  left: -1rem;
  background: color-mix(in srgb, var(--brand-secondary-light) 28%, transparent);
}

/* SVG sizing */
.xt-pvclone-svg {
  display: inline-block;
  vertical-align: middle;
}

.xt-pvclone-svg--sm {
  width: 12px;
  height: 12px;
}

/* ——— Battery & EV (Next.js /battery, /ev-chargers clone) ——— */
.xt-solpage {
  --sol-ink: #111827;
  --sol-muted: #4b5563;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  color: var(--foreground);
}

.xt-solpage-bc {
  padding: 0.75rem 0 0;
  font-size: 0.8125rem;
}

.xt-solpage-bc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--sol-muted);
}

.xt-solpage-bc-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.45;
}

.xt-solpage-bc-list a {
  color: var(--brand-primary);
  text-decoration: none;
}

.xt-solpage-bc-list a:hover {
  text-decoration: underline;
}

.xt-solpage-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.5rem;
}

/* EVChargersClient hero layout (sizes/spacing; gradient below) */
.xt-solpage-hero--ev {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .xt-solpage-hero.xt-solpage-hero--ev {
    padding: 8rem 0;
  }
}

.xt-solpage-hero--ev .xt-container {
  max-width: 80rem;
}

.xt-solpage-hero--ev .xt-solpage-badge {
  margin: 0 0 1rem;
}

.xt-solpage-hero--ev .xt-solpage-h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.xt-solpage-hero--ev .xt-solpage-lead {
  font-size: 1.25rem;
  margin: 0 0 2rem;
  line-height: 1.625;
  max-width: none;
}

.xt-solpage-hero--ev .xt-solpage-hero-btns {
  gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .xt-solpage-hero--ev .xt-solpage-hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.xt-solpage-hero--ev .xt-solpage-hero-grid2 {
  gap: 3rem;
}

.xt-solpage-hero--battery {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 12%, #fff) 0%, color-mix(in srgb, var(--brand-secondary-light) 10%, #fff) 100%);
}

.xt-solpage-hero--ev {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-secondary-light) 12%, #fff) 0%, color-mix(in srgb, var(--brand-primary) 10%, #fff) 100%);
}

.xt-solpage-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(to right, var(--brand-secondary) 1px, transparent 1px),
    linear-gradient(to bottom, var(--brand-secondary) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.xt-solpage-hero-wrap {
  position: relative;
  z-index: 1;
}

.xt-solpage-hero-grid2 {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xt-solpage-hero-grid2 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .xt-solpage-hero:not(.xt-solpage-hero--ev) {
    padding: 4.5rem 0 5rem;
  }
}

.xt-solpage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.xt-solpage-badge--battery {
  background: color-mix(in srgb, var(--brand-primary) 18%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-badge--ev {
  background: color-mix(in srgb, var(--brand-secondary-light) 22%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-badge-ic {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.xt-solpage-h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sol-ink);
}

.xt-solpage-h1-accent {
  color: var(--brand-primary);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.xt-solpage-h1-accent--ev {
  color: var(--brand-secondary);
}

.xt-solpage-lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--sol-muted);
  max-width: 36rem;
}

.xt-solpage-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.xt-solpage-hero-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #6b7280;
  max-width: 36rem;
}

.xt-solpage-hero-aside {
  position: relative;
  min-height: 12rem;
}

.xt-solpage-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.xt-solpage-hero-blob--1 {
  width: 6rem;
  height: 6rem;
  top: -0.5rem;
  right: 0;
  background: color-mix(in srgb, var(--brand-primary) 28%, transparent);
}

.xt-solpage-hero-blob--2 {
  width: 8rem;
  height: 8rem;
  bottom: -1rem;
  left: 0;
  background: color-mix(in srgb, var(--brand-secondary-light) 30%, transparent);
}

.xt-solpage-hero-blob--ev1 {
  width: 6rem;
  height: 6rem;
  top: -0.5rem;
  right: 0;
  background: color-mix(in srgb, var(--brand-secondary-light) 35%, transparent);
}

.xt-solpage-hero-blob--ev2 {
  width: 8rem;
  height: 8rem;
  bottom: -1rem;
  left: 0;
  background: color-mix(in srgb, var(--brand-primary) 25%, transparent);
}

.xt-solpage-hero-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -20px rgba(6, 48, 63, 0.35);
}

.xt-solpage-hero-card-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand-primary) 14%, #fff);
  color: var(--brand-primary);
}

.xt-solpage-hero-card-icon--ev {
  background: color-mix(in srgb, var(--brand-secondary-light) 18%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-card-svg {
  width: 2.5rem;
  height: 2.5rem;
}

.xt-solpage-hero-card-title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.35rem;
  color: var(--sol-ink);
}

.xt-solpage-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.xt-solpage-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #374151;
}

.xt-solpage-check-ic {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--brand-primary);
}

.xt-solpage-section {
  padding: 4rem 0;
}

.xt-solpage-section--white {
  background: #fff;
}

.xt-solpage-section--muted {
  background: #f3f4f6;
}

.xt-solpage-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.xt-solpage-h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--sol-ink);
}

.xt-solpage-h3-center {
  margin: 3rem 0 1.5rem;
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--sol-ink);
}

.xt-solpage-muted {
  color: var(--sol-muted);
}

.xt-solpage-sub {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.xt-solpage-benefits {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .xt-solpage-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .xt-solpage-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.xt-solpage-benefit {
  text-align: center;
}

.xt-solpage-benefit-ic {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand-primary) 16%, #fff);
  color: var(--brand-primary);
}

.xt-solpage-benefit-ic--ev {
  background: color-mix(in srgb, var(--brand-secondary-light) 18%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-benefit-svg {
  width: 1.75rem;
  height: 1.75rem;
}

.xt-solpage-benefit-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sol-ink);
}

.xt-solpage-benefit-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--sol-muted);
}

.xt-solpage-services {
  display: grid;
  gap: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .xt-solpage-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-solpage-svc-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.xt-solpage-svc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.xt-solpage-svc-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xt-solpage-svc-icon--primary {
  background: color-mix(in srgb, var(--brand-primary) 16%, #fff);
  color: var(--brand-primary);
}

.xt-solpage-svc-icon--secondary {
  background: color-mix(in srgb, var(--brand-secondary-light) 18%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-svc-icon--accent {
  background: color-mix(in srgb, var(--brand-primary) 16%, #fff);
  color: var(--brand-primary);
}

.xt-solpage-svc-svg {
  width: 2rem;
  height: 2rem;
}

.xt-solpage-svc-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.xt-solpage-svc-badge--primary {
  background: color-mix(in srgb, var(--brand-primary) 18%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-svc-badge--secondary {
  background: color-mix(in srgb, var(--brand-secondary-light) 22%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-svc-badge--accent {
  background: color-mix(in srgb, var(--brand-primary) 18%, #fff);
  color: var(--brand-secondary);
}

/* Battery: all three service cards use the same brand-primary icon treatment */
.xt-solpage-services--battery .xt-solpage-svc-icon--secondary {
  background: color-mix(in srgb, var(--brand-primary) 16%, #fff);
  color: var(--brand-primary);
}

.xt-solpage-services--battery .xt-solpage-svc-badge--secondary {
  background: color-mix(in srgb, var(--brand-primary) 18%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-services--battery .xt-solpage-svc-features .xt-solpage-check-ic {
  color: var(--brand-primary);
}

.xt-solpage-svc-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sol-ink);
}

.xt-solpage-svc-desc {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--sol-muted);
}

.xt-solpage-svc-features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.xt-solpage-svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.xt-solpage-learn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.xt-solpage-types {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .xt-solpage-types {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-solpage-type-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.xt-solpage-type-card--battery:hover {
  border-color: color-mix(in srgb, var(--brand-primary) 35%, #e5e7eb);
}

.xt-solpage-type-card--ev:hover {
  border-color: color-mix(in srgb, var(--brand-secondary-light) 40%, #e5e7eb);
}

.xt-solpage-type-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: color-mix(in srgb, var(--brand-primary) 14%, #fff);
  color: var(--brand-primary);
}

.xt-solpage-type-icon--ev {
  background: color-mix(in srgb, var(--brand-secondary-light) 16%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-type-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.xt-solpage-type-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sol-ink);
}

.xt-solpage-type-desc {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--sol-muted);
}

.xt-solpage-type-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.xt-solpage-type-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #374151;
}

.xt-solpage-type-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  flex-shrink: 0;
}

.xt-solpage-type-dot--ev {
  background: var(--brand-secondary);
}

.xt-solpage-type-price {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-secondary);
}

.xt-solpage-mid-cta {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.xt-solpage-mid-cta--blend {
  background: linear-gradient(90deg, color-mix(in srgb, var(--brand-primary) 12%, #fff) 0%, color-mix(in srgb, var(--brand-secondary-light) 12%, #fff) 100%);
}

.xt-solpage-mid-cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--sol-ink);
}

.xt-solpage-mid-cta-text {
  margin: 0 auto 1.25rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sol-muted);
}

.xt-solpage-mid-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.xt-solpage-mid-cta-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: #6b7280;
}

.xt-solpage-highlight {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--brand-secondary-light) 25%, #bfdbfe);
  background: color-mix(in srgb, var(--brand-secondary-light) 8%, #fff);
}

@media (min-width: 768px) {
  .xt-solpage-highlight {
    flex-direction: row;
    text-align: left;
  }
}

.xt-solpage-highlight-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--brand-secondary-light) 18%, #fff);
  color: var(--brand-secondary);
}

.xt-solpage-highlight-svg {
  width: 2rem;
  height: 2rem;
}

.xt-solpage-highlight-body {
  flex: 1;
}

.xt-solpage-highlight-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sol-ink);
}

.xt-solpage-highlight-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--sol-muted);
}

.xt-solpage-highlight-stat {
  text-align: center;
  flex-shrink: 0;
}

.xt-solpage-highlight-big {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-secondary);
}

.xt-solpage-highlight-small {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--sol-muted);
}

.xt-solpage-faq-block .xt-solpage-faq-list {
  max-width: 40rem;
  margin: 0 auto;
}

.xt-solpage-faq-item {
  margin-bottom: 0.5rem;
}


.xt-sf-hero-main {
  background: #fff;
}

.xt-sf-hero-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 85vh;
}

@media (min-width: 1024px) {
  .xt-sf-hero-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.xt-sf-hero-media {
  min-height: 26rem;
  background: #e5e7eb;
}

.xt-sf-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xt-sf-hero-media-fallback {
  background: linear-gradient(135deg, #9ca3af 0%, #4b5563 100%);
}

.xt-sf-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
}

@media (min-width: 1024px) {
  .xt-sf-hero-content {
    padding: 2.3rem 3rem;
  }
}

.xt-sf-pill {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 30%, #fff);
  background: color-mix(in srgb, var(--brand-primary) 8%, #fff);
  color: var(--brand-primary);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.xt-sf-hsub {
  margin: 0;
  color: #4b5563;
  font-size: 1.02rem;
  font-weight: 500;
}

.xt-sf-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .xt-sf-feature-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-sf-feature {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.62rem 0.72rem;
  display: flex;
  gap: 0.62rem;
  align-items: flex-start;
}

.xt-sf-feature-txt {
  display: block;
}

.xt-sf-feature-txt strong {
  display: block;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.15;
  margin-bottom: 0.06rem;
  font-weight: 700;
}

.xt-sf-feature-txt span {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.15;
}

.xt-sf-feature-ic {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  flex-shrink: 0;
}

.xt-sf-feature-ic svg {
  width: 1.05rem;
  height: 1.05rem;
}

.xt-sf-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

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

.xt-sf-info-box {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.9rem;
}

.xt-sf-info-box h3 {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
}

.xt-sf-info-box p {
  margin: 0;
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.55;
}

.xt-sf-badge-row {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.xt-sf-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.24rem 0.5rem;
  font-size: 0.74rem;
  color: #374151;
  background: #f9fafb;
}

.xt-sf-badge-accent {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.xt-sf-info-box ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.82rem;
  color: #374151;
}

.xt-sf-btn-row-left {
  justify-content: flex-start;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.xt-sf-trust-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.8rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.78rem;
  color: #6b7280;
}

.xt-sf-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.xt-sf-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.xt-sf-dot-green { background: #22c55e; }
.xt-sf-dot-blue { background: #3b82f6; }
.xt-sf-dot-purple { background: #a855f7; }

.xt-sf-hero {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 45%, #f8fafc 100%);
  padding: 3rem 0;
}

.xt-sf-hero-split {
  padding: 3.5rem 0;
}

.xt-sf-hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.xt-sf-hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xt-sf-hero-grid {
    grid-template-columns: minmax(0, 1fr) 20rem;
  }
}

.xt-sf-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.xt-sf-h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  color: #111827;
}

.xt-sf-lead {
  margin: 0;
  color: #4b5563;
  font-size: 1.06rem;
  line-height: 1.6;
}

.xt-sf-lead-center {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.xt-sf-hero-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: #374151;
}

.xt-sf-section {
  padding: 4.25rem 0;
}

.xt-sf-section-muted {
  background: #f8fafc;
}

.xt-sf-head {
  text-align: center;
  margin-bottom: 2rem;
}

.xt-sf-head-left {
  text-align: left;
}

.xt-sf-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3.6vw, 2.45rem);
  color: #111827;
}

.xt-sf-head p {
  margin: 0 auto;
  max-width: 44rem;
  color: #6b7280;
  font-size: 20px;
  line-height: 1.5;
}

.xt-sf-grid-3,
.xt-sf-grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

@media (min-width: 1024px) {
  .xt-sf-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.xt-sf-shell {
  max-width: 72rem;
}

.xt-sf-card,
.xt-sf-mini-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  padding: 0.95rem;
  box-shadow: 0 10px 26px -18px rgba(0, 0, 0, 0.35);
}

.xt-sf-card {
  min-height: 580px;
  display: flex;
  flex-direction: column;
}

.xt-sf-card h3,
.xt-sf-mini-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.xt-sf-card-type {
  margin: 0 0 0.45rem;
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.xt-sf-card-tagline {
  margin: 0 0 0.75rem;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.35;
}

.xt-sf-card-image {
  height: 168px;
  border-radius: 0.35rem;
  overflow: hidden;
  margin-bottom: 0.8rem;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
}

.xt-sf-card-image img,
.xt-sf-card-image-ph {
  width: 100%;
  height: 100%;
  display: block;
}

.xt-sf-card-image img {
  object-fit: cover;
}

.xt-sf-card-image-ph {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.xt-sf-card ul {
  margin: 0 0 0.9rem;
  padding-left: 1.05rem;
  color: #374151;
  min-height: 7.5rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.xt-sf-card li {
  margin-bottom: 0.35rem;
}

.xt-sf-mini-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.45;
}

.xt-sf-mini-card {
  padding: 0.95rem 1rem;
}

.xt-sf-mini-card h3 {
  font-size: 0.93rem;
}

#applications .xt-sf-head {
  margin-bottom: 1.65rem;
}

#applications .xt-sf-center {
  margin-top: 1.45rem;
}

#applications .xt-btn.xt-btn-lg,
#applications .xt-btn.xt-btn-primary {
  min-width: 170px;
  font-size: 0.86rem;
  padding: 0.55rem 1rem;
}

.xt-sf-card .xt-btn {
  margin-top: auto;
}

.xt-sf-center {
  text-align: center;
}

.xt-sf-center h2 {
  margin: 0 0 0.75rem;
}

.xt-sf-btn-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.xt-sf-prose {
  max-width: 62rem;
}

.xt-sf-prose p {
  margin: 0 0 1rem;
  color: #374151;
  line-height: 1.75;
  font-size: 1rem;
}

.xt-sf-specs {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}

.xt-sf-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.xt-sf-spec-row:last-child {
  border-bottom: 0;
}

/* Solarfold application child pages (military/mining/etc) */
.xt-sf-app-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f766e 0%, #1f2937 100%);
}

@media (min-width: 768px) {
  .xt-sf-app-hero {
    min-height: 70vh;
  }
}

.xt-sf-app-hero-inner {
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 64rem;
}

.xt-sf-app-h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.05;
  color: #fff;
}

.xt-sf-app-sub {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
}

.xt-sf-app-main {
  background: #fff;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .xt-sf-app-main {
    padding: 5rem 0;
  }
}

.xt-sf-app-shell {
  max-width: 80rem;
}

.xt-sf-app-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .xt-sf-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.xt-sf-app-media {
  order: 2;
}

.xt-sf-app-copy {
  order: 1;
}

@media (min-width: 1024px) {
  .xt-sf-app-media {
    order: 1;
  }
  .xt-sf-app-copy {
    order: 2;
  }
}

.xt-sf-app-media img,
.xt-sf-app-media-ph {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.35);
  display: block;
}

.xt-sf-app-media-ph {
  height: 22rem;
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
}

.xt-sf-app-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.xt-sf-app-p {
  margin: 0;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.7;
}

.xt-sf-app-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.xt-sf-app-benefits {
  background: #f9fafb;
  padding: 3.5rem 0 5rem;
}

@media (min-width: 768px) {
  .xt-sf-app-benefits {
    padding: 5rem 0;
  }
}

.xt-sf-app-head {
  text-align: center;
  margin-bottom: 2rem;
}

.xt-sf-app-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: #111827;
}

.xt-sf-app-head p {
  margin: 0 auto;
  max-width: 56rem;
  color: #6b7280;
  line-height: 1.6;
}

.xt-sf-app-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .xt-sf-app-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.xt-sf-app-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease;
}

.xt-sf-app-card:hover {
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.3);
}

.xt-sf-app-card h3 {
  margin: 0;
  font-size: 1rem;
}

.xt-sf-app-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
}

.xt-sf-app-card li + li {
  margin-top: 0.5rem;
}


.xt-xc-hero {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.xt-xc-shell {
  max-width: 80rem;
}

.xt-xc-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0 1rem;
}

@media (min-width: 1024px) {
  .xt-xc-hero-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.xt-xc-hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  letter-spacing: -0.02em;
}

.xt-xc-hero p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.35;
}

.xt-xc-hero-right {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.xt-xc-pill {
  display: inline-flex;
  align-self: flex-start;
  border: 1px solid color-mix(in srgb, var(--brand-primary) 45%, #fff);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: color-mix(in srgb, var(--brand-primary) 10%, #fff);
}

.xt-xc-hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.xt-xc-main {
  background: #fff;
  padding: 0.5rem 0 4.5rem;
}

.xt-xc-desktop-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.55rem;
  overflow: hidden;
}

.xt-xc-tab {
  border: 0;
  background: #fff;
  padding: 0.52rem 0.7rem;
  font-weight: 600;
  font-size: 0.78rem;
  min-height: 2.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #111827;
}

.xt-xc-tab:not(.is-active) {
  opacity: 0.56;
}

.xt-xc-tab.is-active {
  opacity: 1;
  color: #fff;
  background: var(--brand-primary);
}

.xt-xc-tab-ic {
  display: inline-flex;
  line-height: 1;
}

.xt-xc-tab-ic svg {
  width: 0.85rem;
  height: 0.85rem;
}

.xt-xc-mobile-select-wrap {
  display: none;
  margin-bottom: 1rem;
}

.xt-xc-mobile-select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  background: #fff;
}

.xt-xc-tab-panel {
  display: none;
}

.xt-xc-tab-panel.is-active {
  display: block;
}

.xt-xc-tab-panel.is-active .xt-xc-video-card,
.xt-xc-tab-panel.is-active .xt-xc-box {
  opacity: 0;
  transform: translateY(8px);
}

.xt-xc-tab-panel.is-active.is-entered .xt-xc-video-card,
.xt-xc-tab-panel.is-active.is-entered .xt-xc-box {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 320ms ease;
}

.xt-xc-tab-panel.is-active.is-entered .xt-xc-video-card:nth-child(2),
.xt-xc-tab-panel.is-active.is-entered .xt-xc-box:nth-child(2) {
  transition-delay: 70ms;
}

.xt-xc-tab-panel.is-active.is-entered .xt-xc-video-card:nth-child(3),
.xt-xc-tab-panel.is-active.is-entered .xt-xc-box:nth-child(3) {
  transition-delay: 120ms;
}

.xt-xc-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .xt-xc-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .xt-xc-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.xt-xc-video-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.xt-xc-video-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
}

.xt-xc-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xt-xc-video-body {
  padding: 0.62rem;
}

.xt-xc-badge {
  display: inline-flex;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  font-size: 0.58rem;
  padding: 0.12rem 0.35rem;
  color: #4b5563;
  margin-bottom: 0.35rem;
}

.xt-xc-video-body h3 {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  line-height: 1.3;
}

.xt-xc-video-body p {
  margin: 0;
  font-size: 0.62rem;
  color: #6b7280;
  line-height: 1.4;
}

.xt-xc-community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .xt-xc-community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.xt-xc-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.xt-xc-box {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.8rem;
}

.xt-xc-box h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.xt-xc-box p {
  margin: 0 0 0.65rem;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.4;
}

.xt-xc-faq details {
  border-top: 1px solid #f3f4f6;
  padding: 0.45rem 0;
}

.xt-xc-faq details:first-child {
  border-top: 0;
}

.xt-xc-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
}

.xt-xc-faq details p {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
}

.xt-xc-quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .xt-xc-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.xt-xc-quick-link {
  border: 1px solid #e5e7eb;
  border-radius: 0.55rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.xt-xc-ann-item {
  border-left: 2px solid color-mix(in srgb, var(--brand-primary) 25%, #fff);
  padding-left: 0.7rem;
}

.xt-xc-ann-item + .xt-xc-ann-item {
  margin-top: 0.8rem;
}

.xt-xc-ann-date-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  min-width: 0;
}

.xt-xc-ann-date {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.125rem 0.65rem;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 500;
  color: #374151;
  background: #fff;
  white-space: nowrap;
  overflow: visible;
  max-width: none;
}

.xt-xc-ann-item h4 {
  margin: 0.2rem 0;
  font-size: 0.78rem;
}

.xt-xc-ann-item p {
  margin: 0;
  font-size: 0.64rem;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .xt-xc-desktop-tabs {
    display: none;
  }
  .xt-xc-mobile-select-wrap {
    display: block;
  }
}

/* Shared typography/spacing overrides for all cloned pages */
.xt-sf-section p,
.xt-sf-app-p,
.xt-sf-app-card li,
.xt-xc-video-body p,
.xt-xc-box p,
.xt-xc-ann-item p,
.xt-xc-faq summary,
.xt-xc-faq details p,
.xt-xc-quick-link {
  font-size: 0.9rem;
  line-height: 1.5;
}

.xt-xc-video-body h3,
.xt-xc-box h3,
.xt-xc-ann-item h4 {
  font-size: 1rem;
  line-height: 1.35;
}

.xt-xc-hero p {
  font-size: 1.05rem;
}

/* X-Classes visual parity adjustments (desktop) */
.xt-xc-hero h1 {
  font-size: clamp(2.5rem, 4.6vw, 3.4rem);
}

.xt-xc-tab {
  font-size: 0.88rem;
}

.xt-xc-video-body h3 {
  font-size: 1.02rem;
}

.xt-xc-video-body p,
.xt-xc-box p {
  font-size: 0.92rem;
}

/* Keep footer separated from page content */
.xt-xc-main,
.xt-sf-section:last-of-type,
.xt-sf-app-benefits {
  padding-bottom: 6.5rem;
}

/* ——— Amber Electric (VPP) — clone of xtechs-website /amber-electric ——— */
.xt-amber-page {
  min-height: 100vh;
  background: linear-gradient(to bottom, #eff6ff 0%, #fff 45%);
  color: #111827;
}

.xt-amber-hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-secondary);
  color: #fff;
}

.xt-amber-hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .xt-amber-hero-inner {
    padding: 8rem 1rem;
  }
}

.xt-amber-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
  border: 2px solid var(--brand-secondary-light);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
}

.xt-amber-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: #fff;
}

.xt-amber-br-mobile {
  display: block;
}

@media (min-width: 768px) {
  .xt-amber-br-mobile {
    display: none;
  }
}

.xt-amber-text-light {
  color: var(--brand-secondary-light);
}

.xt-amber-hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
}

.xt-amber-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .xt-amber-hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.xt-amber-btn-hero-a {
  background: var(--brand-secondary-light) !important;
  color: var(--brand-secondary) !important;
  border-color: transparent !important;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s;
}

.xt-amber-btn-hero-a:hover {
  background: var(--brand-primary-light) !important;
  filter: none;
  transform: scale(1.05);
  box-shadow: 0 20px 40px -12px rgba(6, 48, 63, 0.35);
}

.xt-amber-btn-hero-b {
  background: #fff !important;
  color: var(--brand-secondary) !important;
  border-color: transparent !important;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s;
}

.xt-amber-btn-hero-b:hover {
  background: color-mix(in srgb, var(--brand-secondary-light) 15%, #fff) !important;
  transform: scale(1.05);
  box-shadow: 0 20px 40px -12px rgba(6, 48, 63, 0.25);
}

.xt-amber-partnership {
  padding: 4rem 0;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--brand-secondary-light) 10%, #fff),
    color-mix(in srgb, var(--brand-secondary) 10%, #fff)
  );
}

.xt-amber-narrow {
  max-width: 56rem;
  margin: 0 auto;
}

.xt-amber-wide {
  max-width: 72rem;
  margin: 0 auto;
}

.xt-amber-center {
  text-align: center;
}

.xt-amber-h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.25rem);
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 0 1rem;
  color: #111827;
}

.xt-amber-h2--white {
  color: #fff;
}

.xt-amber-text-secondary {
  color: var(--brand-secondary);
}

.xt-amber-text-primary {
  color: var(--brand-primary);
}

.xt-amber-intro {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #374151;
  font-family: var(--font-body);
}

.xt-amber-part-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

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

.xt-amber-part-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.xt-amber-part-card--xt {
  border-left: 4px solid var(--brand-secondary);
}

.xt-amber-part-card--am {
  border-left: 4px solid var(--brand-primary);
}

.xt-amber-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 0 0.75rem;
  color: var(--brand-secondary);
}

.xt-amber-part-card--am .xt-amber-h3 {
  color: var(--brand-primary);
}

.xt-amber-h3--white {
  color: #fff;
}

.xt-amber-ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  font-family: var(--font-body);
}

.xt-amber-ul li::before {
  content: "• ";
}

.xt-amber-combined {
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
}

.xt-amber-combined .xt-amber-h3 {
  color: #fff;
}

.xt-amber-combined-p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: var(--font-body);
}

.xt-amber-section {
  padding: 4rem 0;
}

.xt-amber-mb-lg {
  margin-bottom: 4rem;
}

.xt-amber-mb-md {
  margin-bottom: 3rem;
}

.xt-amber-sub {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #4b5563;
  font-family: var(--font-body);
}

.xt-amber-benefits-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .xt-amber-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-amber-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.xt-amber-card--center {
  text-align: center;
}

.xt-amber-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.xt-amber-icon-wrap--sm {
  width: 3rem;
  height: 3rem;
  margin: 0 1rem 0 0;
  flex-shrink: 0;
}

.xt-amber-how-head .xt-amber-icon-wrap--sm {
  margin-bottom: 0;
}

.xt-amber-icon-wrap--green {
  background: #dcfce7;
  color: #16a34a;
}

.xt-amber-icon-wrap--blue {
  background: #dbeafe;
  color: #2563eb;
}

.xt-amber-icon-wrap--purple {
  background: #f3e8ff;
  color: #9333ea;
}

.xt-amber-icon-wrap--yellow {
  background: #fef9c3;
  color: #ca8a04;
}

.xt-amber-icon-wrap--mint {
  background: #dcfce7;
  color: #16a34a;
}

.xt-amber-card-ic {
  width: 2rem;
  height: 2rem;
}

.xt-amber-card-ic--sm {
  width: 1.5rem;
  height: 1.5rem;
}

.xt-amber-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin: 0 0 0.75rem;
  color: #111827;
}

.xt-amber-card-title--left {
  margin-bottom: 0;
  text-align: left;
}

.xt-amber-card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  font-family: var(--font-body);
}

.xt-amber-how-head {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.xt-amber-how-grid {
  display: grid;
  gap: 2rem;
}

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

.xt-amber-stats {
  background: var(--brand-secondary);
  color: #fff;
  padding: 4rem 0;
}

.xt-amber-stats-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .xt-amber-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-amber-stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--brand-secondary-light);
  margin-bottom: 0.5rem;
}

.xt-amber-stat-label {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
}

.xt-amber-state-box {
  background: color-mix(in srgb, var(--brand-primary-light) 20%, transparent);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.xt-amber-state-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.xt-amber-state-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .xt-amber-state-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xt-amber-state-code {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-secondary-light);
  font-family: var(--font-heading);
}

.xt-amber-state-line {
  font-size: 1.125rem;
}

.xt-amber-state-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.xt-amber-table-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.xt-amber-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.xt-amber-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  font-family: var(--font-body);
}

.xt-amber-table thead {
  background: #f9fafb;
}

.xt-amber-table th,
.xt-amber-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  vertical-align: middle;
}

.xt-amber-table th {
  font-weight: 600;
  color: #111827;
  font-family: var(--font-heading);
}

.xt-amber-th-green {
  text-align: center;
  color: #16a34a;
}

.xt-amber-th-muted {
  text-align: center;
  color: #4b5563;
}

.xt-amber-table tbody tr {
  border-top: 1px solid #e5e7eb;
}

.xt-amber-tr-alt {
  background: #f9fafb;
}

.xt-amber-td-ic {
  text-align: center;
}

.xt-amber-check {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  color: #22c55e;
}

.xt-amber-x {
  color: #ef4444;
  font-weight: 600;
}

.xt-amber-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: #fff;
}

.xt-amber-cta-lead {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
}

.xt-amber-btn-cta-a {
  background: var(--brand-primary) !important;
  color: #fff !important;
  border-color: var(--brand-primary) !important;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s;
}

.xt-amber-btn-cta-a:hover {
  background: var(--brand-primary-light) !important;
  filter: none;
  transform: scale(1.05);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.xt-amber-btn-cta-b {
  background: #fff !important;
  color: var(--brand-secondary) !important;
  border: 2px solid var(--brand-secondary-light) !important;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s;
}

.xt-amber-btn-cta-b:hover {
  background: color-mix(in srgb, var(--brand-secondary-light) 20%, #fff) !important;
  transform: scale(1.05);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.xt-amber-gift-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--brand-primary-light) 40%, transparent);
  background: color-mix(in srgb, var(--brand-primary) 30%, transparent);
  text-align: center;
}

.xt-amber-gift-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.xt-amber-gift-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
}

.xt-amber-foot {
  padding: 2rem 0 6.5rem;
  background: var(--background);
}

.xt-amber-disclaimer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.xt-amber-disclaimer-h {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--foreground);
}

.xt-amber-disclaimer-p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.xt-amber-disclaimer-small {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

/* ——— X-vrthing (ComingSoonStealthSplit clone) ——— */
.xt-xv-page {
  position: relative;
  min-height: min(100vh, 100dvh);
  color: #fff;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.xt-xv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.xt-xv-bg-photo,
.xt-xv-bg-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
}

.xt-xv-bg-fallback {
  background-image:
    linear-gradient(125deg, #0a1628 0%, #1a3a4a 40%, #0d2137 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(24, 135, 126, 0.25), transparent);
}

@media (prefers-reduced-motion: no-preference) {
  .xt-xv-bg-scale {
    animation: xt-xv-kenburns 20s linear infinite alternate;
  }
}

@keyframes xt-xv-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.xt-xv-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

.xt-xv-shell {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: min(100vh, 100dvh);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .xt-xv-shell {
    padding: 2rem 1.5rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .xt-xv-enter {
    animation: xt-xv-enter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@keyframes xt-xv-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.xt-xv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .xt-xv-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .xt-xv-col-headline {
    grid-column: span 6;
  }

  .xt-xv-divider-v {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .xt-xv-col-form {
    grid-column: span 5;
  }
}

.xt-xv-divider-v {
  display: none;
}

.xt-xv-divider-v-line {
  width: 2px;
  height: min(72vh, 520px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

@media (prefers-reduced-motion: no-preference) {
  .xt-xv-divider-v-line {
    animation: xt-xv-divgrow 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    height: 0;
  }
}

@keyframes xt-xv-divgrow {
  to {
    height: min(72vh, 520px);
  }
}

.xt-xv-h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.xt-xv-h1-line {
  display: block;
}

.xt-xv-h1-gap {
  margin-top: 1.5rem;
}

.xt-xv-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.xt-xv-sparkles {
  flex-shrink: 0;
  opacity: 0.9;
}

.xt-xv-blurb {
  margin: 0;
  max-width: 65ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
}

.xt-xv-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.xt-xv-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  overflow: hidden;
  position: relative;
}

.xt-xv-pill-text {
  padding-right: 0.25rem;
}

.xt-xv-pill-redact {
  display: inline-block;
  width: 2.5rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(6px);
  opacity: 0.7;
  border-radius: 2px;
}

.xt-xv-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.xt-xv-field-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .xt-xv-field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.xt-xv-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  margin-bottom: 0.25rem;
}

.xt-xv-label-muted {
  color: rgba(255, 255, 255, 0.7);
}

.xt-xv-input {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  box-sizing: border-box;
}

.xt-xv-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.xt-xv-input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 1px;
}

.xt-xv-check-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.xt-xv-checkbox {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: #fff;
}

.xt-xv-check-label {
  margin: 0;
  cursor: pointer;
}

.xt-xv-error {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #fca5a5;
  font-family: var(--font-body);
}

.xt-xv-captcha-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.xt-xv-captcha {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
}

.xt-xv-submit {
  align-self: flex-start;
  border-radius: 0.75rem !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #000 !important;
  border-color: transparent !important;
  padding: 0.65rem 1.25rem !important;
  font-weight: 600 !important;
  cursor: pointer;
}

.xt-xv-submit:hover:not(:disabled) {
  background: #fff !important;
}

.xt-xv-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.xt-xv-hint {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
}

.xt-xv-success {
  margin: 0;
  font-size: 0.875rem;
  color: #6ee7b7;
  font-family: var(--font-body);
}

.xt-xv-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
}

.xt-xv-social-link {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
}

.xt-xv-social-link:hover {
  text-decoration: underline;
}

.xt-xv-social-dot {
  opacity: 0.3;
}

.xt-xv-divider-h {
  grid-column: 1 / -1;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .xt-xv-divider-h {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xt-xv-bg-scale,
  .xt-xv-enter,
  .xt-xv-divider-v-line {
    animation: none !important;
  }

  .xt-xv-divider-v-line {
    height: min(72vh, 520px);
  }

  .xt-xv-enter {
    opacity: 1;
    transform: none;
  }
}

/* ——— About page clone (staging /about) ——— */
.xt-about {
  background: #fff;
  color: #202e44;
  padding: 6rem 0;
}

.xt-about-inner {
  max-width: 72rem;
}

.xt-about-head {
  text-align: center;
  margin-bottom: 4rem;
}

.xt-about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #047857;
  text-transform: uppercase;
}

.xt-about-kicker-svg {
  width: 1rem;
  height: 1rem;
}

.xt-about-underline {
  width: 6rem;
  height: 0.25rem;
  margin: 0 auto 1.5rem;
  background: #047857;
  border-radius: 999px;
}

.xt-about-head h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #202e44;
}

.xt-about-intro {
  margin: 0 auto;
  max-width: 44rem;
  color: rgba(32, 46, 68, 0.82);
  line-height: 1.7;
}

.xt-about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .xt-about-services-grid {
    grid-template-columns: 1fr minmax(0, 1.2fr) 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.xt-about-col {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.xt-about-service {
  position: relative;
}

.xt-about-service-head {
  display: grid;
  grid-template-columns: 2.85rem minmax(0, 1fr);
  align-items: start;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.xt-about-service-ic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.85rem;
  width: 2.85rem;
  height: 2.85rem;
  min-width: 2.85rem;
  min-height: 2.85rem;
  aspect-ratio: 1 / 1;
  border-radius: 0.65rem;
  box-sizing: border-box;
  overflow: visible;
  color: #0f766e;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.1) 0%, rgba(15, 118, 110, 0.07) 100%);
  border: 1px solid rgba(15, 118, 110, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.xt-about-service-svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 1.3rem;
  display: block;
}

.xt-about-service-ic-mini {
  position: absolute;
  top: -0.32rem;
  left: -0.32rem;
  width: 0.9rem;
  height: 0.9rem;
  display: grid;
  place-items: center;
  color: rgba(15, 118, 110, 0.48);
  pointer-events: none;
}

.xt-about-mini-svg {
  width: 0.82rem;
  height: 0.82rem;
  display: block;
}

.xt-about-service h3 {
  margin: 0;
  padding-top: 0.06rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #202e44;
  transition: color 0.2s;
}

.xt-about-service p {
  margin: 0;
  padding-left: 3.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(32, 46, 68, 0.82);
}

.xt-about-service-more {
  margin-top: 0.75rem;
  padding-left: 3.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}

.xt-about-more-svg {
  width: 0.75rem;
  height: 0.75rem;
}

.xt-about-service-link {
  position: absolute;
  inset: -0.5rem;
  border-radius: 1rem;
  text-indent: -9999px;
  overflow: hidden;
}

.xt-about-service:hover .xt-about-service-more {
  opacity: 1;
}

.xt-about-service:hover .xt-about-service-ic {
  background: #52b69a;
  border-color: #52b69a;
  color: #05305f;
}

.xt-about-service:hover h3 {
  color: #047857;
}

.xt-about-team-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.xt-about-team-media {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
  border: none;
  padding: 0;
  cursor: zoom-in;
}

.xt-about-team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xt-about-team-hint {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.6875rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 0.25rem;
  padding: 0.2rem 0.45rem;
  color: #334155;
}

.xt-about-team-copy {
  padding: 1.5rem 1.5rem 1.75rem;
}

.xt-about-team-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.xt-about-team-copy p {
  margin: 0;
  color: rgba(32, 46, 68, 0.82);
  line-height: 1.7;
}

.xt-about-stats {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 640px) {
  .xt-about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .xt-about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.xt-about-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.xt-about-stat:hover {
  transform: translateY(-4px);
  background: #fff;
}

.xt-about-stat-ic {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 46, 68, 0.05);
  color: #047857;
  transition: background 0.2s;
}

.xt-about-stat:hover .xt-about-stat-ic {
  background: rgba(4, 120, 87, 0.1);
}

.xt-about-stat-svg {
  width: 1.75rem;
  height: 1.75rem;
}

.xt-about-stat-value {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #202e44;
}

.xt-about-stat-rule {
  width: 2.5rem;
  height: 2px;
  border-radius: 999px;
  background: #047857;
  margin: 0.75rem auto 0;
  transition: width 0.2s;
}

.xt-about-stat:hover .xt-about-stat-rule {
  width: 4rem;
}

.xt-about-stat-label {
  margin: 0.2rem 0 0;
  font-size: 0.875rem;
  color: rgba(32, 46, 68, 0.72);
}

.xt-about-values {
  margin-top: 5rem;
}

.xt-about-values h2 {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #111827;
}

.xt-about-values-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .xt-about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .xt-about-values-grid--top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .xt-about-values-grid--bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
  }
}

.xt-about-values-grid--bottom .xt-about-value-card {
  justify-self: center;
}

.xt-about-value-ic {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  color: #047857;
}

.xt-about-value-svg {
  width: 2rem;
  height: 2rem;
}

.xt-about-value-card h3 {
  margin-top: 1rem;
}

/* Reveal */
.xt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--xt-reveal-delay, 0ms);
}

.xt-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.xt-about-modal[hidden] {
  display: none;
}

.xt-about-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.xt-about-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.xt-about-modal-inner {
  position: relative;
  max-width: 72rem;
  max-height: 90vh;
  width: 100%;
  z-index: 1;
}

.xt-about-modal-img {
  width: 100%;
  height: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #f1f5f9;
  border-radius: 0.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.xt-about-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
}

.xt-about-value-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  text-align: center;
}

/* Prevent "sticking" at small widths */
@media (max-width: 1023.98px) {
  .xt-about-values-grid {
    gap: 1.75rem;
  }
}

/* Hover wiggle like Next (ServiceItem icon) */
@keyframes xt-about-wiggle {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(-10deg); }
  35% { transform: rotate(10deg); }
  55% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
  100% { transform: rotate(0deg); }
}

.xt-about-service:hover .xt-about-service-ic {
  animation: xt-about-wiggle 0.5s ease-in-out;
}

.xt-about-value-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

.xt-about-value-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4b5563;
}

.xt-about-cta {
  margin-top: 4rem;
  background: #202e44;
  color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .xt-about-cta {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.xt-about-cta h2 {
  margin: 0 0 0.45rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.xt-about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* ——— Contact page clone (staging /contact) ——— */
.xt-contact {
  min-height: 100vh;
  padding: 1.5rem 0 3rem;
  background: #fff;
  font-family: var(--font-body);
}

.xt-contact p,
.xt-contact span,
.xt-contact li,
.xt-contact label,
.xt-contact input,
.xt-contact select,
.xt-contact textarea,
.xt-contact button {
  font-family: var(--font-body);
}

.xt-contact h1,
.xt-contact h2,
.xt-contact h3,
.xt-contact h4 {
  font-family: var(--font-heading);
}

.xt-contact-inner {
  max-width: 80rem;
}

.xt-contact-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.xt-contact-head h1 {
  margin: 0 0 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
}

.xt-contact-head p {
  margin: 0 auto;
  max-width: 48rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4b5563;
}

.xt-contact-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

/* Match original Contact tab layout: no "Get in Touch" hero block */
.xt-contact.is-contact-tab .xt-contact-head {
  display: none;
}

.xt-contact.is-contact-tab .xt-contact-tabs {
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.xt-contact-tab {
  appearance: none;
  border: 0;
  background: #fff;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.xt-contact-tab-ic {
  width: 1rem;
  height: 1rem;
}

.xt-contact-tab.is-active {
  background: rgba(82, 182, 154, 0.22);
  color: #111827;
}

.xt-contact-booking-card {
  max-width: 72rem;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.xt-contact-step {
  margin-top: 1.25rem;
  background: rgba(82, 182, 154, 0.12);
  border: 1px solid rgba(82, 182, 154, 0.45);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.xt-contact-step-title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.xt-contact-step-ic {
  width: 1rem;
  height: 1rem;
  color: #111827;
}

.xt-contact-booking-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

.xt-contact-booking-card > p {
  margin: 0 0 1.5rem;
  color: #6b7280;
  text-align: center;
}

.xt-contact-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0.65rem;
}

@media (min-width: 640px) {
  .xt-contact-dates {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .xt-contact-dates {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .xt-contact-dates {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.xt-contact-date {
  appearance: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  min-height: 4.75rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.xt-contact-date:hover {
  background: rgba(82, 182, 154, 0.18);
  border-color: rgba(82, 182, 154, 0.75);
  color: #05305f;
}

.xt-contact-date.is-selected {
  background: #1a877e;
  border-color: #1a877e;
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 135, 126, 0.25);
}

.xt-contact-date-dow {
  font-size: 0.875rem;
  font-weight: 600;
}

.xt-contact-date-dm {
  font-size: 0.8125rem;
}

.xt-contact-date-today {
  font-size: 0.625rem;
  color: #1a877e;
  font-weight: 600;
}

.xt-contact-date.is-today {
  background: rgba(82, 182, 154, 0.22);
  border-color: rgba(82, 182, 154, 0.6);
  color: #0f172a;
}

.xt-contact-date.is-selected .xt-contact-date-today {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact tab (Contact2) */
.xt-contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .xt-contact-form-wrap {
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
  }
}

.xt-contact-left h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #0f172a;
}

.xt-contact-left p {
  margin: 0 0 1.5rem;
  color: #6b7280;
}

.xt-contact-logo-block {
  text-align: center;
  margin: 2.5rem 0;
}

.xt-contact-logo {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.75rem;
}

.xt-contact-quote {
  margin: 0;
  font-size: 0.75rem;
  font-style: italic;
  color: #6b7280;
}

.xt-contact-details h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.xt-contact-details ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #0f172a;
  font-size: 0.875rem;
}

.xt-contact-details a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.xt-contact-right {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  padding: 1.5rem;
}

.xt-contact-form2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.xt-contact-upload-title {
  margin: 0 0 0.25rem;
  font-weight: 800;
  color: #0f172a;
}

.xt-contact-upload-sub {
  margin: 0 0 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.xt-contact-upload ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  color: #6b7280;
  font-size: 0.75rem;
}

.xt-contact-file-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.xt-contact-file-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  background: #0f766e;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
}

.xt-contact-file-btn input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.xt-contact-file-name {
  font-size: 0.75rem;
  color: #6b7280;
}

.xt-contact-send {
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  background: #1a877e;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.xt-contact-send:hover:not(:disabled) {
  background: #166d66;
}

.xt-contact-send:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.xt-contact-form-msg {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.xt-contact-turnstile {
  margin-top: 0.5rem;
}

.xt-contact-times {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0.65rem;
}

@media (min-width: 640px) {
  .xt-contact-times {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .xt-contact-times {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.xt-contact-time {
  appearance: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  padding: 0.5rem 0.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.xt-contact-time:hover {
  background: rgba(82, 182, 154, 0.18);
  border-color: rgba(82, 182, 154, 0.75);
  color: #05305f;
}

.xt-contact-time.is-selected {
  background: #1a877e;
  border-color: #1a877e;
  color: #fff;
}

.xt-contact-form {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.xt-contact-form-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .xt-contact-form-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

.xt-contact-field {
  display: grid;
  gap: 0.35rem;
}

.xt-contact-field > span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111827;
}

.xt-contact-field input,
.xt-contact-field textarea,
.xt-contact-field select {
  width: 100%;
  border: 1px solid rgba(82, 182, 154, 0.55);
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  background: #f3f4f6;
}

.xt-contact-field textarea {
  resize: vertical;
}

.xt-contact-field input:focus,
.xt-contact-field textarea:focus,
.xt-contact-field select:focus {
  outline: none;
  border-color: rgba(26, 135, 126, 0.75);
  box-shadow: 0 0 0 3px rgba(82, 182, 154, 0.18);
}

.xt-contact-note {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.75rem;
  background: rgba(82, 182, 154, 0.16);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(82, 182, 154, 0.35);
}

.xt-contact-note-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #1a877e;
}

.xt-contact-note-title {
  margin: 0;
  font-weight: 700;
  color: #05305f;
  font-size: 0.875rem;
  font-family: var(--font-body);
}

.xt-contact-note-body {
  margin: 0.25rem 0 0;
  color: #05305f;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: var(--font-body);
}

.xt-contact-captcha {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.xt-contact-captcha-title {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
}

.xt-contact-captcha-desc {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.xt-contact-submit {
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  background: #1a877e;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  opacity: 1;
}

.xt-contact-submit:hover:not(:disabled) {
  filter: brightness(0.95);
}

.xt-contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

