:root {
  --blue: #0f5eff;
  --blue-dark: #061a3d;
  --black: #020713;
  --white: #ffffff;
  --yellow: #f5a623;
  --soft-blue: #eef5ff;
  --gray: #687187;
  --line: #dce4f2;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - var(--max-width)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  z-index: 1;
  height: 5px;
  background: rgba(220, 228, 242, 0.72);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--yellow), #ffd27a, var(--blue));
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.55);
  transition: width 80ms linear;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.header-note {
  margin: 0 auto 0 6px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 700;
}

.header-note span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--blue-dark);
  font-weight: 700;
  border-radius: 8px;
}

.language-switch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 40px;
  width: auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 26, 61, 0.18);
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--soft-blue);
  color: var(--blue);
}

.site-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  background: var(--black);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}.page-hero h1{
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.eyebrow,
.section-label,
.package-label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(2, 7, 19, 0.82);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 22px;
  width: fit-content;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(6, 26, 61, 0.16);
}

.button.primary {
  border-color: #c98212;
  background: var(--yellow);
  color: var(--black);
}

.button.secondary {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue-dark);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(6, 26, 61, 0.22);
}

.section,
.page-hero {
  padding: 76px max(24px, calc((100vw - var(--max-width)) / 2));
}

.page-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--blue-dark));
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #d8e6ff;
  font-size: 1.12rem;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.service-highlight-panel {
  display: grid;
  gap: 14px;
}

.service-highlight-panel div {
  padding: 18px;
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.service-highlight-panel strong,
.service-highlight-panel span {
  display: block;
}

.service-highlight-panel span {
  margin-top: 4px;
  color: #d8e6ff;
}

.intro-grid,
.add-ons {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 42px;
  align-items: start;
}.intro-grid h2,
.section-heading h2,
.add-ons h2{
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.intro-grid p:last-child,
.section-heading p {
  margin: 0;
  color: var(--gray);
  font-size: 1.08rem;
}.pricing-grid,
.faq-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}.price-card,
.faq-grid article,
.contact-form,
.contact-card,
.add-on-grid article{
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(6, 26, 61, 0.08);
}

.demo-next-steps {
  background: var(--soft-blue);
}.faq-item{
  padding: 24px;
}

.faq-grid {
  grid-template-columns: 1fr;
}

.faq-section {
  display: grid;
  gap: 30px;
}

.faq-topic {
  display: grid;
  gap: 16px;
}

.faq-topic-heading {
  display: grid;
  gap: 8px;
}

.faq-topic-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.faq-item {
  overflow: hidden;
  cursor: pointer;
}

.faq-question {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.75rem;
  line-height: 0.8;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    transform 280ms ease;
  will-change: max-height, opacity, transform;
}

.faq-answer.open {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 12px 0 0;
  color: var(--gray);
}

.faq-answer p:empty::before {
  content: "Answer coming soon.";
  color: var(--gray);
  font-style: italic;
}

html.language-spanish .faq-answer p:empty::before {
  content: "Respuesta proximamente.";
}

.price-card p,
.contact-card p,
.contact-detail span{
  color: var(--gray);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.check-list p {
  text-align: left;
  margin: 0;
  padding: 14px;
  border-left: 4px solid var(--yellow);
  background: #071225;
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list strong {
  color: var(--yellow);
  line-height: 1.2;
}

.check-list span {
  margin-top: 5px;
  color: #d8e6ff;
  font-size: 0.94rem;
  line-height: 1.35;
}

.pricing-grid {
  grid-template-columns: repeat(6, 1fr);
}

.package-preview-grid .price-card {
  grid-column: span 3;
}

.package-preview-grid .price-card:nth-child(1),
.package-preview-grid .price-card:nth-child(2) {
  grid-column: span 3;
}

.coming-soon-card {
  border-style: dashed;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.9)),
    radial-gradient(circle at 86% 16%, rgba(245, 166, 35, 0.16), transparent 10rem);
}

.packages-section {
  display: grid;
  gap: 28px;
}

.packages-heading {
  text-align: center;
}

.packages-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
}

.packages-heading p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--gray);
  font-size: 1.12rem;
}

.financing-callout {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 800;
}

.monthly-note {
  max-width: 760px;
  font-weight: 800;
  color: var(--blue-dark) !important;
}

.not-sure-note,
.package-faq-link {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--blue-dark) !important;
  font-weight: 800;
}

.package-faq-link a {
  color: var(--blue);
  font-weight: 900;
}

.package-fit {
  margin: 8px 0 12px;
  padding: 8px 10px;
  border-left: 4px solid var(--yellow);
  border-radius: 10px;
  background: #fff8e6;
  color: var(--blue-dark) !important;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
}

.best-seller {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--black) !important;
  font-size: 0.85rem;
  font-weight: 800;
  text-shadow:
    0 0 8px rgba(245, 166, 35, 0.95),
    0 0 18px rgba(245, 166, 35, 0.85),
    0 0 30px rgba(245, 166, 35, 0.65);
}

.pricing-grid .price-card {
  grid-column: span 2;
}

.pricing-grid .price-card:nth-child(1) {
  grid-column: 2 / 4;
}

.pricing-grid .price-card:nth-child(2) {
  grid-column: 4 / 6;
}

.price-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card:hover {
  transform: scale(1.025);
  box-shadow: 0 28px 70px rgba(6, 26, 61, 0.16);
}.price-card .button{
  align-self: center;
  margin-top: auto;
}

.service-estimate-button {
  margin-top: 18px;
}

.price-card .button:hover {
  animation: button-shake 360ms ease;
}

.pricing-grid .price-card:nth-child(1) .button,
.pricing-grid .price-card:nth-child(2) .button {
  border-color: var(--yellow);
  box-shadow:
    0 0 0 1px rgba(245, 166, 35, 0.25),
    0 0 18px rgba(245, 166, 35, 0.6),
    0 12px 28px rgba(6, 26, 61, 0.18);
}

.pricing-grid .price-card:nth-child(1) .button:hover,
.pricing-grid .price-card:nth-child(2) .button:hover {
  box-shadow:
    0 0 0 2px rgba(245, 166, 35, 0.35),
    0 0 28px rgba(245, 166, 35, 0.85),
    0 16px 36px rgba(6, 26, 61, 0.22);
}

.pricing-grid .price-card:nth-child(1) .best-seller,
.pricing-grid .price-card:nth-child(2) .best-seller {
  align-self: center;
}

@keyframes button-shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-1.6deg);
  }
  50% {
    transform: rotate(1.6deg);
  }
  75% {
    transform: rotate(-0.6deg);
  }
}

.price-card h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 3.5rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 20px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.page-hero .eyebrow,
.price-card .package-label,
.add-ons .section-label,
.timeline-diagram-section .section-label {
  color: #9fc4ff !important;
  -webkit-text-fill-color: #9fc4ff;
}

.price-card .package-label.yellow-package {
  color: var(--yellow) !important;
  -webkit-text-fill-color: var(--yellow);
}

.add-on-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.add-ons {
  grid-template-columns: 1fr;
}

.add-ons-heading {
  text-align: center;
}

.add-ons-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
}

.add-ons-heading p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--gray);
  font-size: 1.12rem;
}

.add-on-grid article {
  padding: 20px;
}

.addon-preview-trigger {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.addon-preview-trigger:hover,
.addon-preview-trigger:focus {
  outline: none;
  border-color: rgba(245, 166, 35, 0.58);
  box-shadow: 0 24px 58px rgba(6, 26, 61, 0.14), 0 0 0 3px rgba(245, 166, 35, 0.12);
  animation: button-shake 360ms ease;
}

.add-on-grid h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
}

.addon-price {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff8e6;
  color: var(--blue-dark);
  font-size: 0.92rem;
}

.add-on-grid p {
  margin: 0;
  color: var(--gray);
}.timeline-diagram-section{
  background: var(--black);
}

.timeline-diagram-section .section-heading h2,
.process-section .section-heading h2 {
  color: var(--white);
}

.timeline-diagram-section .section-heading p,
.process-section .section-heading p {
  color: #d8e6ff;
}

.timeline-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-diagram::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 8%;
  left: 8%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
}

.timeline-diagram article {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #071225;
}

.timeline-diagram span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
}

.timeline-diagram h3,
.timeline-diagram strong {
  display: block;
  margin: 0;
  color: var(--white);
}

.timeline-diagram strong {
  margin-top: 6px;
  color: var(--yellow);
}

.timeline-diagram p {
  margin: 14px 0 0;
  color: #d8e6ff;
}.process-detail-grid{
  display: grid;
  gap: 24px;
}.process-detail-grid h2{
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.05;
}.process-detail-grid p:not(.section-label){
  color: var(--gray);
  font-size: 1.05rem;
}

.process-detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-detail-grid article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(6, 26, 61, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-detail-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(6, 26, 61, 0.14), 0 0 0 1px rgba(245, 166, 35, 0.18);
}

.process-detail-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(245, 166, 35, 0.22), transparent 9rem);
  transition: opacity 180ms ease;
}

.process-detail-grid article:hover::before {
  opacity: 1;
}

.demo-next-steps .section-label {
  color: var(--yellow) !important;
  -webkit-text-fill-color: var(--yellow);
}

.floating-faq {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  padding: 13px 18px;
  border: 2px solid rgba(245, 166, 35, 0.65);
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--yellow);
  box-shadow: 0 18px 44px rgba(6, 26, 61, 0.24), 0 0 24px rgba(245, 166, 35, 0.18);
}

.floating-faq:hover,
.floating-faq.active {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 20px 52px rgba(6, 26, 61, 0.28), 0 0 30px rgba(245, 166, 35, 0.34);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.design-layout {
  background: var(--soft-blue);
}

.contact-form,
.design-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
}

.design-form {
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(6, 26, 61, 0.08);
}

fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 8px;
  color: var(--blue-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.fieldset-note {
  margin: 0;
  color: var(--gray);
  font-weight: 700;
}

.form-grid,
.color-choice-grid,
.checkbox-grid {
  display: grid;
  gap: 18px;
}

.form-grid {
  grid-template-columns: repeat(2, 1fr);
}

.color-choice-grid {
  grid-template-columns: repeat(4, 1fr);
}

.checkbox-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  font-weight: 700;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.contact-form .button,
.form-actions,
.form-note {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.form-actions .button {
  min-width: 150px;
}

.form-actions .button.primary {
  margin-right: auto;
}

.form-actions [data-clear-form] {
  min-width: auto;
  min-height: 30px;
  margin-left: auto;
  padding: 5px 9px;
  border-color: #d71920;
  background: var(--white);
  color: #a81218;
  box-shadow: none;
  font-size: 0.78rem;
}

.form-actions [data-clear-form]:hover {
  background: #fff4f4;
  box-shadow: 0 8px 18px rgba(215, 25, 32, 0.14);
}

label {
  color: var(--blue-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--black);
  background: var(--white);
}

input[type="color"] {
  min-height: 54px;
  padding: 6px;
}

.native-select-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  width: 100%;
  z-index: 4;
}

.custom-select.open {
  z-index: 30;
}

.custom-select-button {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 12px 44px 12px 14px;
  border: 1px solid rgba(15, 94, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 10px 24px rgba(6, 26, 61, 0.06);
  color: var(--blue-dark);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.custom-select-button::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.custom-select.open .custom-select-button,
.custom-select-button:hover {
  border-color: rgba(245, 166, 35, 0.64);
  background: linear-gradient(180deg, #ffffff, #fff8e6);
  box-shadow: 0 16px 34px rgba(245, 166, 35, 0.15), 0 12px 28px rgba(6, 26, 61, 0.08);
}

.custom-select.open .custom-select-button::after {
  transform: translateY(-35%) rotate(225deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  max-height: 0;
  padding: 0 8px;
  overflow: hidden;
  border: 1px solid rgba(15, 94, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.14), transparent 10rem),
    #ffffff;
  box-shadow: 0 22px 54px rgba(6, 26, 61, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: top center;
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 260ms ease,
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 260ms;
}

.custom-select.open .custom-select-options {
  max-height: 280px;
  padding: 8px;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.custom-select.has-multiple-selected .custom-select-button span {
  display: block;
}

.custom-select.has-multiple-selected .custom-select-button::before {
  content: attr(data-selected-count);
  position: absolute;
  right: 42px;
  left: 14px;
  bottom: 5px;
  overflow: hidden;
  color: rgba(6, 26, 61, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select.has-multiple-selected .custom-select-button {
  padding-bottom: 21px;
}

.custom-select-options button {
  position: relative;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--blue-dark);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.custom-select.multiple-select .custom-select-options button {
  padding-left: 34px;
}

.custom-select.multiple-select .custom-select-options button::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(15, 94, 255, 0.32);
  border-radius: 4px;
  transform: translateY(-50%);
}

.custom-select.multiple-select .custom-select-options button.selected::before {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: inset 0 0 0 3px #fff8e6;
}

.custom-select-options button:hover,
.custom-select-options button:focus,
.custom-select-options button.selected {
  outline: none;
  background: #fff8e6;
  color: var(--black);
  transform: translateX(2px);
}

input[type="color"].color-unselected {
  background: var(--white);
}

input[type="color"].color-unselected::-webkit-color-swatch {
  background:
    linear-gradient(135deg, transparent 0 calc(50% - 1px), #d71920 calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px) 100%),
    var(--white);
}

input[type="color"].color-unselected::-moz-color-swatch {
  background:
    linear-gradient(135deg, transparent 0 calc(50% - 1px), #d71920 calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px) 100%),
    var(--white);
}

.clear-color {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.clear-color:hover {
  border-color: var(--blue);
}

input[type="checkbox"] {
  width: auto;
  min-height: auto;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 94, 255, 0.18);
  border-color: var(--blue);
}

.form-note {
  margin: 0;
  color: var(--gray);
  font-size: 0.94rem;
}

.contact-card {
  padding: 28px;
}

.contact-card img {
  width: 120px;
  border-radius: 50%;
}

.contact-card h2 {
  margin: 18px 0 4px;
  color: var(--blue-dark);
}

.contact-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-detail strong,
.contact-detail span {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 32px max(24px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--black);
}

.site-footer div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
}

.site-footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.site-footer p {
  margin: 0;
  color: #d8e6ff;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 19, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(2, 7, 19, 0.35);
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms ease;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.modal.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel h2 {
  grid-column: 1 / -1;
  margin: 0 0 20px;
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
}

.modal-panel > .section-label {
  grid-column: 1 / -1;
  width: fit-content;
  margin-bottom: 0;
}

.estimate-modal-panel {
  width: min(1120px, 100%);
  grid-template-columns: 1fr;
}

.addon-preview-panel {
  width: min(980px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.addon-preview-copy {
  display: grid;
  gap: 12px;
}

.addon-preview-copy h2 {
  grid-column: auto;
  margin-bottom: 0;
}

.addon-preview-copy > p:not(.package-details-price) {
  margin: 0;
  color: var(--gray);
  font-size: 1.05rem;
}

.addon-preview-visual {
  min-height: 330px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 12%, rgba(245, 166, 35, 0.28), transparent 11rem),
    linear-gradient(135deg, #061a3d, #102a5f);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 24px 58px rgba(6, 26, 61, 0.16);
}

.preview-browser {
  height: 100%;
  min-height: 292px;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(2, 7, 19, 0.26);
}

.preview-browser-bar {
  display: flex;
  gap: 6px;
  padding: 12px;
  background: #eef5ff;
}

.preview-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

.preview-browser-bar span:nth-child(2) {
  background: #9fc4ff;
}

.preview-browser-bar span:nth-child(3) {
  background: #071225;
}

.preview-mock {
  display: grid;
  gap: 13px;
  padding: 24px;
}

.preview-mock strong {
  color: var(--blue-dark);
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1;
}

.preview-mock button,
.mock-form-card button,
.mock-calendar button,
.mock-newsletter button,
.mock-signup button,
.mock-linkhub button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.mock-form-card,
.mock-newsletter,
.mock-signup,
.mock-calendar,
.mock-faq,
.mock-linkhub,
.mock-accessibility,
.mock-custom {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(15, 94, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.mock-form-card span,
.mock-signup span,
.mock-newsletter span,
.mock-accessibility span,
.mock-custom span {
  display: block;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid #dce4f2;
  border-radius: 10px;
  background: #ffffff;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 800;
}

.mock-form-card .large {
  min-height: 62px;
}

.mock-side-note,
.mock-confirm,
.mock-caption,
.mock-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 14px;
  background: #071225;
  color: var(--yellow);
  font-weight: 900;
  text-align: center;
}

.mock-side-note b {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
}

.mock-gallery-grid,
.mock-catalog-grid,
.mock-files,
.mock-review-row {
  display: grid;
  gap: 10px;
}

.mock-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mock-gallery-grid i,
.mock-catalog-grid i,
.mock-custom i {
  min-height: 76px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.28), transparent 45%),
    linear-gradient(145deg, #eef5ff, #ffffff);
  border: 1px solid rgba(15, 94, 255, 0.12);
}

.mock-gallery-grid i:nth-child(2n),
.mock-catalog-grid i:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(15, 94, 255, 0.18), transparent 45%),
    linear-gradient(145deg, #fff8e6, #ffffff);
}

.mock-catalog-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mock-catalog-grid i {
  display: grid;
  place-items: end start;
  padding: 10px;
  color: var(--blue-dark);
  font-style: normal;
}

.mock-calendar div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mock-calendar span {
  padding: 8px;
  border-radius: 10px;
  background: #eef5ff;
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
}

.mock-review-card {
  padding: 18px;
  border-radius: 18px;
  background: #071225;
  color: #ffffff;
}

.mock-review-card b {
  color: var(--yellow);
  font-size: 1.4rem;
}

.mock-review-card p {
  color: #d8e6ff;
}

.mock-review-row {
  grid-template-columns: repeat(3, 1fr);
}

.mock-review-row i {
  min-height: 52px;
  border-radius: 14px;
  background: #fff8e6;
}

.mock-faq button {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue-dark);
}

.mock-files {
  grid-template-columns: repeat(3, 1fr);
}

.mock-files i {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 115px;
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-style: normal;
}

.mock-files b {
  display: grid;
  place-items: center;
  width: 54px;
  height: 62px;
  border-radius: 8px 8px 14px 8px;
  background: var(--yellow);
  color: var(--black);
}

.mock-page-lines {
  display: grid;
  gap: 12px;
}

.mock-page-lines i {
  height: 18px;
  border-radius: 999px;
  background: #dfe9f8;
}

.mock-page-lines i:nth-child(2) {
  width: 78%;
}

.mock-page-lines i:nth-child(3) {
  width: 58%;
}

.mock-language {
  display: grid;
  gap: 12px;
}

.mock-language > button {
  background: #eef5ff;
  color: var(--blue-dark);
}

.mock-language div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-language b,
.mock-language span {
  display: grid;
  place-items: center;
  min-height: 78px;
  border-radius: 16px;
  background: #071225;
  color: var(--yellow);
  font-size: 1.4rem;
}

.mock-language span {
  background: #fff8e6;
  color: var(--blue-dark);
}

.mock-linkhub button {
  width: 100%;
}

.mock-custom div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.estimate-modal-panel .estimate-intro {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  color: var(--gray);
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.modal-contact-card {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(6, 26, 61, 0.08);
}

.modal-contact-card h3 {
  margin: 18px 0 4px;
  color: var(--blue-dark);
  font-size: 1.5rem;
}

.modal-contact-card img {
  width: 120px;
  border-radius: 50%;
}

.modal-contact-card p {
  margin: 0;
  color: var(--gray);
}

.summary-panel {
  grid-template-columns: 1fr;
}

.summary-content {
  display: grid;
  gap: 12px;
}

.summary-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.summary-item strong,
.summary-item span {
  display: block;
}

.summary-item strong {
  color: var(--blue-dark);
}

.summary-item span {
  margin-top: 4px;
  color: var(--gray);
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 880px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    justify-self: end;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(6, 26, 61, 0.10);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    z-index: 95;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(15, 94, 255, 0.14);
    border-radius: 18px;
    background:
      radial-gradient(circle at top right, rgba(245, 166, 35, 0.16), transparent 12rem),
      var(--white);
    box-shadow: 0 24px 70px rgba(6, 26, 61, 0.22);
  }

  .site-nav a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    text-align: center;
  }

  .header-note {
    display: none;
  }

  .site-nav.open {
    display: flex;
  }.intro-grid,
.add-ons,
.contact-layout,
.services-hero,
.process-detail-grid{
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .service-highlight-panel {
    max-width: none;
  }.faq-grid,
.pricing-grid,
.add-on-grid,
.check-list,
.timeline-diagram{
    grid-template-columns: 1fr;
  }

  .pricing-grid .price-card,
  .pricing-grid .price-card:nth-child(1),
  .pricing-grid .price-card:nth-child(2) {
    grid-column: auto;
  }

  .timeline-diagram::before {
    top: 24px;
    bottom: 24px;
    left: 45px;
    width: 4px;
    height: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .modal-form {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .addon-preview-panel {
    grid-template-columns: 1fr;
  }

  .addon-preview-visual {
    min-height: 250px;
    padding: 12px;
  }

  .preview-browser {
    min-height: 230px;
  }

  .form-grid,
  .color-choice-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {.page-hero h1{
    font-size: 2.35rem;
  }

  .brand span {
    font-size: 0.98rem;
  }.hero-actions .button{
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

/* Friendlier visual refresh */
body {
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.13), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(15, 94, 255, 0.10), transparent 24rem),
    #fbfdff;
}

.site-header {
  border-bottom: 0;
  box-shadow: 0 10px 34px rgba(6, 26, 61, 0.08);
}

.brand img {
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.18);
}

.site-nav a {
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(245, 166, 35, 0.16);
  color: var(--blue-dark);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--blue), #4f8fff);
  box-shadow: 0 10px 24px rgba(15, 94, 255, 0.20);
}.page-hero::before{
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}.page-hero > *,
.services-hero > *{
  position: relative;
  z-index: 1;
}.page-hero h1{
  letter-spacing: -0.02em;
}

.button {
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--yellow), #ffd56d);
}

.button.secondary {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.button:hover {
  transform: translateY(-3px) rotate(-0.4deg);
}

.section,
.page-hero {
  position: relative;
}

.page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(245, 166, 35, 0.30), transparent 20rem),
    linear-gradient(135deg, #04132c, #0c3475);
}

.page-hero::before {
  width: 210px;
  height: 210px;
  right: -60px;
  bottom: -80px;
  border: 34px solid rgba(255, 255, 255, 0.07);
}

.eyebrow,
.section-label,
.package-label {
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(6, 26, 61, 0.12);
}.price-card,
.faq-grid article,
.contact-form,
.contact-card,
.add-on-grid article,
.design-form,
.modal-panel,
.modal-contact-card{
  border-color: rgba(15, 94, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(6, 26, 61, 0.09);
}.price-card,
.add-on-grid article{
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}.add-on-grid article:hover{
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.45);
  box-shadow: 0 24px 58px rgba(6, 26, 61, 0.13);
}.timeline-diagram span{
  box-shadow: 0 10px 20px rgba(245, 166, 35, 0.28);
}

.demo-next-steps,
.design-layout {
  background:
    linear-gradient(135deg, rgba(238, 245, 255, 0.96), rgba(255, 248, 232, 0.76)),
    var(--soft-blue);
}

.check-list p {
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(7, 18, 37, 0.98), rgba(12, 52, 117, 0.94));
  box-shadow: 0 16px 38px rgba(6, 26, 61, 0.14);
}

.check-list p::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--yellow);
}.timeline-diagram-section{
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 166, 35, 0.22), transparent 18rem),
    radial-gradient(circle at 90% 80%, rgba(15, 94, 255, 0.28), transparent 20rem),
    #061225;
}

.timeline-diagram article {
  border-radius: 18px;
  background: linear-gradient(180deg, #0a1c3b, #071225);
}

.timeline-diagram article:hover {
  transform: translateY(-4px);
}

.pricing-grid .price-card:nth-child(1),
.pricing-grid .price-card:nth-child(2) {
  background:
    linear-gradient(180deg, #ffffff, #fff9eb);
}

.best-seller {
  color: var(--blue-dark) !important;
}

.checkbox-grid label {
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.checkbox-grid label:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, 0.55);
  background: #fffaf0;
}

input,
select,
textarea,
fieldset {
  border-radius: 14px;
}

.language-switch {
  border-radius: 999px;
  border-color: rgba(245, 166, 35, 0.55);
}

.site-footer {
  background:
    radial-gradient(circle at 10% 30%, rgba(245, 166, 35, 0.16), transparent 18rem),
    var(--black);
}

.hero-promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-promise-list span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 26px rgba(2, 7, 19, 0.16);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.service-promises span {
  background: rgba(255, 255, 255, 0.12);
}.section-heading h2,
.packages-heading h2,
.add-ons-heading h2,
.design-kickoff h2{
  position: relative;
  width: fit-content;
}.section-heading h2::after,
.packages-heading h2::after,
.add-ons-heading h2::after,
.design-kickoff h2::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.75), rgba(15, 94, 255, 0.14));
}.packages-heading h2,
.add-ons-heading h2{
  margin-inline: auto;
}.add-on-grid{
  align-items: stretch;
}.add-on-grid article{
  position: relative;
  overflow: hidden;
}.add-on-grid article::after{
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -38px;
  top: -38px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.13);
}.add-on-grid article:nth-child(2n)::after{
  background: rgba(15, 94, 255, 0.10);
}

.price-card {
  border-top: 6px solid rgba(15, 94, 255, 0.22);
}

.pricing-grid .price-card:nth-child(1),
.pricing-grid .price-card:nth-child(2) {
  border-top-color: var(--yellow);
}

.price-card h2 {
  text-shadow: 0 10px 22px rgba(15, 94, 255, 0.10);
}

.add-ons {
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 94, 255, 0.08), transparent 19rem),
    #ffffff;
}

.design-kickoff {
  max-width: var(--max-width);
  margin: 0 auto 18px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 94, 255, 0.10);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(6, 26, 61, 0.06);
}

.design-kickoff h2 {
  max-width: 840px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.design-kickoff p:not(.section-label) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--gray);
  font-weight: 700;
}

.design-form {
  position: relative;
}

.design-form::before {
  content: "Tip: complete only what you know right now. Blank sections are okay.";
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(245, 166, 35, 0.32);
  border-radius: 12px;
  background: #fff8e6;
  color: var(--blue-dark);
  font-weight: 800;
}

html.language-spanish .design-form::before {
  content: "Consejo: complete solo lo que sabe ahora. Las secciones en blanco estan bien.";
}

fieldset {
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
}

legend {
  border-radius: 999px;
  background: #fff8e6;
}

.form-row label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(238, 245, 255, 0.85);
}

input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(245, 166, 35, 0.34);
  border-color: var(--yellow);
}

.modal-panel {
  background:
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.12), transparent 16rem),
    #ffffff;
}

.modal-contact-card {
  background: linear-gradient(180deg, #ffffff, #fffaf0);
}

@media (max-width: 880px) {.section-heading h2,
.packages-heading h2,
.add-ons-heading h2,
.design-kickoff h2{
    width: auto;
  }
}

/* Interaction and motion polish */
.hero-promise-list {
  padding: 0;
  list-style: none;
}

.hero-promise-list span,
.hero-promise-list li {
  position: relative;
  padding-left: 30px;
}

.hero-promise-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.18);
}

.language-switch {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.language-current {
  position: relative;
  min-height: 40px;
  padding: 8px 34px 8px 14px;
  border: 1px solid rgba(245, 166, 35, 0.55);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(6, 26, 61, 0.18);
}

.language-current::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.language-switch.open .language-current::after {
  transform: translateY(-35%) rotate(225deg);
}

.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  bottom: auto;
  display: grid;
  min-width: 150px;
  padding: 8px;
  border: 1px solid rgba(15, 94, 255, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 26, 61, 0.16);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: top right;
  transition:
    opacity 260ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 260ms;
  will-change: opacity, transform;
}

.language-switch.open .language-options {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.language-options button {
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--blue-dark);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.language-options button:hover {
  background: #fff8e6;
}

.package-details-panel {
  grid-template-columns: 1fr;
  max-width: 760px;
}/* Requested refinements */
.section-heading h2,
.packages-heading h2,
.add-ons-heading h2,
.design-kickoff h2{
  padding-bottom: 14px;
}.section-heading h2::after,
.packages-heading h2::after,
.add-ons-heading h2::after,
.design-kickoff h2::after{
  bottom: 0;
  height: 7px;
}

.faq-question {
  position: relative;
  padding-right: 42px;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  transform-origin: center;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-question::after {
  float: none;
  color: transparent;
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%) rotate(0deg);
}

.faq-question[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(0deg);
  background: var(--yellow);
}

.faq-question[aria-expanded="true"]::after {
  content: "";
  transform: translateY(-50%) rotate(180deg);
  background: var(--yellow);
}

.package-details-price {
  width: fit-content;
  margin: -8px 0 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff8e6;
  color: var(--blue-dark);
  font-size: 1.4rem;
  font-weight: 800;
}

.package-details-summary {
  margin: 0;
  color: var(--gray);
  font-size: 1.08rem;
}

.package-details-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-details-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(15, 94, 255, 0.12);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--blue-dark);
  font-weight: 700;
}

.package-details-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.package-details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.reveal-on-scroll {
  opacity: 0;
  --reveal-x: 0px;
  --reveal-y: 26px;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

.reveal-on-scroll:nth-child(2n) {
  transition-delay: 70ms;
}

.reveal-on-scroll:nth-child(3n) {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-answer,
  .language-options,
  .custom-select-options,
  .custom-select-button,
  .custom-select-button::after {
    transition: none;
    transform: none;
  }
}

/* High-interaction sections */
.estimate-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.estimate-output,
.estimate-controls fieldset {
  border: 1px solid rgba(15, 94, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(6, 26, 61, 0.10);
}

.estimate-output {
  padding: 24px;
}

.estimate-output span {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.estimate-controls label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(15, 94, 255, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue-dark);
  font-weight: 800;
}

.estimate-controls {
  display: grid;
  gap: 16px;
}

.estimate-controls fieldset {
  padding: 22px;
}

.estimate-controls label + label {
  margin-top: 10px;
}

.estimate-output {
  position: sticky;
  top: 110px;
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 166, 35, 0.22), transparent 10rem),
    #071225;
  color: var(--white);
}

.estimate-modal-panel .estimate-output {
  grid-column: 2;
  grid-row: 1;
  position: static;
  top: auto;
}

.estimate-modal-panel .estimate-controls {
  display: contents;
}

.estimate-modal-panel .estimate-controls fieldset:first-child {
  grid-column: 1;
  grid-row: 1;
}

.estimate-modal-panel .estimate-controls fieldset:nth-child(2) {
  grid-column: 1 / -1;
  grid-row: 2;
}

.estimate-controls label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
}

.estimate-controls fieldset:nth-child(2) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.estimate-controls fieldset:nth-child(2) legend {
  grid-column: 1 / -1;
}

.estimate-controls fieldset:nth-child(2) label + label {
  margin-top: 0;
}

.estimate-controls label span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.estimate-controls label strong {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-size: 0.78rem;
}

.estimate-controls label input {
  justify-self: start;
  margin: 0;
}

.estimate-controls input:focus,
.estimate-controls input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.estimate-output h3 {
  margin: 10px 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.estimate-output h3.total-morph-out {
  opacity: 0.25;
  filter: blur(2px);
  transform: translateY(8px) scale(0.94);
}

.estimate-output h3.total-morph-in {
  animation: total-pop 320ms ease;
}

@keyframes total-pop {
  0% {
    opacity: 0.35;
    filter: blur(2px);
    transform: translateY(-8px) scale(0.94);
  }

  70% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1.04);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.estimate-output p,
.estimate-output li {
  color: #d8e6ff;
}

.estimate-output p span {
  display: block;
}

.estimate-output .estimate-financing {
  margin-bottom: 4px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.estimate-output ul {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.timeline-diagram article {
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline-diagram article.active-stage {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.22), 0 24px 58px rgba(245, 166, 35, 0.16);
  transform: translateY(-8px);
}

.timeline-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(245, 166, 35, 0.30);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8e6ff;
  font-weight: 800;
}.price-card::before,
.add-on-grid article::before{
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(245, 166, 35, 0.18), transparent 9rem);
  transition: opacity 180ms ease;
}.price-card:hover::before,
.add-on-grid article:hover::before{
  opacity: 1;
}

@media (max-width: 880px) {
  .estimate-panel {
    grid-template-columns: 1fr;
  }

  .add-on-grid,
  .estimate-controls fieldset:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .estimate-modal-panel .estimate-output,
  .estimate-modal-panel .estimate-controls fieldset:first-child,
  .estimate-modal-panel .estimate-controls fieldset:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
  }

  .estimate-output {
    position: static;
  }
}

/* Requested interaction refinements */
.estimate-modal .section-label {
  color: var(--yellow) !important;
  -webkit-text-fill-color: var(--yellow);
}

.estimate-controls label {
  align-items: center;
  line-height: 1.2;
}

.estimate-controls input {
  flex: 0 0 auto;
}

.estimate-option input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 2px solid rgba(15, 94, 255, 0.32);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.estimate-option input[type="checkbox"]:checked {
  border-color: var(--yellow);
  background: var(--blue-dark);
  box-shadow: inset 0 0 0 4px #ffffff, 0 0 0 4px rgba(245, 166, 35, 0.18);
}

.estimate-controls .estimate-option span {
  display: flex;
}

.faq-item {
  position: relative;
}

.faq-item::before,
.estimate-output::before,
.estimate-controls fieldset::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(245, 166, 35, 0.18), transparent 9rem);
  transition: opacity 180ms ease;
}

.faq-item:hover::before,
.estimate-output:hover::before,
.estimate-controls fieldset:hover::before {
  opacity: 1;
}

.estimate-output,
.estimate-controls fieldset {
  position: relative;
  overflow: hidden;
}

.modal-contact-card img {
  margin: 0 auto;
}

.modal-contact-card h3,
.modal-contact-card > p {
  text-align: center;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .language-switch {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: auto;
    display: none;
    grid-column: auto;
    width: 100%;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .language-current {
    min-height: 38px;
    padding: 7px 30px 7px 12px;
    font-size: 0.9rem;
  }

  .language-options {
    top: auto;
    right: 0;
    bottom: auto;
    transform-origin: top right;
  }

  .nav-toggle {
    position: relative !important;
    z-index: 110;
    display: block !important;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 46px;
    height: 46px;
    padding: 10px;
    border-color: rgba(245, 166, 35, 0.7);
    border-radius: 14px;
    background: var(--blue-dark);
    box-shadow: 0 12px 28px rgba(6, 26, 61, 0.18);
  }

  .nav-toggle span {
    width: 100%;
    background: var(--yellow);
  }

  .site-nav {
    z-index: 105;
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 240ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 240ms;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .site-nav.open + .language-switch {
    display: none;
  }

  .site-nav .language-switch {
    display: block;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1;
    width: 100%;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-nav .language-current {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    text-align: center;
  }

  .site-nav .language-options {
    right: 0;
    left: 0;
  }
}

.floating-faq {
  position: fixed !important;
  left: 22px !important;
  right: auto !important;
  bottom: 22px !important;
  width: auto !important;
  min-height: 48px;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  text-align: center;
}

@media (max-width: 520px) {
  .floating-faq {
    left: 14px !important;
    bottom: 14px !important;
    padding: 11px 15px;
  }
}

/* Compact layout pass: reduce empty space without changing the theme */
.site-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section,
.page-hero {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-hero p:not(.eyebrow) {
  margin-top: 14px;
}

.hero-actions {
  margin-top: 24px;
  gap: 14px;
}.intro-grid,
.add-ons,
.services-hero,
.process-detail-grid,
.contact-layout,
.design-layout,
.modal-panel{
  gap: 24px;
}.pricing-grid,
.add-on-grid,
.faq-grid,
.timeline-diagram{
  gap: 16px;
}

.section-heading {
  margin-bottom: 22px;
}.section-heading h2,
.packages-heading h2,
.add-ons-heading h2,
.design-kickoff h2{
  font-size: clamp(2rem, 4vw, 3.4rem);
}.price-card,
.faq-grid article,
.add-on-grid article,
.contact-card,
.modal-contact-card{
  padding: 22px;
}

.price-card {
  padding-top: 24px;
}

.packages-section,
.design-form,
.contact-form {
  gap: 16px;
}

fieldset {
  gap: 14px;
  padding: 18px;
}

.form-grid,
.color-choice-grid,
.checkbox-grid {
  gap: 12px;
}

.checkbox-grid label {
  padding: 10px;
}

.timeline-diagram article {
  padding: 20px;
}

.timeline-note {
  margin-top: 14px;
}

.design-kickoff {
  margin-bottom: 14px;
  padding: 18px 20px;
}

.design-form,
.contact-form {
  padding: 22px;
}

@media (max-width: 880px) {

  .section,
  .page-hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .section,
  .page-hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* Home Theme Test: Discovery Platform */
.home-theme-discovery {
  background: #020713;
  color: var(--white);
}

.home-theme-discovery .site-header {
  background: rgba(255, 255, 255, 0.94);
}

.home-theme-discovery .brand span {
  color: var(--black);
}

.discovery-home {
  position: relative;
  overflow: hidden;
  --bg-shift: 0px;
  background:
    radial-gradient(circle at calc(9% + (var(--bg-shift) * 0.08)) calc(7% + var(--bg-shift)), rgba(32, 113, 255, 0.58), transparent 27%),
    radial-gradient(circle at calc(87% - (var(--bg-shift) * 0.07)) calc(8% - var(--bg-shift)), rgba(245, 166, 35, 0.42), transparent 28%),
    radial-gradient(circle at calc(52% + (var(--bg-shift) * 0.04)) calc(39% + (var(--bg-shift) * 0.14)), rgba(14, 58, 139, 0.86), transparent 42%),
    radial-gradient(circle at calc(18% - (var(--bg-shift) * 0.05)) calc(78% - (var(--bg-shift) * 0.10)), rgba(245, 166, 35, 0.26), transparent 25%),
    linear-gradient(180deg, #01030a 0%, #061632 28%, #0a2c68 52%, #071d46 76%, #020713 100%);
}

.discovery-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.18) 0.9px, transparent 1.8px),
    radial-gradient(circle at 78% 34%, rgba(245,166,35,0.22) 1px, transparent 2px),
    linear-gradient(135deg, rgba(255,255,255,0.07), transparent 28%, rgba(255,255,255,0.035) 55%, transparent);
  background-size: 26px 26px, 42px 42px, auto;
  background-position:
    calc(var(--bg-shift) * 0.55) calc(var(--bg-shift) * -0.75),
    calc(var(--bg-shift) * -0.38) calc(var(--bg-shift) * 0.52),
    center;
  transform: translate3d(calc(var(--bg-shift) * 0.78), calc(var(--bg-shift) * -0.92), 0) rotate(calc(var(--bg-shift) * 0.015deg));
  transition: transform 80ms linear, background-position 80ms linear;
  mask-image: linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
}

.discovery-home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(8% + (var(--bg-shift) * 0.09)) calc(14% + var(--bg-shift)), rgba(245,166,35,0.34), transparent 24%),
    radial-gradient(circle at calc(88% - (var(--bg-shift) * 0.08)) calc(28% - var(--bg-shift)), rgba(15,94,255,0.44), transparent 27%),
    radial-gradient(circle at calc(50% + (var(--bg-shift) * 0.06)) calc(78% - (var(--bg-shift) * 0.12)), rgba(245,166,35,0.22), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 34%, rgba(255,255,255,0.035));
  filter: saturate(1.22);
  transform: translate3d(calc(var(--bg-shift) * -0.62), calc(var(--bg-shift) * 0.82), 0) scale(1.08) rotate(calc(var(--bg-shift) * -0.012deg));
  transition: transform 80ms linear;
}

.discovery-home > * {
  position: relative;
  z-index: 1;
}

.discovery-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: center;
  min-height: 760px;
  padding: 86px max(24px, calc((100vw - var(--max-width)) / 2)) 62px;
  isolation: isolate;
}

.discovery-hero::before {
  content: "";
  position: absolute;
  inset: 34px max(16px, calc((100vw - 1240px) / 2)) 24px;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(15,94,255,0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(245,166,35,0.16), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.014));
  background-size: auto;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 0 80px rgba(15,94,255,0.12),
    inset 0 -80px 130px rgba(0,0,0,0.18),
    0 34px 110px rgba(0,0,0,0.38),
    0 0 70px rgba(15,94,255,0.10);
}

.discovery-hero::after {
  content: "";
  position: absolute;
  right: max(-120px, calc((100vw - 1280px) / 2 - 120px));
  top: 90px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(245, 166, 35, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.10), transparent 61%);
}

.discovery-orbit {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.discovery-orbit span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow:
    0 0 46px rgba(15, 94, 255, 0.22),
    inset 0 0 36px rgba(255,255,255,0.04);
}

.discovery-orbit span:nth-child(1) {
  width: 230px;
  height: 230px;
  left: 7%;
  top: 20%;
}

.discovery-orbit span:nth-child(2) {
  width: 88px;
  height: 88px;
  right: 33%;
  top: 15%;
  background: rgba(245, 166, 35, 0.10);
}

.discovery-orbit span:nth-child(3) {
  width: 160px;
  height: 160px;
  right: 8%;
  bottom: 15%;
}

.discovery-copy,
.discovery-console {
  position: relative;
  z-index: 1;
}

.discovery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.discovery-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(245, 166, 35, 0.78);
}

.discovery-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6.2vw, 5.85rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  text-wrap: balance;
  text-shadow:
    0 12px 38px rgba(0,0,0,0.45),
    0 0 42px rgba(15,94,255,0.18);
}

.discovery-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #e3eeff;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.discovery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.home-theme-discovery .button.primary {
  border-radius: 999px;
  background: linear-gradient(135deg, #f5a623, #ffd27a);
  box-shadow:
    0 16px 40px rgba(245, 166, 35, 0.34),
    0 0 28px rgba(245, 166, 35, 0.24);
}

.home-theme-discovery .discovery-actions .button.secondary {
  border-radius: 999px;
  border-color: rgba(255,255,255,0.24);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 14px 34px rgba(0,0,0,0.22);
}

.discovery-console {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(245,166,35,0.15), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07)),
    rgba(3, 12, 31, 0.88);
  box-shadow:
    0 34px 90px rgba(0,0,0,0.48),
    0 0 54px rgba(15,94,255,0.16),
    inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 20px;
}

.console-top img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(245,166,35,0.12);
}

.console-top span {
  display: block;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-top strong {
  color: #ffffff;
  font-size: 1.15rem;
}

.console-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 18px;
  min-height: 348px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 12%, rgba(15,94,255,0.13), transparent 26%),
    linear-gradient(135deg, #ffffff, #e7f0ff);
  color: var(--blue-dark);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -28px 46px rgba(6,26,61,0.08);
}

.site-preview {
  display: grid;
  gap: 14px;
}

.preview-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d8e4f7;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(6,26,61,0.08);
}

.preview-nav span {
  width: 88px;
  height: 14px;
  margin-right: auto;
  border-radius: 999px;
  background: var(--blue-dark);
}

.preview-nav i {
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: #b9c8df;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr 116px;
  gap: 16px;
  align-items: center;
  min-height: 142px;
  padding: 18px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 16%, rgba(245,166,35,0.38), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(15,94,255,0.28), transparent 34%),
    linear-gradient(135deg, #08245a, #020713);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 18px 38px rgba(6,26,61,0.20);
}

.preview-hero small {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-hero strong {
  display: block;
  max-width: 320px;
  margin: 8px 0;
  font-size: 1.35rem;
  line-height: 1.05;
}

.preview-hero p {
  margin: 0;
  color: #d7e6ff;
  font-size: 0.9rem;
}

.preview-logo-mark {
  width: 108px;
  height: 108px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #020713;
  object-fit: cover;
  padding: 0;
  box-shadow: 0 16px 42px rgba(0,0,0,0.28);
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-cards article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid #d8e4f7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(6,26,61,0.08);
}

.preview-cards span {
  color: var(--blue-dark);
  font-weight: 900;
}

.preview-cards p {
  display: block;
  width: 80%;
  height: 10px;
  margin: 20px 0 0;
  border-radius: 999px;
  background: #d8e4f7;
}

.preview-phone {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 8px solid #061a3d;
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 20px 50px rgba(6,26,61,0.28),
    0 0 28px rgba(15,94,255,0.12);
}

.preview-phone div {
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.preview-phone strong,
.preview-phone p {
  display: block;
  border-radius: 999px;
}

.preview-phone strong {
  width: 80%;
  height: 16px;
  background: var(--blue-dark);
}

.preview-phone p {
  width: 100%;
  height: 9px;
  margin: 0;
  background: #c9d8f0;
}

.preview-phone p:nth-of-type(2) {
  width: 72%;
}

.preview-phone button {
  min-height: 34px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.console-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
  isolation: isolate;
}

.console-metrics::before {
  content: "";
  position: absolute;
  left: -8px;
  right: 10%;
  top: 50%;
  z-index: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245,166,35,0), rgba(245,166,35,1), rgba(245,166,35,0.34));
  box-shadow: 0 0 20px rgba(245,166,35,0.62);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  animation: discoveryMetricTrace 6.5s ease-in-out infinite;
  pointer-events: none;
}

.console-metrics p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(2, 7, 19, 0.52);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.console-metrics p:last-child {
  z-index: 2;
}

.console-metrics p:last-child::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid transparent;
  border-radius: 23px;
  opacity: 0;
  pointer-events: none;
  animation: discoveryLaunchPulse 6.5s ease-in-out infinite;
}

.console-metrics span {
  display: block;
  color: var(--yellow);
  font-size: 0.8rem;
}

.discovery-anchor-nav {
  position: sticky;
  top: 79px;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(4, 15, 39, 0.94), rgba(2, 7, 19, 0.88));
  backdrop-filter: blur(14px);
  overflow: visible;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.discovery-anchor-nav a {
  position: relative;
  z-index: 1;
  padding: 9px 16px;
  border: 1px solid rgba(245,166,35,0.26);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(2, 7, 19, 0.78);
}

.discovery-anchor-nav a:hover {
  color: var(--black);
  background: var(--yellow);
}

@keyframes discoveryMetricTrace {
  0%,
  12% {
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  56%,
  70% {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
  }

  90% {
    transform: translateY(-50%) scaleX(0);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
  }
}

@keyframes discoveryLaunchPulse {
  0%,
  54%,
  86%,
  100% {
    opacity: 0;
    border-color: transparent;
    box-shadow: none;
    transform: scale(0.92);
  }

  61%,
  76% {
    opacity: 1;
    border-color: var(--yellow);
    box-shadow:
      0 0 0 4px rgba(245,166,35,0.14),
      0 0 22px rgba(245,166,35,0.68);
    transform: scale(1);
  }

  68% {
    opacity: 0.45;
    box-shadow:
      0 0 0 2px rgba(245,166,35,0.12),
      0 0 10px rgba(245,166,35,0.36);
  }
}

.discovery-statement,
.discovery-panels,
.discovery-workflow,
.discovery-split,
.discovery-reviews {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
}

.discovery-statement {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: 42px;
  align-items: end;
  padding: 76px 0 54px;
}

.discovery-statement p {
  margin: 0;
  color: var(--yellow);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.discovery-statement h2 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.discovery-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 74px;
}

.discovery-panels article,
.discovery-workflow,
.discovery-split,
.discovery-reviews {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(15,94,255,0.13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055)),
    rgba(3, 12, 31, 0.76);
  box-shadow:
    0 28px 86px rgba(0,0,0,0.30),
    0 0 40px rgba(15,94,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.discovery-panels article {
  min-height: 310px;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.discovery-panels article:hover,
.workflow-track article:hover,
.split-list p:hover,
.review-strip article:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.48);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.36),
    0 0 36px rgba(245,166,35,0.16),
    0 0 48px rgba(15,94,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.discovery-panels span {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(245,166,35,0.20);
}

.discovery-panels h3 {
  margin: 30px 0 14px;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.08;
}

.discovery-panels p {
  margin: 0;
  color: #c9d8f0;
}

.discovery-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  margin-bottom: 52px;
}

.discovery-workflow h2,
.split-card h2,
.discovery-reviews h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 42px rgba(0,0,0,0.28);
}

.discovery-workflow p,
.discovery-reviews p {
  color: #c9d8f0;
}

.workflow-track {
  display: grid;
  gap: 12px;
}

.workflow-track article {
  display: grid;
  grid-template-columns: auto 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(15,94,255,0.22), transparent 32%),
    rgba(255,255,255,0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.workflow-track span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.workflow-track strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.workflow-track p {
  margin: 0;
}

.discovery-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  padding: 18px;
  margin-bottom: 52px;
}

.split-card,
.split-list {
  border-radius: 22px;
}

.split-card {
  padding: 30px;
  background:
    radial-gradient(circle at 0 100%, rgba(245,166,35,0.28), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(15,94,255,0.24), transparent 34%),
    linear-gradient(135deg, #020713, #061a3d);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 22px 60px rgba(6,26,61,0.16);
}

.split-card h2 {
  color: #ffffff;
}

.split-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.split-list p {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,166,35,0.10), transparent 32%),
    rgba(255,255,255,0.08);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.split-list strong,
.split-list span {
  display: block;
}

.split-list strong {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.split-list span {
  color: #c9d8f0;
}

.discovery-reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: 34px;
  margin-bottom: 80px;
  color: #ffffff;
  background:
    radial-gradient(circle at 0 0, rgba(245,166,35,0.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055)),
    rgba(3, 12, 31, 0.76);
}

.discovery-reviews .discovery-kicker,
.discovery-reviews h2 {
  color: #ffffff;
}

.discovery-reviews p {
  color: #c9d8f0;
}

.review-strip {
  display: grid;
  gap: 12px;
}

.review-strip article {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,166,35,0.16), transparent 34%),
    rgba(255,255,255,0.08);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.review-strip p {
  margin: 0 0 12px;
  color: #eef5ff;
  font-weight: 700;
}

.review-strip strong {
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(245,166,35,0.24);
}

@media (min-width: 981px) {
  .discovery-statement {
    width: min(calc(100% - 48px), 1160px);
    margin-top: 58px;
    margin-left: auto;
    margin-right: auto;
    padding: 56px 64px;
    border: 1px solid rgba(6,26,61,0.10);
    border-radius: 56px 56px 44px 44px;
    background:
      radial-gradient(circle at 88% 10%, rgba(245,166,35,0.22), transparent 34%),
      radial-gradient(circle at 0 100%, rgba(15,94,255,0.20), transparent 38%),
      linear-gradient(135deg, #061a3d, #020713);
    box-shadow:
      0 28px 90px rgba(0,0,0,0.32),
      0 0 48px rgba(15,94,255,0.10),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }

  .discovery-statement h2 {
    color: #ffffff;
  }

  .discovery-panels {
    width: min(calc(100% - 48px), 1160px);
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 74px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .discovery-panels article {
    min-height: 310px;
    padding: 26px;
    border-radius: 28px;
  }

  .discovery-panels article:nth-child(1),
  .discovery-panels article:nth-child(3) {
    transform: none;
  }

  .discovery-panels article:nth-child(2) {
    margin-left: 0;
  }

  .discovery-panels article:nth-child(3) {
    margin-left: 0;
  }

  .discovery-workflow {
    width: min(calc(100% - 48px), 1160px);
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    border-radius: 28px;
  }

  .discovery-split {
    width: min(calc(100% - 48px), 1160px);
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    border-radius: 28px;
  }

  .split-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .discovery-reviews {
    width: min(calc(100% - 48px), 1160px);
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    border-radius: 28px;
  }

  .discovery-statement.reveal-on-scroll,
  .discovery-workflow.reveal-on-scroll,
  .discovery-reviews.reveal-on-scroll {
    --reveal-x: 58px;
  }

  .discovery-panels.reveal-on-scroll,
  .discovery-split.reveal-on-scroll {
    --reveal-x: -58px;
  }

  .discovery-statement.reveal-on-scroll.is-visible,
  .discovery-panels.reveal-on-scroll.is-visible,
  .discovery-workflow.reveal-on-scroll.is-visible,
  .discovery-split.reveal-on-scroll.is-visible,
  .discovery-reviews.reveal-on-scroll.is-visible {
    --reveal-x: 0px;
  }
}

@media (max-width: 980px) {
  .discovery-hero,
  .discovery-statement,
  .discovery-workflow,
  .discovery-split,
  .discovery-reviews {
    grid-template-columns: 1fr;
  }

  .discovery-hero {
    min-height: auto;
  }

  .discovery-panels,
  .split-list {
    grid-template-columns: 1fr;
  }

  .discovery-anchor-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .discovery-hero {
    padding: 42px 18px;
  }

  .discovery-copy h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .discovery-statement,
  .discovery-panels,
  .discovery-workflow,
  .discovery-split,
  .discovery-reviews {
    width: min(calc(100% - 28px), 1160px);
  }

  .discovery-console,
  .discovery-workflow,
  .discovery-split,
  .discovery-reviews {
    padding: 20px;
  }

  .console-metrics,
  .workflow-track article {
    grid-template-columns: 1fr;
  }
}

/* Theme #1: Moody Discovery */
.site-theme-1:not(.home-theme-discovery) {
  color: #eef5ff;
  background:
    radial-gradient(circle at 12% 7%, rgba(32, 113, 255, 0.42), transparent 29%),
    radial-gradient(circle at 88% 8%, rgba(245, 166, 35, 0.28), transparent 27%),
    radial-gradient(circle at 48% 42%, rgba(14, 58, 139, 0.72), transparent 42%),
    linear-gradient(180deg, #01030a 0%, #061632 36%, #0a2c68 58%, #071d46 80%, #020713 100%);
}

.site-theme-1:not(.home-theme-discovery)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.16) 0.8px, transparent 1.6px),
    radial-gradient(circle at 78% 34%, rgba(245,166,35,0.18) 0.9px, transparent 1.8px),
    linear-gradient(135deg, rgba(255,255,255,0.07), transparent 28%, rgba(255,255,255,0.035) 55%, transparent);
  background-size: 28px 28px, 44px 44px, auto;
}

.site-theme-1 .site-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90));
  box-shadow: 0 16px 38px rgba(0,0,0,0.14);
}

.site-theme-1 .brand span {
  color: var(--black);
}

.site-theme-1:not(.home-theme-discovery) main {
  position: relative;
  z-index: 1;
}

.site-theme-1:not(.home-theme-discovery) .page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 8%, rgba(15,94,255,0.30), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(245,166,35,0.22), transparent 27%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.015));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -90px 130px rgba(0,0,0,0.14);
}

.site-theme-1:not(.home-theme-discovery) .page-hero h1 {
  color: #ffffff;
  text-shadow:
    0 12px 38px rgba(0,0,0,0.45),
    0 0 42px rgba(15,94,255,0.18);
}

.site-theme-1:not(.home-theme-discovery) .page-hero p:not(.eyebrow),
.site-theme-1:not(.home-theme-discovery) .page-hero li {
  color: #d7e6ff;
}

.site-theme-1:not(.home-theme-discovery) .section,
.site-theme-1:not(.home-theme-discovery) .faq-section,
.site-theme-1:not(.home-theme-discovery) .add-ons,
.site-theme-1:not(.home-theme-discovery) .packages-section,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram-section,
.site-theme-1:not(.home-theme-discovery) .process-section,
.site-theme-1:not(.home-theme-discovery) .contact-section,
.site-theme-1:not(.home-theme-discovery) .design-kickoff {
  color: #eef5ff;
}

.site-theme-1:not(.home-theme-discovery) .section-heading h2,
.site-theme-1:not(.home-theme-discovery) .packages-heading h2,
.site-theme-1:not(.home-theme-discovery) .add-ons-heading h2,
.site-theme-1:not(.home-theme-discovery) .design-kickoff h1,
.site-theme-1:not(.home-theme-discovery) .contact-section h1,
.site-theme-1:not(.home-theme-discovery) .faq-section h1,
.site-theme-1:not(.home-theme-discovery) .intro-grid h2 {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0,0,0,0.26);
}

.site-theme-1:not(.home-theme-discovery) .section-heading p,
.site-theme-1:not(.home-theme-discovery) .packages-heading p,
.site-theme-1:not(.home-theme-discovery) .add-ons-heading p,
.site-theme-1:not(.home-theme-discovery) .intro-grid > p,
.site-theme-1:not(.home-theme-discovery) .form-note,
.site-theme-1:not(.home-theme-discovery) .timeline-note,
.site-theme-1:not(.home-theme-discovery) .not-sure-note {
  color: #c9d8f0;
}

.site-theme-1 .eyebrow,
.site-theme-1 .section-label,
.site-theme-1 .package-label {
  color: var(--yellow);
  background: rgba(2, 7, 19, 0.80);
  box-shadow: 0 0 24px rgba(245,166,35,0.13);
}.site-theme-1:not(.home-theme-discovery) .price-card,
.site-theme-1:not(.home-theme-discovery) .contact-card,
.site-theme-1:not(.home-theme-discovery) .faq-item,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram article,
.site-theme-1:not(.home-theme-discovery) .process-detail-grid article,
.site-theme-1:not(.home-theme-discovery) .next-step-grid article,
.site-theme-1:not(.home-theme-discovery) .add-on-grid article,
.site-theme-1:not(.home-theme-discovery) .service-highlight-panel,
.site-theme-1:not(.home-theme-discovery) .estimate-output,
.site-theme-1:not(.home-theme-discovery) .estimate-controls fieldset,
.site-theme-1:not(.home-theme-discovery) .design-form,
.site-theme-1:not(.home-theme-discovery) .contact-form,
.site-theme-1:not(.home-theme-discovery) .modal-panel,
.site-theme-1:not(.home-theme-discovery) .modal-contact-card,
.site-theme-1:not(.home-theme-discovery) .summary-panel,
.site-theme-1:not(.home-theme-discovery) .package-details-panel,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel{
  border-color: rgba(255,255,255,0.14);
  color: #eef5ff;
  background:
    radial-gradient(circle at 100% 0%, rgba(15,94,255,0.13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055)),
    rgba(3, 12, 31, 0.78);
  box-shadow:
    0 28px 86px rgba(0,0,0,0.30),
    0 0 40px rgba(15,94,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.site-theme-1:not(.home-theme-discovery) .price-card:hover,
.site-theme-1:not(.home-theme-discovery) .faq-item:hover,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram article:hover,
.site-theme-1:not(.home-theme-discovery) .process-detail-grid article:hover,
.site-theme-1:not(.home-theme-discovery) .next-step-grid article:hover,
.site-theme-1:not(.home-theme-discovery) .add-on-grid article:hover {
  border-color: rgba(245,166,35,0.48);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.36),
    0 0 36px rgba(245,166,35,0.16),
    0 0 48px rgba(15,94,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.site-theme-1:not(.home-theme-discovery) h2,
.site-theme-1:not(.home-theme-discovery) h3,
.site-theme-1:not(.home-theme-discovery) strong,
.site-theme-1:not(.home-theme-discovery) label,
.site-theme-1:not(.home-theme-discovery) legend {
  color: #ffffff;
}

.site-theme-1:not(.home-theme-discovery) p,
.site-theme-1:not(.home-theme-discovery) li,
.site-theme-1:not(.home-theme-discovery) span {
  color: #c9d8f0;
}.site-theme-1:not(.home-theme-discovery) .price-card h2,
.site-theme-1:not(.home-theme-discovery) .financing-callout,
.site-theme-1:not(.home-theme-discovery) .best-seller,
.site-theme-1:not(.home-theme-discovery) .package-label,
.site-theme-1:not(.home-theme-discovery) .addon-price,
.site-theme-1:not(.home-theme-discovery) .estimate-total,
.site-theme-1:not(.home-theme-discovery) .contact-detail strong{
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(245,166,35,0.24);
}

.site-theme-1:not(.home-theme-discovery) input,
.site-theme-1:not(.home-theme-discovery) textarea,
.site-theme-1:not(.home-theme-discovery) select,
.site-theme-1:not(.home-theme-discovery) .custom-select-button,
.site-theme-1:not(.home-theme-discovery) .custom-select-options {
  border-color: rgba(255,255,255,0.16);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.site-theme-1:not(.home-theme-discovery) input::placeholder,
.site-theme-1:not(.home-theme-discovery) textarea::placeholder {
  color: rgba(201,216,240,0.72);
}

.site-theme-1:not(.home-theme-discovery) .button.primary {
  border-color: #c98212;
  color: var(--black);
  background: linear-gradient(135deg, #f5a623, #ffd27a);
  box-shadow:
    0 16px 40px rgba(245,166,35,0.34),
    0 0 28px rgba(245,166,35,0.24);
}

.site-theme-1:not(.home-theme-discovery) .button.secondary {
  border-color: rgba(255,255,255,0.22);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.site-theme-1 .site-footer {
  color: #eef5ff;
  background:
    radial-gradient(circle at 18% 0%, rgba(15,94,255,0.20), transparent 28%),
    linear-gradient(135deg, #020713, #061632);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.site-theme-1 .site-footer p,
.site-theme-1 .site-footer a {
  color: #d7e6ff;
}

/* Theme #1 readability pass */
.site-theme-1 {
  --theme-bg-deep: #020713;
  --theme-bg-panel: rgba(5, 18, 43, 0.88);
  --theme-bg-panel-soft: rgba(9, 31, 70, 0.82);
  --theme-ink: #f6f9ff;
  --theme-copy: #dce8fb;
  --theme-muted: #aebfda;
  --theme-line: rgba(255, 255, 255, 0.16);
  --theme-gold: #f5a623;
  --theme-gold-soft: #ffd27a;
  --theme-blue: #70a8ff;
}

.site-theme-1:not(.home-theme-discovery) {
  color: var(--theme-ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(112, 168, 255, 0.30), transparent 26%),
    radial-gradient(circle at 92% 0%, rgba(245, 166, 35, 0.18), transparent 24%),
    radial-gradient(circle at 54% 44%, rgba(20, 68, 148, 0.46), transparent 42%),
    linear-gradient(180deg, #020713 0%, #061632 42%, #071d46 72%, #020713 100%);
}.site-theme-1:not(.home-theme-discovery) .page-hero,
.site-theme-1:not(.home-theme-discovery) .price-card,
.site-theme-1:not(.home-theme-discovery) .contact-card,
.site-theme-1:not(.home-theme-discovery) .faq-item,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram article,
.site-theme-1:not(.home-theme-discovery) .process-detail-grid article,
.site-theme-1:not(.home-theme-discovery) .next-step-grid article,
.site-theme-1:not(.home-theme-discovery) .add-on-grid article,
.site-theme-1:not(.home-theme-discovery) .service-highlight-panel,
.site-theme-1:not(.home-theme-discovery) .estimate-output,
.site-theme-1:not(.home-theme-discovery) .estimate-controls fieldset,
.site-theme-1:not(.home-theme-discovery) .design-form,
.site-theme-1:not(.home-theme-discovery) .contact-form,
.site-theme-1:not(.home-theme-discovery) .modal-panel,
.site-theme-1:not(.home-theme-discovery) .modal-contact-card,
.site-theme-1:not(.home-theme-discovery) .summary-panel,
.site-theme-1:not(.home-theme-discovery) .package-details-panel,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel{
  border-color: var(--theme-line);
  color: var(--theme-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    var(--theme-bg-panel);
}

.site-theme-1:not(.home-theme-discovery) h1,
.site-theme-1:not(.home-theme-discovery) h2,
.site-theme-1:not(.home-theme-discovery) h3,
.site-theme-1:not(.home-theme-discovery) h4,
.site-theme-1:not(.home-theme-discovery) strong,
.site-theme-1:not(.home-theme-discovery) legend,
.site-theme-1:not(.home-theme-discovery) label {
  color: var(--theme-ink);
}

.site-theme-1:not(.home-theme-discovery) p,
.site-theme-1:not(.home-theme-discovery) li,
.site-theme-1:not(.home-theme-discovery) small,
.site-theme-1:not(.home-theme-discovery) .form-note,
.site-theme-1:not(.home-theme-discovery) .timeline-note,
.site-theme-1:not(.home-theme-discovery) .not-sure-note,
.site-theme-1:not(.home-theme-discovery) .section-heading p,
.site-theme-1:not(.home-theme-discovery) .packages-heading p,
.site-theme-1:not(.home-theme-discovery) .add-ons-heading p {
  color: var(--theme-copy);
}.site-theme-1:not(.home-theme-discovery) .contact-detail span,
.site-theme-1:not(.home-theme-discovery) .faq-answer{
  color: var(--theme-muted);
}

.site-theme-1 .eyebrow,
.site-theme-1 .section-label,
.site-theme-1 .package-label {
  color: var(--theme-gold);
  background: rgba(2, 7, 19, 0.88);
  border: 1px solid rgba(245, 166, 35, 0.28);
}.site-theme-1:not(.home-theme-discovery) .price,
.site-theme-1:not(.home-theme-discovery) .addon-price,
.site-theme-1:not(.home-theme-discovery) .estimate-total,
.site-theme-1:not(.home-theme-discovery) .financing-callout,
.site-theme-1:not(.home-theme-discovery) .best-seller{
  color: var(--theme-gold);
  text-shadow: 0 0 18px rgba(245, 166, 35, 0.24);
}

.site-theme-1:not(.home-theme-discovery) input,
.site-theme-1:not(.home-theme-discovery) textarea,
.site-theme-1:not(.home-theme-discovery) select,
.site-theme-1:not(.home-theme-discovery) .custom-select-button,
.site-theme-1:not(.home-theme-discovery) .custom-select-options {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--theme-ink);
  background: rgba(2, 7, 19, 0.56);
}.site-theme-1:not(.home-theme-discovery) .button.secondary{
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--theme-ink);
  background: rgba(2, 7, 19, 0.52);
}.site-theme-1:not(.home-theme-discovery) .button.secondary:hover{
  border-color: rgba(245, 166, 35, 0.56);
  color: var(--theme-gold-soft);
  background: rgba(245, 166, 35, 0.10);
}

.home-theme-discovery .discovery-card,
.home-theme-discovery .discovery-panel,
.home-theme-discovery .discovery-statement,
.home-theme-discovery .discovery-workflow,
.home-theme-discovery .discovery-split,
.home-theme-discovery .discovery-reviews,
.home-theme-discovery .workflow-track article,
.home-theme-discovery .split-list article,
.home-theme-discovery .review-strip article {
  color: var(--theme-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(3, 12, 31, 0.82);
}

.home-theme-discovery .discovery-card p,
.home-theme-discovery .discovery-panel p,
.home-theme-discovery .discovery-statement p,
.home-theme-discovery .discovery-workflow p,
.home-theme-discovery .discovery-split p,
.home-theme-discovery .discovery-reviews p,
.home-theme-discovery .workflow-track p,
.home-theme-discovery .split-list p {
  color: var(--theme-copy);
}

/* Theme #1 page readability: services, process, design form */
.site-theme-1:not(.home-theme-discovery) .services-hero,
.site-theme-1:not(.home-theme-discovery) .packages-section,
.site-theme-1:not(.home-theme-discovery) .add-ons,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram-section,
.site-theme-1:not(.home-theme-discovery) .intro-grid,
.site-theme-1:not(.home-theme-discovery) .process-detail-grid,
.site-theme-1:not(.home-theme-discovery) .demo-next-steps,
.site-theme-1:not(.home-theme-discovery) .design-layout {
  background: transparent;
}

.site-theme-1:not(.home-theme-discovery) .packages-heading,
.site-theme-1:not(.home-theme-discovery) .add-ons-heading,
.site-theme-1:not(.home-theme-discovery) .section-heading,
.site-theme-1:not(.home-theme-discovery) .design-kickoff {
  color: var(--theme-ink);
}

.site-theme-1:not(.home-theme-discovery) .packages-heading h1,
.site-theme-1:not(.home-theme-discovery) .packages-heading h2,
.site-theme-1:not(.home-theme-discovery) .add-ons-heading h2,
.site-theme-1:not(.home-theme-discovery) .section-heading h2,
.site-theme-1:not(.home-theme-discovery) .design-kickoff h1,
.site-theme-1:not(.home-theme-discovery) .design-kickoff h2,
.site-theme-1:not(.home-theme-discovery) .page-hero h1 {
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.site-theme-1:not(.home-theme-discovery) .page-hero p,
.site-theme-1:not(.home-theme-discovery) .packages-heading p,
.site-theme-1:not(.home-theme-discovery) .add-ons-heading p,
.site-theme-1:not(.home-theme-discovery) .section-heading p,
.site-theme-1:not(.home-theme-discovery) .design-kickoff p {
  color: var(--theme-copy);
}

.site-theme-1:not(.home-theme-discovery) .service-highlight-panel,
.site-theme-1:not(.home-theme-discovery) .price-card,
.site-theme-1:not(.home-theme-discovery) .coming-soon-card,
.site-theme-1:not(.home-theme-discovery) .addon-preview-trigger,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram article,
.site-theme-1:not(.home-theme-discovery) .intro-grid,
.site-theme-1:not(.home-theme-discovery) .process-detail-grid article,
.site-theme-1:not(.home-theme-discovery) .demo-next-steps,
.site-theme-1:not(.home-theme-discovery) .design-kickoff,
.site-theme-1:not(.home-theme-discovery) .design-form fieldset,
.site-theme-1:not(.home-theme-discovery) .checkbox-grid label,
.site-theme-1:not(.home-theme-discovery) .color-choice-grid .form-row {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--theme-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 166, 35, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    rgba(4, 15, 36, 0.90);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-theme-1:not(.home-theme-discovery) .service-highlight-panel p,
.site-theme-1:not(.home-theme-discovery) .service-highlight-panel span,
.site-theme-1:not(.home-theme-discovery) .price-card p,
.site-theme-1:not(.home-theme-discovery) .price-card li,
.site-theme-1:not(.home-theme-discovery) .coming-soon-card p,
.site-theme-1:not(.home-theme-discovery) .coming-soon-card li,
.site-theme-1:not(.home-theme-discovery) .addon-preview-trigger p,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram article p,
.site-theme-1:not(.home-theme-discovery) .intro-grid p,
.site-theme-1:not(.home-theme-discovery) .process-detail-grid article p,
.site-theme-1:not(.home-theme-discovery) .demo-next-steps p,
.site-theme-1:not(.home-theme-discovery) .design-form p,
.site-theme-1:not(.home-theme-discovery) .design-form li,
.site-theme-1:not(.home-theme-discovery) .fieldset-note,
.site-theme-1:not(.home-theme-discovery) .checkbox-grid label {
  color: var(--theme-copy);
}

.site-theme-1:not(.home-theme-discovery) .price-card h2,
.site-theme-1:not(.home-theme-discovery) .price-card h3,
.site-theme-1:not(.home-theme-discovery) .timeline-diagram article h3,
.site-theme-1:not(.home-theme-discovery) .process-detail-grid article h3,
.site-theme-1:not(.home-theme-discovery) .design-form legend,
.site-theme-1:not(.home-theme-discovery) .design-form label,
.site-theme-1:not(.home-theme-discovery) .addon-preview-trigger h3 {
  color: #ffffff;
}

.site-theme-1:not(.home-theme-discovery) .service-highlight-panel strong,
.site-theme-1:not(.home-theme-discovery) .price-card strong,
.site-theme-1:not(.home-theme-discovery) .monthly-note,
.site-theme-1:not(.home-theme-discovery) .package-faq-link,
.site-theme-1:not(.home-theme-discovery) .timeline-note,
.site-theme-1:not(.home-theme-discovery) .form-note {
  color: var(--theme-copy);
}

.site-theme-1:not(.home-theme-discovery) .monthly-note,
.site-theme-1:not(.home-theme-discovery) .package-faq-link,
.site-theme-1:not(.home-theme-discovery) .timeline-note {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(2, 7, 19, 0.56);
}

.site-theme-1:not(.home-theme-discovery) .package-faq-link a,
.site-theme-1:not(.home-theme-discovery) .timeline-note strong {
  color: var(--theme-gold-soft);
}

.site-theme-1:not(.home-theme-discovery) .estimate-option,
.site-theme-1:not(.home-theme-discovery) .estimate-controls label,
.site-theme-1:not(.home-theme-discovery) .checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-theme-1:not(.home-theme-discovery) .estimate-option span,
.site-theme-1:not(.home-theme-discovery) .estimate-controls label span,
.site-theme-1:not(.home-theme-discovery) .checkbox-grid label span {
  color: var(--theme-copy);
}

.site-theme-1:not(.home-theme-discovery) input[type="checkbox"],
.site-theme-1:not(.home-theme-discovery) input[type="radio"] {
  accent-color: var(--theme-gold);
}

.site-theme-1:not(.home-theme-discovery) .design-form input,
.site-theme-1:not(.home-theme-discovery) .design-form textarea,
.site-theme-1:not(.home-theme-discovery) .design-form select,
.site-theme-1:not(.home-theme-discovery) .modal-form input,
.site-theme-1:not(.home-theme-discovery) .modal-form textarea,
.site-theme-1:not(.home-theme-discovery) .modal-form select {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(1, 5, 14, 0.64);
}

.site-theme-1:not(.home-theme-discovery) .design-form input:focus,
.site-theme-1:not(.home-theme-discovery) .design-form textarea:focus,
.site-theme-1:not(.home-theme-discovery) .design-form select:focus,
.site-theme-1:not(.home-theme-discovery) .modal-form input:focus,
.site-theme-1:not(.home-theme-discovery) .modal-form textarea:focus,
.site-theme-1:not(.home-theme-discovery) .modal-form select:focus {
  border-color: rgba(245, 166, 35, 0.72);
  box-shadow:
    0 0 0 4px rgba(245, 166, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.site-theme-1:not(.home-theme-discovery) .design-form input::placeholder,
.site-theme-1:not(.home-theme-discovery) .design-form textarea::placeholder,
.site-theme-1:not(.home-theme-discovery) .modal-form input::placeholder,
.site-theme-1:not(.home-theme-discovery) .modal-form textarea::placeholder {
  color: rgba(220, 232, 251, 0.64);
}

.site-theme-1:not(.home-theme-discovery) input[type="color"] {
  background: #ffffff;
}

.site-theme-1:not(.home-theme-discovery) .clear-color {
  color: #ffffff;
  background: rgba(1, 5, 14, 0.54);
}

.site-theme-1:not(.home-theme-discovery) .button.primary {
  color: #020713;
}

.site-theme-1:not(.home-theme-discovery) .button.secondary {
  color: #ffffff;
}

.site-theme-1:not(.home-theme-discovery) .button.secondary:hover {
  color: var(--theme-gold-soft);
}

/* Theme #1 high-contrast fixes for light header and CTA blocks */
.site-theme-1 .site-header,
.site-theme-1:not(.home-theme-discovery) .site-header {
  background: rgba(255, 255, 255, 0.96);
}

.site-theme-1 .brand span,
.site-theme-1 .site-nav a,
.site-theme-1 .header-note,
.site-theme-1 .language-current,
.site-theme-1:not(.home-theme-discovery) .brand span,
.site-theme-1:not(.home-theme-discovery) .site-nav a,
.site-theme-1:not(.home-theme-discovery) .header-note,
.site-theme-1:not(.home-theme-discovery) .language-current {
  color: #071225 !important;
  text-shadow: none;
}

.site-theme-1 .header-note span,
.site-theme-1:not(.home-theme-discovery) .header-note span {
  color: #071225 !important;
  text-decoration-color: #f5a623;
}

.site-theme-1 .site-nav a.active,
.site-theme-1:not(.home-theme-discovery) .site-nav a.active {
  color: #071225 !important;
  background: #fff1d5;
}

.site-theme-1 .site-nav .nav-cta,
.site-theme-1:not(.home-theme-discovery) .site-nav .nav-cta {
  color: #ffffff !important;
  background: #0f5eff;
}

.site-theme-1:not(.home-theme-discovery) .demo-next-steps {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background:
    radial-gradient(circle at 88% 0%, rgba(245, 166, 35, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(6, 26, 61, 0.96), rgba(2, 7, 19, 0.96)) !important;
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-theme-1:not(.home-theme-discovery) .demo-next-steps h2,
.site-theme-1:not(.home-theme-discovery) .demo-next-steps p {
  color: #ffffff !important;
}

.site-theme-1:not(.home-theme-discovery) .demo-next-steps .section-label {
  color: #f5a623 !important;
  background: rgba(2, 7, 19, 0.86);
}

.site-theme-1 .site-nav a {
  position: relative;
  overflow: hidden;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 220ms ease,
    transform 180ms ease;
}

.site-theme-1 .site-nav a::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 8px;
  left: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #f5a623, #70a8ff, transparent);
  opacity: 0;
  transform: translateX(-42%) scaleX(0.25);
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-theme-1 .site-nav a:hover,
.site-theme-1 .site-nav a:focus-visible {
  color: #071225 !important;
  background: rgba(245, 166, 35, 0.16);
  box-shadow:
    0 0 0 1px rgba(245, 166, 35, 0.18),
    0 0 22px rgba(245, 166, 35, 0.20),
    0 10px 24px rgba(7, 18, 37, 0.10);
  transform: translateY(-1px);
}

.site-theme-1 .site-nav a:hover::after,
.site-theme-1 .site-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.site-theme-1 .site-nav .nav-cta:hover,
.site-theme-1 .site-nav .nav-cta:focus-visible {
  color: #ffffff !important;
  background: #0f5eff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 28px rgba(15, 94, 255, 0.34),
    0 12px 26px rgba(15, 94, 255, 0.20);
}

.site-theme-1:not(.home-theme-discovery) .not-sure-note,
.site-theme-1:not(.home-theme-discovery) .monthly-note,
.site-theme-1:not(.home-theme-discovery) .package-faq-link {
  color: #ffffff !important;
}

.best-seller,
.site-theme-1:not(.home-theme-discovery) .best-seller {
  color: #f5a623 !important;
  text-shadow:
    0 0 12px rgba(245, 166, 35, 0.42),
    0 0 26px rgba(245, 166, 35, 0.22);
}

.site-theme-1:not(.home-theme-discovery) .design-form .form-row > label,
.site-theme-1:not(.home-theme-discovery) .design-form legend {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(112, 168, 255, 0.30);
  border-radius: 999px;
  color: #dce8fb !important;
  background: rgba(2, 7, 19, 0.92);
  box-shadow:
    0 0 18px rgba(112, 168, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  line-height: 1.1;
}

.site-theme-1:not(.home-theme-discovery) .design-form .checkbox-grid label {
  color: var(--theme-copy) !important;
}

.site-theme-1:not(.home-theme-discovery) .design-kickoff .section-label,
.site-theme-1:not(.home-theme-discovery) .design-form legend {
  color: #f5a623 !important;
  text-shadow:
    0 0 12px rgba(245, 166, 35, 0.34),
    0 0 24px rgba(245, 166, 35, 0.16);
}

.site-theme-1:not(.home-theme-discovery) .color-choice-grid .form-row {
  gap: 8px;
  padding: 14px;
}

.site-theme-1:not(.home-theme-discovery) .design-form input[type="color"] {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 5px;
  border: 1px solid rgba(245, 166, 35, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.16), rgba(112, 168, 255, 0.08)),
    rgba(2, 7, 19, 0.84);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(245, 166, 35, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  cursor: pointer;
}

.site-theme-1:not(.home-theme-discovery) .design-form input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.site-theme-1:not(.home-theme-discovery) .design-form input[type="color"]::-webkit-color-swatch {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(2, 7, 19, 0.18);
}

.site-theme-1:not(.home-theme-discovery) .design-form input[type="color"]::-moz-color-swatch {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(2, 7, 19, 0.18);
}

.site-theme-1:not(.home-theme-discovery) .design-form input[type="color"].color-unselected::-webkit-color-swatch {
  background: linear-gradient(180deg, #ffffff, #eef5ff);
}

.site-theme-1:not(.home-theme-discovery) .design-form input[type="color"].color-unselected::-moz-color-swatch {
  background: linear-gradient(180deg, #ffffff, #eef5ff);
}

.site-theme-1:not(.home-theme-discovery) .design-form input[type="color"].color-unselected {
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.16), rgba(112, 168, 255, 0.08)),
    rgba(2, 7, 19, 0.84);
}

.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-button,
.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-options,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-button,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-options,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-button,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-options {
  border-color: rgba(245, 166, 35, 0.40);
  color: #071225;
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-button span,
.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-options button,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-button span,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-options button,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-button span,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-options button {
  color: #071225;
}

.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-button::after,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-button::after,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-button::after {
  border-color: #071225;
}

.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-options button:hover,
.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-options button:focus,
.site-theme-1:not(.home-theme-discovery) .design-form #siteStyle + .custom-select .custom-select-options button.selected,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-options button:hover,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-options button:focus,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select .custom-select-options button.selected,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-options button:hover,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-options button:focus,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select .custom-select-options button.selected {
  color: #071225;
  background: #fff1d5;
}

.site-theme-1:not(.home-theme-discovery) .design-form .form-row:has(.custom-select.open),
.site-theme-1:not(.home-theme-discovery) .design-form .custom-select.open,
.site-theme-1:not(.home-theme-discovery) .modal-form .form-row:has(.custom-select.open),
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select.open,
.site-theme-1:not(.home-theme-discovery) .contact-form .form-row:has(.custom-select.open),
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select.open {
  position: relative;
  z-index: 200;
}

.site-theme-1:not(.home-theme-discovery) .design-form fieldset:has(.custom-select.open) {
  position: relative;
  z-index: 180;
  overflow: visible;
}

.site-theme-1:not(.home-theme-discovery) .design-form .custom-select.open .custom-select-options,
.site-theme-1:not(.home-theme-discovery) .modal-form .custom-select.open .custom-select-options,
.site-theme-1:not(.home-theme-discovery) .contact-form .custom-select.open .custom-select-options {
  z-index: 220;
}

.site-theme-1:not(.home-theme-discovery) .design-form .clear-color {
  width: fit-content;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid rgba(245, 166, 35, 0.34);
  border-radius: 999px;
  color: #dce8fb;
  background: rgba(2, 7, 19, 0.78);
  box-shadow: none;
  font-size: 0.76rem;
  line-height: 1;
}

.site-theme-1:not(.home-theme-discovery) .design-form .clear-color:hover {
  border-color: rgba(245, 166, 35, 0.70);
  color: #f5a623;
  background: rgba(245, 166, 35, 0.10);
}

.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-browser,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .package-details-list li {
  color: #071225;
}

.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock p,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock span,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock input,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock textarea,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock label,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock b,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .package-details-list li {
  color: #071225 !important;
}

.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .preview-mock strong {
  color: #f5a623 !important;
}

.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .package-details-list li {
  background: rgba(255, 255, 255, 0.94);
}

.site-theme-1:not(.home-theme-discovery) .package-details-price,
.site-theme-1:not(.home-theme-discovery) .addon-preview-panel .package-details-price,
.site-theme-1:not(.home-theme-discovery) .package-details-panel .package-details-price {
  color: #f5a623 !important;
  text-shadow:
    0 0 12px rgba(245, 166, 35, 0.36),
    0 0 26px rgba(245, 166, 35, 0.18);
}

.site-theme-1:not(.home-theme-discovery) .package-details-panel .package-details-list li {
  color: #071225 !important;
  background: rgba(255, 255, 255, 0.94);
}

.site-theme-1:not(.home-theme-discovery) .package-details-panel .package-details-list li::before {
  color: #f5a623;
}

.site-theme-1:not(.home-theme-discovery) .faq-question {
  color: #f5a623 !important;
  text-shadow:
    0 0 10px rgba(245, 166, 35, 0.22),
    0 0 22px rgba(245, 166, 35, 0.12);
}

.site-theme-1:not(.home-theme-discovery) .faq-question::after {
  color: #f5a623;
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-panel {
  color: #071225;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 166, 35, 0.10), transparent 18rem),
    linear-gradient(180deg, #ffffff, #fffdf8);
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-panel h2,
.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-form label,
.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-contact-card h3,
.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-contact-card strong {
  color: #071225 !important;
  text-shadow: none;
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-form input,
.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-form textarea {
  border-color: #d8e4f7;
  color: #071225;
  background: #ffffff;
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-form input::placeholder,
.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-form textarea::placeholder {
  color: rgba(7, 18, 37, 0.58);
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-form .custom-select-button,
.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-form .custom-select-options {
  border-color: #d8e4f7;
  color: #071225;
  background: #ffffff;
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-contact-card {
  border-color: #d8e4f7;
  color: #071225;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 166, 35, 0.10), transparent 12rem),
    #fffaf0;
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-contact-card p,
.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-contact-card span,
.site-theme-1:not(.home-theme-discovery) #contact-modal .form-note {
  color: #63708a !important;
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .section-label {
  color: #f5a623 !important;
  background: rgba(2, 7, 19, 0.88);
}

.site-theme-1:not(.home-theme-discovery) #contact-modal .modal-close {
  color: #071225;
  background: #ffffff;
}

body.language-gate-active {
  overflow: hidden;
}

body.language-gate-active > :not(.language-gate) {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 28% 22%, rgba(245, 166, 35, 0.28), transparent 20rem),
    radial-gradient(circle at 72% 70%, rgba(60, 132, 255, 0.24), transparent 22rem),
    rgba(2, 8, 20, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.language-gate.open {
  opacity: 1;
  visibility: visible;
}

.language-gate.closing {
  opacity: 0;
  visibility: visible;
}

.language-gate-panel {
  width: min(560px, 100%);
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(245, 166, 35, 0.42);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 239, 255, 0.92)),
    radial-gradient(circle at top right, rgba(245, 166, 35, 0.18), transparent 12rem);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), 0 0 50px rgba(245, 166, 35, 0.18);
  color: #071225;
  text-align: center;
  transform: translateY(42px) scale(0.98);
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
}

.language-gate.open .language-gate-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.language-gate.closing .language-gate-panel {
  transform: translateY(46px) scale(0.98);
  opacity: 0;
}

.language-gate-panel h2 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.02;
  color: #071225;
}

.language-gate-panel p:not(.section-label) {
  max-width: 430px;
  margin: 0 auto;
  color: #233656;
  font-size: 1.05rem;
  line-height: 1.55;
}

.language-gate-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.language-gate-actions .button {
  min-width: 150px;
}

html.language-spanish .package-label,
html.language-spanish .section-label,
html.language-spanish .eyebrow {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.22;
  letter-spacing: 0.06em;
}

html.language-spanish .site-theme-1:not(.home-theme-discovery) .price-card h2,
html.language-spanish .coming-soon-card h2 {
  font-size: clamp(2.05rem, 4.1vw, 4.25rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
  word-break: normal;
}

html.language-spanish .site-theme-1:not(.home-theme-discovery) .price-card,
html.language-spanish .site-theme-1:not(.home-theme-discovery) .coming-soon-card {
  min-width: 0;
  overflow: visible;
  align-content: start;
}

html.language-spanish .site-theme-1:not(.home-theme-discovery) .price-card p,
html.language-spanish .site-theme-1:not(.home-theme-discovery) .price-card li,
html.language-spanish .site-theme-1:not(.home-theme-discovery) .coming-soon-card p,
html.language-spanish .site-theme-1:not(.home-theme-discovery) .coming-soon-card li {
  overflow-wrap: anywhere;
}

html.language-spanish .site-theme-1:not(.home-theme-discovery) .package-preview-grid {
  align-items: stretch;
}

html.language-spanish .button,
html.language-spanish .nav-cta,
html.language-spanish .language-current {
  white-space: normal;
  line-height: 1.15;
}

html.language-spanish .modal-panel h2,
html.language-spanish .page-hero h1,
html.language-spanish .packages-heading h2,
html.language-spanish .section h2 {
  overflow-wrap: anywhere;
  line-height: 1.08;
}

html.language-spanish .modal-panel,
html.language-spanish .addon-preview-panel,
html.language-spanish .package-details-panel {
  overflow-x: hidden;
}

.site-theme-1:not(.home-theme-discovery) {
  background:
    radial-gradient(circle at calc(10% + (var(--bg-shift) * 0.12)) calc(6% + var(--bg-shift)), rgba(32, 113, 255, 0.52), transparent 30%),
    radial-gradient(circle at calc(90% - (var(--bg-shift) * 0.10)) calc(10% - var(--bg-shift)), rgba(245, 166, 35, 0.34), transparent 28%),
    radial-gradient(circle at calc(48% + (var(--bg-shift) * 0.08)) calc(48% + (var(--bg-shift) * 0.16)), rgba(14, 58, 139, 0.78), transparent 44%),
    #071225;
}

.site-theme-1:not(.home-theme-discovery)::before {
  transform: translate3d(0, calc(var(--bg-shift) * -0.55), 0);
  opacity: 0.82;
}

.site-theme-1:not(.home-theme-discovery)::after {
  content: "";
  position: fixed;
  inset: -18vh -14vw;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(12% + (var(--bg-shift) * 0.16)) calc(20% + var(--bg-shift)), rgba(245, 166, 35, 0.26), transparent 26%),
    radial-gradient(circle at calc(82% - (var(--bg-shift) * 0.14)) calc(32% - var(--bg-shift)), rgba(15, 94, 255, 0.34), transparent 30%),
    radial-gradient(circle at calc(52% + (var(--bg-shift) * 0.08)) calc(84% - (var(--bg-shift) * 0.18)), rgba(245, 166, 35, 0.18), transparent 25%);
  mix-blend-mode: screen;
  opacity: 0.72;
  transform: translate3d(0, calc(var(--bg-shift) * 0.72), 0) scale(1.04);
  transition: transform 80ms linear;
}

.contact-form,
.modal-form,
.design-form {
  position: relative;
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you-main {
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  padding: 48px 18px;
}

.thank-you-panel {
  width: min(100%, 680px);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(3, 12, 31, 0.88);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  text-align: center;
}

.thank-you-panel img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.12);
}

.thank-you-panel h1 {
  margin: 14px 0;
  color: #ffffff;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.98;
}

.thank-you-panel p {
  max-width: 520px;
  margin: 0 auto 14px;
  color: var(--theme-copy);
  font-size: 1.08rem;
}

.thank-you-return {
  color: var(--theme-muted) !important;
}

.thank-you-panel .button {
  margin-top: 14px;
}

@media (max-width: 620px) {
  .home-theme-discovery .site-header,
  .site-theme-1 .site-header,
  .site-theme-1:not(.home-theme-discovery) .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background:
      linear-gradient(180deg, rgba(2, 7, 19, 0.96), rgba(6, 22, 50, 0.92)) !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  }

  .home-theme-discovery .brand span,
  .site-theme-1 .brand span,
  .site-theme-1:not(.home-theme-discovery) .brand span {
    color: #ffffff;
  }

  .home-theme-discovery .header-note,
  .site-theme-1 .header-note,
  .site-theme-1:not(.home-theme-discovery) .header-note {
    display: none;
  }

  .home-theme-discovery .nav-toggle,
  .site-theme-1 .nav-toggle,
  .site-theme-1:not(.home-theme-discovery) .nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(245, 166, 35, 0.72);
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.12);
    box-shadow: none;
  }

  .home-theme-discovery .nav-toggle span,
  .site-theme-1 .nav-toggle span,
  .site-theme-1:not(.home-theme-discovery) .nav-toggle span {
    background: var(--yellow);
  }

  .home-theme-discovery .site-nav,
  .site-theme-1 .site-nav,
  .site-theme-1:not(.home-theme-discovery) .site-nav {
    right: 14px;
    left: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
      radial-gradient(circle at top right, rgba(245, 166, 35, 0.16), transparent 13rem),
      linear-gradient(180deg, rgba(10, 37, 84, 0.98), rgba(2, 7, 19, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  }

  .home-theme-discovery .site-nav a,
  .site-theme-1 .site-nav a,
  .site-theme-1:not(.home-theme-discovery) .site-nav a {
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
  }

  .home-theme-discovery .site-nav a.active,
  .site-theme-1 .site-nav a.active,
  .site-theme-1:not(.home-theme-discovery) .site-nav a.active,
  .home-theme-discovery .site-nav .nav-cta,
  .site-theme-1 .site-nav .nav-cta,
  .site-theme-1:not(.home-theme-discovery) .site-nav .nav-cta {
    color: var(--black);
    background: linear-gradient(135deg, var(--yellow), #ffd27a);
  }

  .discovery-hero {
    gap: 24px;
    min-height: auto;
    padding: 30px 18px 34px;
  }

  .discovery-hero::before {
    inset: 14px 10px 12px;
    border-radius: 8px;
  }

  .discovery-hero::after,
  .discovery-orbit {
    display: none;
  }

  .discovery-kicker {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .discovery-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 13vw, 3.35rem);
    line-height: 1;
  }

  .discovery-lead {
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .discovery-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .discovery-actions .button {
    width: 100%;
    justify-content: center;
  }

  .discovery-console {
    padding: 14px;
    border-radius: 8px;
  }

  .console-top {
    gap: 12px;
    padding: 4px 2px 12px;
  }

  .console-top img {
    width: 48px;
    height: 48px;
  }

  .console-top span {
    font-size: 0.68rem;
  }

  .console-top strong {
    font-size: 0.96rem;
  }

  .console-screen {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 12px;
    border-radius: 8px;
  }

  .site-preview {
    gap: 10px;
  }

  .preview-nav {
    padding: 8px;
    border-radius: 8px;
  }

  .preview-nav span {
    width: 70px;
  }

  .preview-nav i {
    width: 24px;
  }

  .preview-hero {
    grid-template-columns: 1fr 74px;
    gap: 10px;
    min-height: 116px;
    padding: 13px;
    border-radius: 8px;
  }

  .preview-hero strong {
    font-size: 1.02rem;
  }

  .preview-hero p {
    font-size: 0.78rem;
  }

  .preview-logo-mark {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }

  .preview-cards {
    gap: 7px;
  }

  .preview-cards article {
    min-height: 64px;
    padding: 9px;
    border-radius: 8px;
  }

  .preview-cards span {
    font-size: 0.74rem;
  }

  .preview-cards p {
    margin-top: 12px;
  }

  .preview-phone {
    display: none;
  }

  .console-metrics {
    gap: 8px;
    margin-top: 12px;
  }

  .console-metrics p {
    min-height: 44px;
    padding: 10px;
    border-radius: 8px;
  }

  .discovery-anchor-nav {
    width: min(calc(100% - 28px), 1160px);
    margin-top: 14px;
    padding: 8px;
    border-radius: 8px;
  }

  .discovery-anchor-nav a {
    min-width: max-content;
    padding: 9px 12px;
    border-radius: 8px;
  }

  .discovery-statement,
  .discovery-panels,
  .discovery-workflow,
  .discovery-split,
  .discovery-reviews {
    width: min(calc(100% - 28px), 1160px);
    border-radius: 8px;
  }

  .discovery-statement {
    padding: 24px 18px;
  }

  .discovery-statement h2,
  .discovery-workflow h2,
  .discovery-split h2,
  .discovery-reviews h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.05;
  }

  .discovery-panels article,
  .workflow-track article,
  .split-card,
  .split-list p,
  .review-strip article {
    border-radius: 8px;
  }

  .contact-layout,
  .services-hero,
  .intro-grid,
  .process-detail-grid,
  .add-ons,
  .modal-panel {
    gap: 18px;
  }

  .contact-form,
  .design-form,
  .modal-form {
    padding: 18px;
  }

  .modal-panel {
    width: min(calc(100% - 20px), 980px);
    max-height: calc(100vh - 20px);
    padding: 18px;
    border-radius: 8px;
  }

  .page-hero h1,
  .section-heading h2,
  .packages-heading h2,
  .add-ons-heading h2,
  .design-kickoff h1,
  .design-kickoff h2 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    line-height: 1.05;
  }

  .button,
  .custom-select-button,
  input,
  textarea,
  select {
    border-radius: 8px;
  }
}

@media (max-width: 620px) {
  .home-theme-discovery .brand span,
  .site-theme-1 .brand span,
  .site-theme-1:not(.home-theme-discovery) .brand span {
    color: #ffffff !important;
  }

  .discovery-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 10.5vw, 2.85rem);
  }

  .console-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .console-metrics p {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .console-metrics p span {
    font-size: 0.78rem;
  }

  .preview-hero {
    min-height: 104px;
  }

  .preview-hero p {
    display: none;
  }
}

.summary-panel .summary-item {
  background: #f8fbff !important;
  border-color: rgba(15, 94, 255, 0.18) !important;
}

.summary-panel .summary-item strong {
  color: #071225 !important;
  text-shadow: none !important;
}

.summary-panel .summary-item span {
  color: #1b3765 !important;
  text-shadow: none !important;
}
