/* PREFIX */
:root {
  --color-bg: #000000;
  --color-bg-2: #0a0a0a;
  --color-primary: #0a84ff;
  --color-secondary: #bf5af2;
  --color-tertiary: #ff375f;
  --color-text: #f5f5f7;
  --color-text-sub: #98989d;
  --color-btn-bg: #0a84ff;
  --color-border: rgba(245, 245, 247, 0.08);
  --color-border-strong: rgba(245, 245, 247, 0.18);
  --color-surface: rgba(245, 245, 247, 0.04);

  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 128px;

  --container: 1280px;
  --gutter: 56px;
}
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html,
body {
    font-family: 'Syne', 'DM Sans', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;

    min-height: 100%;
}

#webgl {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#webgl canvas {
    width: 100%;
    height: 100%;
    display: block;
}

a{
    text-decoration: none;
}



/* BOXES */

.box {
    border-radius: 24px;
    background: linear-gradient(0deg, #E6E6E6 0%, #E6E6E6 100%), rgba(51, 51, 51, 0.30);
    background-blend-mode: plus-darker, normal;
    box-shadow: 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.75) inset, 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.80) inset, 1px 1px 1px 0.5px rgba(255, 255, 255, 0.75) inset, -1px -1px 1px 0.5px rgba(255, 255, 255, 0.75) inset, 0 0 1px 1px rgba(255, 255, 255, 0.15) inset, 0 0 1px 1px #999 inset, 0 0 16px 0 #F2F2F2 inset, 0 0 2px 0 rgba(0, 0, 0, 0.10), 0 1px 8px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(6px);
}

/* FONTS */


h1 {
    font-family: 'Syne';
    font-size: 120px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    color: #F5F5F7;
}

h2 {
    font-family: 'Syne';
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 99%;
    color: #F5F5F7;
}

h3{
font-family: 'Syne';
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 150%;
color: #F5F5F7;
}

p{
font-family: 'DM Sans';
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 240%;
color: #F5F5F7;
}

h4{
    font-family: "DM Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}


h5{
    font-family: "DM Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
/* BUTTON */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 8px 26px;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn {
  background: var(--color-btn-bg);
  color: var(--color-text);
}

.btn:hover {
  background: #1a8eff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}

.btn-ghost:hover {
  border-color: var(--color-text);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}



/* PREFIX DONE <--------- */



/* HEADER */


.nav-logo{
    color: var(--color-text);
font-family: 'Syne';
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 150%;
width: 60px;
text-decoration: none;
}
.nav-logo a{
  text-decoration: none;
  color: white;
}
.nav{

border-bottom: 1px solid  #FFF;
background: #1C1C1E;
backdrop-filter: blur(10px);

display: flex;
width: auto;
height: 64px;
padding: 0 80px;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 1000;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 32px;  

}
.nav-links a{
    font-family: 'Syne';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color:#F5F5F7;
}

.nav .btn{
    width: 160px;
}




/* HERO */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: white;
}

/* container for text */
.hero-content {
  position: absolute;
  top: 242px;   /* Y */
  left: 80px;   /* X */
}

/* REDO */
.hero-content p {

  font-size: 12px;
}

/* text height and spacing */

.hero-content h1 {

  line-height: 1;
  letter-spacing: -2px;
}

/* each word on its own line */

.hero-content span {
  display: block;
}


/* Positioning */

.hero-line2 {
  margin-left: 355px;
}

.hero-line3 {
  margin-left: 156px;
}







/* SERVICES */

.services {
    display: flow-root;
}

.services-header span{
    display: block;
}


.services-line1 {
  margin-left: 80px;
}

.services-line2 {
  margin-left: 156px;
}



/* boxes */


.service-2{
  display: flex;
    height: 10vh;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    margin-bottom: 20vh;
}

.service {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    margin-bottom: 20vh;
}

.service-box-1,
.service-box-2,
.service-box-3 
.service-box-4{
    will-change: opacity;
}

.service-box-1, .service-box-2, .service-box-3 {
    /* Layout */
    display: flex;
    width: 1200px;
    height: 90vh;
   
    padding: 100px 40px;
    gap: 70px;

    /* Visual */
    border-radius: 24px;
    background: rgba(51, 51, 51, 0.53);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  box-shadow: 3px 3px 1px -3.5px rgb(255, 255, 255) inset, 1px 3px 0.5px -3.5px rgba(255, 255, 255, 0.075) inset, 1px 1px 1px 0.5px rgba(255, 255, 255, 0.096) inset, -1px -1px 1px 0.5px rgba(255, 255, 255, 0.082) inset, 0 0 1px 1px rgba(255, 255, 255, 0.15) inset, 0 0 1px 1px #99999919 inset, 0 0 16px 0 #f2f2f236 inset, 0 0 2px 0 rgba(0, 0, 0, 0.10), 0 3px 8px 0 rgba(0, 0, 0, 0.10);
}

/* VIDEO */

.service-content-1{
    width: 50%;
    height: 100%;
   
    
}
.service-content-1 h2 {
    font-size: 96px;
  line-height: 0.95;

}

.service-content-1 p {
    line-height: 1.4;
    padding-bottom: 40px;

}

.service-content-2{
    width: 50%;
    height: 100%;
    
    
}
.service-content-2 h2 {
    font-size: 96px;
  line-height: 0.95;
  padding-top: 100px;
  padding-bottom: 20px;
}

.service-content-2 p {
    line-height: 1.4;
    padding-bottom: 40px;

}


.service-content-3{
    width: 50%;
    height: 100%;

    
}
.service-content-3 h2 {
    font-size: 96px;
  line-height: 0.95;
  padding-bottom: 40px;
  
}

.service-content-3 p {
    line-height: 1.4;
    padding-bottom: 40px;

}
.service-video-3 {
  width: 50%;
  height: 100%;
  overflow: hidden;

}

.service-video-3 video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.service-video-2 {
  width: 50%;
  height: 100%;
  overflow: hidden;

}

.service-video-2 video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.service-video-1 {
  width: 50%;
  height: 100%;
  overflow: hidden;

}

.service-video-1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* include <-- */


.pricing{
    height: 130vh;
    justify-content: center;
    align-items: center;
    align-content: center;
    justify-items: center;
    margin-bottom: 200px;
}


.pricing-header {
    text-align: center;
    padding-bottom: 30vh;
    
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  align-items: stretch;
}

.pricing-card{
  border-radius: 24px;
    background: rgba(51, 51, 51, 0.53);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  box-shadow: 3px 3px 1px -3.5px rgb(255, 255, 255) inset, 1px 3px 0.5px -3.5px rgba(255, 255, 255, 0.075) inset, 1px 1px 1px 0.5px rgba(255, 255, 255, 0.096) inset, -1px -1px 1px 0.5px rgba(255, 255, 255, 0.082) inset, 0 0 1px 1px rgba(255, 255, 255, 0.15) inset, 0 0 1px 1px #99999919 inset, 0 0 16px 0 #f2f2f236 inset, 0 0 2px 0 rgba(0, 0, 0, 0.10), 0 3px 8px 0 rgba(0, 0, 0, 0.10);


  border-radius: 70px;
  padding: 60px 21px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-origin: center;
  cursor: pointer;
}

.pricing-card:hover {
  transform: scale(1.15);
  z-index: 2;
}


.pricing ul {

  list-style: none;
  padding: 0;
  margin: 0;
}


.pricing ul {
  
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 240%;
    color: var(--color-text);
}


.pricing-price {
  font-size: 18px;   /* "from" */
}

.pricing-price strong {
    font-family: 'Syne';
  font-size: 32px;   /* "$1,500" */
  font-weight: 700;
}

.pricing-card ul{
  border-bottom:1px solid white;
  border-top:1px solid white;
}




/* TESTIMONIALS */

.testimonials {
  background: #000;
  padding-top: 200px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 200px;
}

.testimonials-header {
  text-align: center;
  padding-bottom: 80px;
}

.testimonials-header h2 {
  font-size: 80px;
  line-height: 1;
}

.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #000;
  border: 1px solid var(--color-border-strong);
  border-radius: 24px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  color: var(--color-text);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-text);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.testimonial-author strong {
  font-family: 'Syne';
  font-size: 18px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--color-text-sub);
}

@media (max-width: 1240px) {
  .testimonials-grid {
    width: calc(100vw - 40px);
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-header h2 { font-size: 64px; }
  .testimonials-header { padding-bottom: 60px; }
}

@media (max-width: 720px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 20px;
  }
  .testimonials-header h2 { font-size: 48px; }
  .testimonial-card {
    padding: 32px 24px;
    gap: 24px;
  }
  .testimonial-quote { font-size: 15px; }
  .testimonial-author strong { font-size: 17px; }
}

@media (max-width: 480px) {
  .testimonials-grid {
    width: calc(100vw - 24px);
    gap: 16px;
  }
  .testimonials-header h2 { font-size: 36px; }
  .testimonials-header { padding-bottom: 40px; }
  .testimonial-card {
    padding: 24px 20px;
    gap: 20px;
    border-radius: 20px;
  }
  .testimonial-quote { font-size: 14px; line-height: 1.55; }
  .testimonial-author { padding-top: 16px; }
  .testimonial-author strong { font-size: 16px; }
  .testimonial-author span { font-size: 13px; }
}


/* WEBSITE PREVIEW */

.website-preview{
  padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    min-height: 100vh;
    background-color: var(--color-bg);
    align-items: center;
}

.website-preview-header {
    text-align: center;
    padding-top: 114px;
}

.website-preview-box{

    /* Layout */
    width: 1200px;
    min-height: 90vh;
    padding: 36px 40px 48px;


    /* Visual */
    border-radius: 24px;
    background: rgba(80, 80, 80, 0.55);
     backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
     border: 1px solid rgba(245, 245, 247, 0.18);
     background-blend-mode: plus-lighter, normal;
box-shadow: 0 4px 250px 20px rgba(255, 255, 255, 0.60), 3px 3px 0.5px -3.5px #FFF inset, 2px 2px 0.5px -2px #262626 inset, -2px -2px 0.5px -2px #262626 inset, 0 0 0 1px #A6A6A6 inset, 0 0 8px 0 #F2F2F2 inset, 0 0 2px 0 rgba(0, 0, 0, 0.10), 0 1px 8px 0 rgba(0, 0, 0, 0.10);
backdrop-filter: blur(6px);

}


/* =========================================================
   WEBSITE PREVIEW — INNER COMPONENT (scoped to .website-preview-box)
   ========================================================= */

.website-preview-box {
  --wpb-radius: 18px;
  --wpb-radius-sm: 10px;
  --wpb-bg-deep: rgba(20, 20, 22, 0.55);
  --wpb-bg-soft: rgba(255, 255, 255, 0.06);
  --wpb-bg-soft-2: rgba(255, 255, 255, 0.10);
  --wpb-border: rgba(255, 255, 255, 0.12);
  --wpb-border-strong: rgba(255, 255, 255, 0.28);
  --wpb-text: #f5f5f7;
  --wpb-text-sub: rgba(245, 245, 247, 0.62);
  --wpb-accent: #5b8cff;

  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ===== Step bar ===== */
.website-preview-box .wpb-stepbar {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  color: var(--wpb-text-sub);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.website-preview-box .wpb-step-label,
.website-preview-box .wpb-step-percent {
  white-space: nowrap;
  color: var(--wpb-text);
  font-weight: 500;
}
.website-preview-box .wpb-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.website-preview-box .wpb-progress-fill {
  width: 29%;
  height: 100%;
  background: linear-gradient(90deg, #6ea0ff, #b89cff);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(110, 160, 255, 0.45);
}

/* ===== Main split: configurator + preview ===== */
.website-preview-box .wpb-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

/* ===== Left: configurator panel ===== */
.website-preview-box .wpb-config {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.website-preview-box .wpb-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--wpb-text);
  line-height: 1.2;
}
.website-preview-box .wpb-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--wpb-text-sub);
  line-height: 1.5;
  margin-bottom: 18px;
}
.website-preview-box .wpb-arrow {
  color: var(--wpb-text);
}

/* ===== 8-card grid ===== */
.website-preview-box .wpb-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.website-preview-box .wpb-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}
.website-preview-box .wpb-card-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.website-preview-box .wpb-card {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--wpb-radius-sm);
  overflow: hidden;
  border: 1px solid var(--wpb-border);
  background: var(--wpb-bg-deep);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.website-preview-box .wpb-card-wrap:hover .wpb-card {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  border-color: var(--wpb-border-strong);
}
.website-preview-box .wpb-card-wrap input:checked ~ .wpb-card {
  border-color: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.85),
    0 14px 30px rgba(0, 0, 0, 0.55);
}
.website-preview-box .wpb-card-name {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--wpb-text-sub);
  text-align: center;
}
.website-preview-box .wpb-card-wrap input:checked ~ .wpb-card-name {
  color: var(--wpb-text);
}

/* Card top bar (3 dots) */
.website-preview-box .wpb-card-bar {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.website-preview-box .wpb-card-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.website-preview-box .wpb-card-bar span:nth-child(1) { background: #ff5f57; }
.website-preview-box .wpb-card-bar span:nth-child(2) { background: #febc2e; }
.website-preview-box .wpb-card-bar span:nth-child(3) { background: #28c840; }

.website-preview-box .wpb-card-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: calc(100% - 21px);
}
.website-preview-box .wpb-card-nav {
  display: flex;
  gap: 5px;
  margin-bottom: 2px;
}
.website-preview-box .wpb-card-nav i {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.45;
}
.website-preview-box .wpb-card-brand {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.website-preview-box .wpb-card-slogan {
  font-family: var(--font-body);
  font-size: 8px;
  opacity: 0.7;
}
.website-preview-box .wpb-card-cta {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: currentColor;
  color: #fff;
  position: relative;
}
.website-preview-box .wpb-card-cta::after {
  /* keep CTA text above the colored bg */
  content: "";
}
.website-preview-box .wpb-card-blocks {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.website-preview-box .wpb-card-blocks div {
  height: 14px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.18;
}
.website-preview-box .wpb-card-blocks--grid {
  grid-template-columns: 1fr 1fr 1fr;
}

/* Card 1 — Modern Minimal */
.website-preview-box .wpb-card--modern {
  background: #fafafa;
  color: #1a1a1a;
}
.website-preview-box .wpb-card--modern .wpb-card-cta {
  background: #ff7a3d;
  color: #fff;
}

/* Card 2 — Luxury Dark */
.website-preview-box .wpb-card--luxury {
  background: linear-gradient(180deg, #0a0a0c, #14141a);
  color: #f1e6c8;
}
.website-preview-box .wpb-card--luxury .wpb-card-brand {
  font-family: 'Syne', serif;
  letter-spacing: 0.04em;
}
.website-preview-box .wpb-card--luxury .wpb-card-cta {
  background: linear-gradient(135deg, #d4b25a, #8a6a26);
  color: #0a0a0c;
}

/* Card 3 — Fresh Salon */
.website-preview-box .wpb-card--salon {
  background: linear-gradient(160deg, #fbe7e0 0%, #f9d4d4 60%, #f3c5d2 100%);
  color: #5a2a3a;
}
.website-preview-box .wpb-card--salon .wpb-card-blocks div {
  border-radius: 50%;
  height: 18px;
  opacity: 0.35;
}
.website-preview-box .wpb-card--salon .wpb-card-cta {
  background: #c9627c;
  color: #fff;
  border-radius: 999px;
}

/* Card 4 — Restaurant */
.website-preview-box .wpb-card--restaurant {
  background: linear-gradient(180deg, #2c1c10 0%, #4a2d18 100%);
  color: #f3d9b5;
}
.website-preview-box .wpb-card--restaurant .wpb-card-blocks div:first-child {
  background: linear-gradient(135deg, #b46a3a, #d59a64);
  opacity: 0.85;
  height: 22px;
}
.website-preview-box .wpb-card--restaurant .wpb-card-cta {
  background: #9c5a2a;
  color: #fff8ea;
}

/* Card 5 — Gym / Fitness */
.website-preview-box .wpb-card--gym {
  background: #0c0c0e;
  color: #fff;
}
.website-preview-box .wpb-card--gym .wpb-card-brand {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.website-preview-box .wpb-card--gym .wpb-card-cta {
  background: linear-gradient(90deg, #ff3b3b, #ff7a3d);
  color: #fff;
}
.website-preview-box .wpb-card--gym .wpb-card-blocks div {
  background: #ff3b3b;
  opacity: 0.25;
}

/* Card 6 — Clinic / Dentist */
.website-preview-box .wpb-card--clinic {
  background: #f4f8fc;
  color: #103b66;
}
.website-preview-box .wpb-card--clinic .wpb-card-cta {
  background: #2f7ad9;
  color: #fff;
}
.website-preview-box .wpb-card--clinic .wpb-card-blocks div {
  background: #2f7ad9;
  opacity: 0.18;
  border-radius: 6px;
}

/* Card 7 — Online Shop */
.website-preview-box .wpb-card--shop {
  background: #f9f7f3;
  color: #1a1a1a;
}
.website-preview-box .wpb-card--shop .wpb-card-cta {
  background: #1a1a1a;
  color: #fff;
}
.website-preview-box .wpb-card--shop .wpb-card-blocks div {
  background: linear-gradient(160deg, #d8d4cc, #f0ece4);
  opacity: 1;
  height: 20px;
  border-radius: 6px;
  position: relative;
}

/* Card 8 — Creative Bold */
.website-preview-box .wpb-card--creative {
  background:
    radial-gradient(circle at 20% 20%, #ffd25e 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, #ff5e9c 0%, transparent 55%),
    radial-gradient(circle at 50% 90%, #5e9bff 0%, transparent 60%),
    #221034;
  color: #fff;
}
.website-preview-box .wpb-card--creative .wpb-card-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
}
.website-preview-box .wpb-card--creative .wpb-card-cta {
  background: #fff;
  color: #221034;
}
.website-preview-box .wpb-card--creative .wpb-card-blocks div {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  border-radius: 999px;
}

/* ===== Right: live website preview ===== */
.website-preview-box .wpb-preview {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 0;
}
.website-preview-box .wpb-browser {
  width: 100%;
  min-height: 560px;
  border-radius: var(--wpb-radius);
  overflow: hidden;
  background: rgba(15, 15, 18, 0.85);
  border: 1px solid var(--wpb-border-strong);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  color: var(--wpb-text);
  transition:
    background 0.45s ease,
    color 0.45s ease,
    border-color 0.45s ease;
}
.website-preview-box .wpb-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.website-preview-box .wpb-url-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  max-width: 240px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 6px;
}
.website-preview-box .wpb-url-lock {
  width: 7px; height: 7px; border-radius: 50%;
  background: #28c840;
  flex-shrink: 0;
}
.website-preview-box .wpb-url-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.website-preview-box .wpb-browser-actions {
  display: flex; gap: 6px; flex-shrink: 0;
}
.website-preview-box .wpb-browser-actions span {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}
.website-preview-box .wpb-dots {
  display: flex;
  gap: 6px;
}
.website-preview-box .wpb-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.website-preview-box .wpb-dots span:nth-child(1) { background: #ff5f57; }
.website-preview-box .wpb-dots span:nth-child(2) { background: #febc2e; }
.website-preview-box .wpb-dots span:nth-child(3) { background: #28c840; }
.website-preview-box .wpb-nav-line {
  margin-left: auto;
  display: flex;
  gap: 8px;
}
.website-preview-box .wpb-nav-line span {
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.website-preview-box .wpb-nav-line span:last-child {
  background: rgba(255, 255, 255, 0.32);
  width: 36px;
}

.website-preview-box .wpb-browser-body {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
  color: inherit;
}
.website-preview-box .wpb-browser-body::-webkit-scrollbar { width: 6px; }
.website-preview-box .wpb-browser-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.18); border-radius: 999px;
}
.website-preview-box .wpb-browser-body::-webkit-scrollbar-track { background: transparent; }
/* Cap the browser height so internal content can scroll instead of stretching the page */
.website-preview-box .wpb-browser {
  max-height: 620px;
}
.website-preview-box .wpb-blob {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(180, 140, 255, 0.55) 0%,
    rgba(110, 160, 255, 0.35) 35%,
    rgba(255, 110, 200, 0.25) 65%,
    transparent 75%
  );
  filter: blur(28px);
  pointer-events: none;
}

/* Top nav inside preview */
.website-preview-box .wpb-pv-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 12px;
  min-width: 0;
}
.website-preview-box .wpb-pv-brand {
  display: inline-flex; align-items: center; gap: 8px; min-width: 0;
}
.website-preview-box .wpb-pv-brand-mark {
  width: 18px; height: 18px; border-radius: 6px;
  background: linear-gradient(135deg, var(--wpb-accent, #b48cff), color-mix(in srgb, var(--wpb-accent, #b48cff) 35%, #fff));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.website-preview-box .wpb-pv-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.website-preview-box .wpb-pv-links {
  display: flex; gap: 16px; flex-shrink: 0;
}
.website-preview-box .wpb-pv-links span {
  font-family: var(--font-body); font-size: 11px;
  color: currentColor; opacity: 0.65;
  white-space: nowrap;
}

/* Hero section (split layout default) */
.website-preview-box .wpb-pv-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.website-preview-box .wpb-pv-hero-text {
  display: flex; flex-direction: column; gap: 8px; min-width: 0;
}
.website-preview-box .wpb-pv-hero-visual {
  position: relative;
  height: 150px;
  min-width: 0;
}
.website-preview-box .wpb-pv-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.55;
}
.website-preview-box .wpb-pv-shape {
  position: absolute;
  pointer-events: none;
}
.website-preview-box .wpb-pv-shape-1 {
  top: 8px; right: 24px;
  width: 86px; height: 86px;
  border-radius: 26px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--wpb-accent, #b48cff) 75%, transparent), color-mix(in srgb, var(--wpb-accent, #b48cff) 20%, transparent));
  transform: rotate(-12deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.website-preview-box .wpb-pv-shape-2 {
  bottom: 6px; right: 86px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, color-mix(in srgb, var(--wpb-accent, #b48cff) 80%, #fff) 0%, color-mix(in srgb, var(--wpb-accent, #b48cff) 50%, transparent) 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.website-preview-box .wpb-hero {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 0.95;
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.02em;
  margin: 0;
  word-wrap: break-word;
}
.website-preview-box .wpb-slogan {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: currentColor;
  opacity: 0.7;
  margin: 0;
}

/* Section divider */
.website-preview-box .wpb-pv-section-head {
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
}
.website-preview-box .wpb-pv-section-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.7;
  white-space: nowrap;
}
.website-preview-box .wpb-pv-section-line {
  flex: 1; height: 1px;
  background: currentColor;
  opacity: 0.18;
}

/* Footer trust */
.website-preview-box .wpb-pv-foot {
  margin-top: auto;
  display: flex; align-items: center; gap: 12px;
  padding-top: 6px;
  position: relative; z-index: 1;
}
.website-preview-box .wpb-pv-stars {
  color: #ffc857;
  letter-spacing: 1px;
  font-size: 11px;
  flex-shrink: 0;
}
.website-preview-box .wpb-glassy-cta {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--wpb-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 18px rgba(0, 0, 0, 0.35);
}
.website-preview-box .wpb-glassy-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.website-preview-box .wpb-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}
.website-preview-box .wpb-feat {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.website-preview-box .wpb-feat-thumb {
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--wpb-accent, #b48cff) 65%, transparent), color-mix(in srgb, var(--wpb-accent, #b48cff) 25%, transparent));
  position: relative;
  overflow: hidden;
}
.website-preview-box .wpb-feat-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.32) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: wpbShimmer 3.5s ease-in-out infinite;
}
.website-preview-box .wpb-feat-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
}
.website-preview-box .wpb-feat-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: currentColor;
  opacity: 0.55;
}
.website-preview-box .wpb-trust {
  font-family: var(--font-body);
  font-size: 11px;
  color: currentColor;
  opacity: 0.65;
  margin: 0;
}

@keyframes wpbShimmer {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* ===== 9 configurator windows ===== */
.website-preview-box .wpb-windows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.website-preview-box .wpb-window {
  border-radius: 14px;
  background: var(--wpb-bg-soft);
  border: 1px solid var(--wpb-border);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.website-preview-box .wpb-window:hover {
  transform: translateY(-3px);
  background: var(--wpb-bg-soft-2);
  border-color: var(--wpb-border-strong);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}
.website-preview-box .wpb-window-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(180, 140, 255, 0.55), rgba(110, 160, 255, 0.45));
  margin-bottom: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.website-preview-box .wpb-window h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--wpb-text);
  letter-spacing: -0.01em;
}
.website-preview-box .wpb-window p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--wpb-text-sub);
}
.website-preview-box .wpb-window-value {
  margin-top: 6px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--wpb-text);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--wpb-border);
}

/* ===== Responsive ===== */
@media (max-width: 1240px) {
  .website-preview-box {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .website-preview-box .wpb-main {
    grid-template-columns: 1fr;
  }
  .website-preview-box .wpb-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .website-preview-box .wpb-windows {
    grid-template-columns: repeat(2, 1fr);
  }
  .website-preview-box .wpb-hero {
    font-size: 44px;
  }
}
@media (max-width: 600px) {
  .website-preview-box {
    padding: 24px 18px 32px;
  }
  .website-preview-box .wpb-card-grid,
  .website-preview-box .wpb-windows {
    grid-template-columns: 1fr;
  }
  .website-preview-box .wpb-hero {
    font-size: 36px;
  }
}



/* WORK — Apple-style scroll-driven macbook sequence */
.work{
  background-color: #000;
  position: relative;
  padding: 0;
  height: auto;
  min-height: 0;
}
.work-scroll {
  position: relative;
  height: 500vh;
}
.work-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 24px;
  padding: 0 40px;
  overflow: hidden;
}
.work-captions {
  position: relative;
  height: 220px;
  width: 100%;
  max-width: 460px;
  text-align: center;
}
.work-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  color: var(--color-text);
}
.work-caption.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.work-caption h3 {
  font-family: 'Syne';
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}
.work-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .work-sticky {
    padding: 0 24px;
    gap: 8px;
  }
  .work-caption h3 { font-size: 16px; max-width: 280px; }
}

@media (max-width: 820px) {
  .work-scroll { height: 400vh; }
  .work-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding: 24px 20px;
    gap: 16px;
  }
  .work-captions {
    order: 2;
    height: 120px;
    text-align: center;
  }
  .work-caption h3 {
    font-size: 22px;
    max-width: 480px;
    margin: 0 auto;
  }
  .work-canvas-wrap {
    order: 1;
  }
}

@media (max-width: 480px) {
  .work-scroll { height: 350vh; }
  .work-sticky { padding: 16px 14px; }
  .work-caption h3 { font-size: 18px; }
  .work-captions { height: 100px; }
}



/* CTA section */


.cta-contact {
    background-color: #000000;
  display: block;
  overflow: hidden;
  color: white;
  text-decoration: none;
  
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}



.reverse {
  animation-name: marquee-right;
  animation-duration: 55s;
}

.line3 .marquee-inner {
  animation-duration: 30s;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.cta-contact {
  position: relative;
  overflow: hidden;   
  cursor: none;
}


.cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary); 
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;

  transition:
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.2s ease;
}

/* BIG state */
.cursor.big {
  width: 120px;
  height: 120px;
}

/* arrow inside */
.arrow {
  font-size: 40px;
  color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* show arrow only when big */
.cursor.big .arrow {
  opacity: 1;
}


/* TESTY */



/* FOOTER */


.footer {
  border-top: 1px solid var(--color-text);
  height: 720px;
  background: #000;
  color: white;
  position: relative;
  overflow: hidden;
  padding-left: 80px;
  padding-right: 80px;


  font-family: Arial, sans-serif;
}

/* huge circle outline */
.footer-circle {
  position: absolute;
  width: 1420px;
  height: 1600px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;

  left: 50%;
  top: -880px;              
  transform: translateX(-50%) scaleY(-1);  
}

.footer-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 720px;
}

.footer-left {
  padding-top: 10px;
}

.footer-left h3 {
  
  line-height: 1.25;
  margin: 0 0 24px;
  letter-spacing: -1px;
}


.footer-line {
  width: 1px;
  height: 100%;
  background: white;
  position: relative;
}

.footer-line span {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  padding: 20px 0;
  font-size: 24px;
}

.footer-right {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
  padding-top: 0;
}

.footer-right h5 {
  margin: 0 0 16px;
  color: var(--color-text-sub);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.footer-right a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.footer-bottom {
  position: absolute;
  z-index: 2;
  left: 70px;
  right: 70px;
  bottom: 40px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--color-text-sub);
  text-decoration: none;
  margin: 0;
  font-size: 13px;
}









/* CONTACT PAGE */

.hero-contact {
  background: #000;
  position: relative;
  height: 100vh;
  padding: 120px 80px;
  display: flex;
  align-items: center;
}

/* big heading */

.hero-contact-title {

  margin: 0;

}

/* small label */

.hero-contact-tag {
  position: absolute;
  left: 80px;
  top: 300px;
  font-size: 13px;
  color:var(--color-text);
}

.hero-contact span {
  display: block;
}


/* Positioning */

.contact-line1 {
  margin-left: 80px;
}

.contact-line2 {
  margin-left: 0px;
}

.form-section {

  min-height: 575px;
  
  padding: 40px 140px;
  background-color: var(--color-bg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.form-heading {
  width: 45%;
}

.form-heading h2 {
  max-width: 470px;
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  color: white;
}

.contact-form {
  width: 50%;
  max-width: 620px;
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  position: relative;
  width: 100%;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 58px;
  padding: 22px 18px 10px;
  background: #0d0d0d;
  color: white;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}

.field label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9b9b9b;
  font-size: 15px;
  pointer-events: none;
  transition: 0.18s ease;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.select-field:focus-within label {
  top: 10px;
  transform: none;
  font-size: 11px;
  color: #cfcfcf;
}

.field label span {
  color: #777;
}

.textarea-field {
  margin-bottom: 14px;
}

.textarea-field textarea {
  height: 110px;
  resize: none;
  padding-top: 24px;
}

.textarea-field label {
  top: 22px;
  transform: none;
}

.select-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 46px;
}
/* Native dropdown items — readable on every browser/OS combo. */
.field select option,
.field select optgroup {
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 14px;
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  pointer-events: none;
}

.select-field:focus-within .select-arrow {
  transform: translateY(-50%) rotate(90deg);
}

.file-upload {
  width: 100%;
  min-height: 64px;
  padding: 12px 18px;
  margin-bottom: 14px;
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.file-upload input {
  display: none;
}

.file-label {
  font-size: 11px;
  color: #cfcfcf;
}

.file-name {
  font-size: 14px;
  color: #9b9b9b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-upload.has-file .file-name {
  color: white;
}

@media (max-width: 900px) {
  .form-section {
    width: calc(100% - 32px);
    flex-direction: column;
    padding: 24px;
  }

  .form-heading,
  .contact-form {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}

/* =========================================================
   WEBSITE PREVIEW — STEP-BASED CONFIGURATOR (additions)
   ========================================================= */

/* Show only the active step inside the stack — author CSS overrides
   the [hidden] attribute so JS can flip data-active-step freely. */
.website-preview-box .wpb-step-stack {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.website-preview-box .wpb-step { display: none; }
.website-preview-box[data-active-step="1"]  .wpb-step[data-step="1"],
.website-preview-box[data-active-step="2"]  .wpb-step[data-step="2"],
.website-preview-box[data-active-step="3"]  .wpb-step[data-step="3"],
.website-preview-box[data-active-step="4"]  .wpb-step[data-step="4"],
.website-preview-box[data-active-step="5"]  .wpb-step[data-step="5"],
.website-preview-box[data-active-step="6"]  .wpb-step[data-step="6"],
.website-preview-box[data-active-step="7"]  .wpb-step[data-step="7"],
.website-preview-box[data-active-step="8"]  .wpb-step[data-step="8"],
.website-preview-box[data-active-step="9"]  .wpb-step[data-step="9"],
.website-preview-box[data-active-step="10"] .wpb-step[data-step="10"] {
  display: block;
  animation: wpbFadeIn 0.35s ease both;
}
@keyframes wpbFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ===== Generic options grid (steps 1, 3, 4, 5, 6, 7, 8, 9) ===== */
.website-preview-box .wpb-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.website-preview-box .wpb-opt {
  position: relative;
  display: block;
  cursor: pointer;
}
.website-preview-box .wpb-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.website-preview-box .wpb-opt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--wpb-border);
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.website-preview-box .wpb-opt:hover .wpb-opt-card {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--wpb-border-strong);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}
.website-preview-box .wpb-opt input:checked ~ .wpb-opt-card {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6), 0 12px 26px rgba(0, 0, 0, 0.45);
}

.website-preview-box .wpb-opt-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--wpb-text);
}
.website-preview-box .wpb-opt-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--wpb-text-sub);
  line-height: 1.4;
}

/* Wide (text-only) option for steps 4 & 9 */
.website-preview-box .wpb-opt--wide { grid-column: span 4; }
.website-preview-box .wpb-opt--wide .wpb-opt-card {
  align-items: flex-start;
  text-align: left;
  padding: 14px 16px;
}

/* Step 1: business swatches */
.website-preview-box .wpb-opt-swatch {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(180, 140, 255, 0.55), rgba(110, 160, 255, 0.45));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.website-preview-box .wpb-sw-salon   { background: linear-gradient(135deg, #fbe1ec, #e08aa8); }
.website-preview-box .wpb-sw-rest    { background: linear-gradient(135deg, #f3d9b5, #9c5a2a); }
.website-preview-box .wpb-sw-gym     { background: linear-gradient(135deg, #ff7a3d, #ff3b3b); }
.website-preview-box .wpb-sw-clinic  { background: linear-gradient(135deg, #cfe3ff, #2f7ad9); }
.website-preview-box .wpb-sw-shop    { background: linear-gradient(135deg, #f0ece4, #1a1a1a); }
.website-preview-box .wpb-sw-cafe    { background: linear-gradient(135deg, #e9d2b6, #8a5a2a); }
.website-preview-box .wpb-sw-studio  { background: linear-gradient(135deg, #c9b8ff, #5b3eff); }
.website-preview-box .wpb-sw-agency  { background: linear-gradient(135deg, #bdbdbd, #2a2a2a); }

/* Step 5: layout mockups */
.website-preview-box .wpb-opt-mockup {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.website-preview-box .wpb-mockup-split::before {
  content: ""; position: absolute; inset: 6px 50% 6px 6px;
  background: linear-gradient(135deg, #b48cff80, #6ea0ff80); border-radius: 4px;
}
.website-preview-box .wpb-mockup-split::after {
  content: ""; position: absolute; inset: 6px 6px 6px 52%;
  background: rgba(255, 255, 255, 0.18); border-radius: 4px;
}
.website-preview-box .wpb-mockup-center::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 60%; height: 60%; background: rgba(255, 255, 255, 0.18); border-radius: 4px;
}
.website-preview-box .wpb-mockup-full::before {
  content: ""; position: absolute; inset: 6px;
  background: linear-gradient(135deg, #b48cff80, #6ea0ff80); border-radius: 4px;
}
.website-preview-box .wpb-mockup-stack::before,
.website-preview-box .wpb-mockup-stack::after {
  content: ""; position: absolute; left: 6px; right: 6px; height: 16px;
  background: rgba(255, 255, 255, 0.18); border-radius: 3px;
}
.website-preview-box .wpb-mockup-stack::before { top: 8px; }
.website-preview-box .wpb-mockup-stack::after  { bottom: 8px; }

/* Step 6: CTA preview chips */
.website-preview-box .wpb-opt-cta {
  display: inline-flex; padding: 6px 14px; font-size: 11px; font-weight: 500;
  color: var(--wpb-text); border-radius: 999px;
}
.website-preview-box .wpb-cta--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.website-preview-box .wpb-cta--solid {
  background: #fff; color: #111;
}
.website-preview-box .wpb-cta--outline {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.65);
}
.website-preview-box .wpb-cta--minimal {
  background: transparent; padding: 6px 0; border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* Step 7: font preview */
.website-preview-box .wpb-opt-font {
  font-size: 28px; line-height: 1; color: var(--wpb-text);
}
.website-preview-box .wpb-font--serif   { font-family: 'Syne', serif; font-weight: 700; letter-spacing: -0.01em; }
.website-preview-box .wpb-font--sans    { font-family: 'DM Sans', sans-serif; font-weight: 600; }
.website-preview-box .wpb-font--round   { font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: 0.04em; }
.website-preview-box .wpb-font--bold    { font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: -0.04em; }
.website-preview-box .wpb-font--italic  { font-family: 'Syne', serif; font-weight: 600; font-style: italic; letter-spacing: -0.01em; }
.website-preview-box .wpb-font--light   { font-family: 'Syne', sans-serif; font-weight: 400; letter-spacing: 0.01em; }
.website-preview-box .wpb-font--mono    { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 500; letter-spacing: -0.04em; }
.website-preview-box .wpb-font--compact { font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: -0.06em; transform: scaleX(0.92); transform-origin: left; }

/* Step 8: animation pulse */
.website-preview-box .wpb-opt-pulse {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(180,140,255,.6), rgba(110,160,255,.5));
}
.website-preview-box .wpb-pulse-smooth     { animation: wpbPulse 2.4s ease-in-out infinite; }
.website-preview-box .wpb-pulse-energetic  { animation: wpbPulse 0.9s ease-in-out infinite; }
.website-preview-box .wpb-pulse-minimal    { animation: wpbPulse 4s linear infinite; opacity: 0.7; }
.website-preview-box .wpb-pulse-bold       { animation: wpbPulse 1.2s cubic-bezier(.5,0,.3,1) infinite; transform: scale(1.05); }
@keyframes wpbPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(180,140,255,.5); }
  50%      { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(180,140,255,0); }
}

/* ===== Step nav buttons ===== */
.website-preview-box .wpb-nav {
  display: flex; gap: 12px; justify-content: space-between; margin-top: 22px;
}
.website-preview-box .wpb-nav button {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: 999px; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.website-preview-box .wpb-prev {
  background: rgba(255, 255, 255, 0.06); color: var(--wpb-text);
}
.website-preview-box .wpb-prev:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12); transform: translateY(-1px);
}
.website-preview-box .wpb-prev:disabled { opacity: 0.35; cursor: not-allowed; }
.website-preview-box .wpb-next {
  background: linear-gradient(90deg, #6ea0ff, #b89cff);
  color: #0e0b1f; border-color: transparent; font-weight: 600;
}
.website-preview-box .wpb-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(110, 160, 255, 0.45);
}

/* ===== Form (step 10) ===== */
.website-preview-box .wpb-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px;
}
.website-preview-box .wpb-summary {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--wpb-border);
  border-radius: 14px;
  padding: 14px 18px;
}
.website-preview-box .wpb-summary-label {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--wpb-text-sub);
}
.website-preview-box .wpb-summary-list {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 16px;
}
.website-preview-box .wpb-summary-list li {
  display: flex; flex-direction: column; gap: 2px;
  font-family: var(--font-body); font-size: 12px; color: var(--wpb-text-sub);
}
.website-preview-box .wpb-summary-list strong {
  font-weight: 500; color: var(--wpb-text); font-size: 13px;
}
.website-preview-box .wpb-field { display: flex; flex-direction: column; gap: 6px; }
.website-preview-box .wpb-field:nth-of-type(4) { grid-column: span 2; }
.website-preview-box .wpb-field label {
  font-family: var(--font-body); font-size: 12px; color: var(--wpb-text-sub);
  letter-spacing: 0.02em;
}
.website-preview-box .wpb-field input,
.website-preview-box .wpb-field select,
.website-preview-box .wpb-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--wpb-border);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--wpb-text);
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.website-preview-box .wpb-field input::placeholder,
.website-preview-box .wpb-field textarea::placeholder { color: rgba(245, 245, 247, 0.4); }
.website-preview-box .wpb-field input:focus,
.website-preview-box .wpb-field select:focus,
.website-preview-box .wpb-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}
.website-preview-box .wpb-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%),
                    linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.website-preview-box .wpb-form-status {
  grid-column: span 2; min-height: 18px;
  font-family: var(--font-body); font-size: 12px; color: var(--wpb-text-sub);
}
.website-preview-box .wpb-form-status[data-state="ok"]   { color: #6effb0; }
.website-preview-box .wpb-form-status[data-state="err"]  { color: #ff8b8b; }

/* ===== Live preview — modifier classes ===== */
.website-preview-box .wpb-browser { --wpb-accent: #b48cff; }
.website-preview-box .wpb-blob {
  background: radial-gradient(
    circle at 30% 30%,
    color-mix(in srgb, var(--wpb-accent) 65%, transparent) 0%,
    color-mix(in srgb, var(--wpb-accent) 30%, transparent) 35%,
    transparent 75%
  );
}

/* --- Style themes (applied to .wpb-browser) --- */
.website-preview-box .wpb-pv--modern {
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f8 100%);
  color: #111;
  border-color: rgba(0,0,0,.08);
}
.website-preview-box .wpb-pv--modern .wpb-feat {
  background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.06);
}
.website-preview-box .wpb-pv--modern .wpb-feat-thumb {
  background: linear-gradient(135deg, color-mix(in srgb, var(--wpb-accent) 80%, transparent), color-mix(in srgb, var(--wpb-accent) 30%, transparent));
}
.website-preview-box .wpb-pv--modern .wpb-browser-bar {
  background: rgba(0,0,0,.04); border-bottom-color: rgba(0,0,0,.08);
}
.website-preview-box .wpb-pv--modern .wpb-url-pill {
  background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.08); color: rgba(0,0,0,.5);
}

.website-preview-box .wpb-pv--luxury {
  background: linear-gradient(180deg, #0a0a0c 0%, #181520 100%);
  color: #f1e6c8;
  border-color: rgba(212,178,90,.25);
}
.website-preview-box .wpb-pv--luxury { --wpb-accent: #d4b25a; }
.website-preview-box .wpb-pv--luxury .wpb-pv-brand-name { font-family: 'Syne', serif; letter-spacing: 0.04em; }
.website-preview-box .wpb-pv--luxury .wpb-feat {
  background: rgba(212,178,90,.06); border-color: rgba(212,178,90,.18);
}

.website-preview-box .wpb-pv--salon {
  background: linear-gradient(155deg, #fbe7e0 0%, #f9d4d4 50%, #f3c5d2 100%);
  color: #5a2a3a;
  border-color: rgba(201,98,124,.2);
}
.website-preview-box .wpb-pv--salon { --wpb-accent: #c9627c; }
.website-preview-box .wpb-pv--salon .wpb-feat {
  background: rgba(255,255,255,.55); border-color: rgba(201,98,124,.15);
}
.website-preview-box .wpb-pv--salon .wpb-pv-shape-1,
.website-preview-box .wpb-pv--salon .wpb-pv-shape-2 { border-radius: 50%; }
.website-preview-box .wpb-pv--salon .wpb-browser-bar { background: rgba(255,255,255,.4); }
.website-preview-box .wpb-pv--salon .wpb-url-pill {
  background: rgba(255,255,255,.5); border-color: rgba(201,98,124,.18); color: #5a2a3a;
}

.website-preview-box .wpb-pv--restaurant {
  background: linear-gradient(180deg, #2c1c10 0%, #4a2d18 100%);
  color: #f3d9b5;
  border-color: rgba(243,217,181,.18);
}
.website-preview-box .wpb-pv--restaurant { --wpb-accent: #c08453; }
.website-preview-box .wpb-pv--restaurant .wpb-feat {
  background: rgba(243,217,181,.08); border-color: rgba(243,217,181,.16);
}

.website-preview-box .wpb-pv--gym {
  background: #0c0c0e;
  color: #fff;
  border-color: rgba(255,59,59,.25);
}
.website-preview-box .wpb-pv--gym { --wpb-accent: #ff3b3b; }
.website-preview-box .wpb-pv--gym .wpb-pv-brand-name { text-transform: uppercase; letter-spacing: 0.06em; }
.website-preview-box .wpb-pv--gym .wpb-feat {
  background: rgba(255,59,59,.08); border-color: rgba(255,59,59,.18);
}

.website-preview-box .wpb-pv--clinic {
  background: linear-gradient(180deg, #f4f8fc 0%, #e6effa 100%);
  color: #103b66;
  border-color: rgba(47,122,217,.2);
}
.website-preview-box .wpb-pv--clinic { --wpb-accent: #2f7ad9; }
.website-preview-box .wpb-pv--clinic .wpb-feat {
  background: rgba(47,122,217,.08); border-color: rgba(47,122,217,.18);
}
.website-preview-box .wpb-pv--clinic .wpb-browser-bar { background: rgba(47,122,217,.05); }
.website-preview-box .wpb-pv--clinic .wpb-url-pill {
  background: rgba(255,255,255,.7); border-color: rgba(47,122,217,.2); color: #103b66;
}

.website-preview-box .wpb-pv--shop {
  background: linear-gradient(180deg, #f9f7f3 0%, #ecebe5 100%);
  color: #1a1a1a;
  border-color: rgba(0,0,0,.1);
}
.website-preview-box .wpb-pv--shop { --wpb-accent: #1a1a1a; }
.website-preview-box .wpb-pv--shop .wpb-feat {
  background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08);
}
.website-preview-box .wpb-pv--shop .wpb-browser-bar { background: rgba(0,0,0,.04); }
.website-preview-box .wpb-pv--shop .wpb-url-pill {
  background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.1); color: rgba(0,0,0,.6);
}

.website-preview-box .wpb-pv--creative {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,210,94,.5) 0%, transparent 45%),
    radial-gradient(circle at 82% 28%, rgba(255,94,156,.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 95%, rgba(94,155,255,.5) 0%, transparent 55%),
    #1a0c2c;
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.website-preview-box .wpb-pv--creative { --wpb-accent: #ffd25e; }

/* --- CTA style — driven by class on .wpb-browser --- */
.website-preview-box .wpb-browser .wpb-glassy-cta { transition: all 0.3s ease; }
.website-preview-box .wpb-browser.wpb-cta--glass .wpb-glassy-cta {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color: inherit;
  backdrop-filter: blur(10px);
  border-radius: 999px;
}
.website-preview-box .wpb-browser.wpb-cta--solid .wpb-glassy-cta {
  background: var(--wpb-accent);
  border: 0;
  color: #fff;
  border-radius: 6px;
  backdrop-filter: none;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--wpb-accent) 40%, transparent);
}
.website-preview-box .wpb-browser.wpb-cta--outline .wpb-glassy-cta {
  background: transparent;
  border: 1.5px solid currentColor;
  color: inherit;
  border-radius: 999px;
  backdrop-filter: none;
  box-shadow: none;
}
.website-preview-box .wpb-browser.wpb-cta--minimal .wpb-glassy-cta {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid currentColor;
  color: inherit;
  border-radius: 0;
  padding: 6px 2px;
  backdrop-filter: none;
  box-shadow: none;
}

/* --- Hero font --- */
.website-preview-box .wpb-browser.wpb-font--serif   .wpb-hero { font-family: 'Syne', serif; font-weight: 700; letter-spacing: -0.02em; text-transform: none; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--sans    .wpb-hero { font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: -0.02em; text-transform: none; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--round   .wpb-hero { font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: 0.04em; text-transform: lowercase; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--bold    .wpb-hero { font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: -0.05em; text-transform: uppercase; font-size: 34px; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--italic  .wpb-hero { font-family: 'Syne', serif; font-weight: 600; font-style: italic; letter-spacing: -0.01em; text-transform: none; }
.website-preview-box .wpb-browser.wpb-font--light   .wpb-hero { font-family: 'Syne', sans-serif; font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 40px; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--mono    .wpb-hero { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 500; letter-spacing: -0.04em; text-transform: none; font-size: 32px; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--compact .wpb-hero { font-family: 'DM Sans', sans-serif; font-weight: 800; letter-spacing: -0.06em; text-transform: uppercase; font-size: 40px; font-style: normal; }

/* --- Animation feel --- */
.website-preview-box .wpb-browser[data-anim="smooth"]    .wpb-feat-thumb::after { animation-duration: 3.5s; }
.website-preview-box .wpb-browser[data-anim="energetic"] .wpb-feat-thumb::after { animation-duration: 1.2s; }
.website-preview-box .wpb-browser[data-anim="minimal"]   .wpb-feat-thumb::after { animation-duration: 7s; opacity: 0.4; }
.website-preview-box .wpb-browser[data-anim="bold"]      .wpb-feat-thumb::after { animation-duration: 0.8s; }
.website-preview-box .wpb-browser[data-anim="smooth"]    .wpb-pv-shape-1 { animation: wpbDrift 6s ease-in-out infinite; }
.website-preview-box .wpb-browser[data-anim="energetic"] .wpb-pv-shape-1 { animation: wpbDrift 2s ease-in-out infinite; }
.website-preview-box .wpb-browser[data-anim="bold"]      .wpb-pv-shape-1 { animation: wpbBounce 1.4s cubic-bezier(.5,0,.3,1) infinite; }
.website-preview-box .wpb-browser[data-anim="minimal"]   .wpb-pv-shape-1 { animation: none; }
@keyframes wpbDrift {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-8deg) translateY(-6px); }
}
@keyframes wpbBounce {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50%      { transform: rotate(-6deg) scale(1.08); }
}

/* --- Layout --- */
.website-preview-box .wpb-browser.wpb-layout--split  .wpb-pv-hero { grid-template-columns: 1fr 1fr; }

.website-preview-box .wpb-browser.wpb-layout--center .wpb-pv-hero {
  grid-template-columns: 1fr;
  text-align: center;
}
.website-preview-box .wpb-browser.wpb-layout--center .wpb-pv-hero-text { align-items: center; }
.website-preview-box .wpb-browser.wpb-layout--center .wpb-pv-hero-visual { display: none; }
.website-preview-box .wpb-browser.wpb-layout--center .wpb-glassy-cta { align-self: center; }

.website-preview-box .wpb-browser.wpb-layout--full .wpb-pv-hero {
  grid-template-columns: 1fr;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--wpb-accent) 30%, transparent), transparent),
    rgba(0,0,0,.18);
}
.website-preview-box .wpb-browser.wpb-layout--full .wpb-pv-hero-visual {
  position: absolute; inset: 0; height: auto; z-index: 0;
}
.website-preview-box .wpb-browser.wpb-layout--full .wpb-pv-hero-text {
  position: relative; z-index: 1;
}

.website-preview-box .wpb-browser.wpb-layout--stack .wpb-pv-hero {
  grid-template-columns: 1fr;
}
.website-preview-box .wpb-browser.wpb-layout--stack .wpb-pv-hero-visual { height: 80px; }
.website-preview-box .wpb-browser.wpb-layout--stack .wpb-feat-grid {
  grid-template-columns: 1fr; gap: 6px;
}
.website-preview-box .wpb-browser.wpb-layout--stack .wpb-feat {
  display: grid; grid-template-columns: 50px 1fr; gap: 12px; align-items: center;
}
.website-preview-box .wpb-browser.wpb-layout--stack .wpb-feat-thumb { height: 36px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .website-preview-box .wpb-main { grid-template-columns: 1fr; gap: 28px; }
  .website-preview-box .wpb-preview { justify-content: center; }
  .website-preview-box .wpb-browser { max-height: none; min-height: 480px; }
}
@media (max-width: 1024px) {
  .website-preview-box .wpb-options { grid-template-columns: repeat(3, 1fr); }
  .website-preview-box .wpb-opt--wide { grid-column: span 3; }
  .website-preview-box .wpb-form { grid-template-columns: 1fr; }
  .website-preview-box .wpb-summary,
  .website-preview-box .wpb-field:nth-of-type(4),
  .website-preview-box .wpb-form-status { grid-column: span 1; }
  .website-preview-box .wpb-summary-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .website-preview-box {
    padding: 24px 20px 32px;
  }
  .website-preview-box .wpb-stepbar {
    font-size: 12px;
    gap: 10px;
  }
  .website-preview-box .wpb-title { font-size: 22px; }
  .website-preview-box .wpb-desc { font-size: 12px; margin-bottom: 12px; }
  .website-preview-box .wpb-options { grid-template-columns: repeat(2, 1fr); }
  .website-preview-box .wpb-opt--wide { grid-column: span 2; }
  .website-preview-box .wpb-summary-list { grid-template-columns: 1fr; }
  .website-preview-box .wpb-step-stack { min-height: 320px; }
  .website-preview-box .wpb-card-grid { grid-template-columns: repeat(2, 1fr); }
  .website-preview-box .wpb-card-name { font-size: 10px; }
  .website-preview-box .wpb-browser { min-height: 440px; }
  .website-preview-box .wpb-browser-body { padding: 18px 18px 16px; gap: 12px; }
  .website-preview-box .wpb-hero { font-size: 28px; }
  .website-preview-box .wpb-pv-hero { grid-template-columns: 1fr; }
  .website-preview-box .wpb-pv-hero-visual { height: 90px; }
  .website-preview-box .wpb-pv-links { gap: 10px; }
  .website-preview-box .wpb-pv-links span { font-size: 10px; }
  .website-preview-box .wpb-feat { padding: 10px 12px; }
  .website-preview-box .wpb-feat-thumb { height: 36px; }
  .website-preview-box .wpb-nav button { padding: 9px 16px; font-size: 12px; }
}
@media (max-width: 480px) {
  .website-preview-box .wpb-options,
  .website-preview-box .wpb-card-grid {
    grid-template-columns: 1fr;
  }
  .website-preview-box .wpb-opt--wide { grid-column: span 1; }
  .website-preview-box .wpb-step-percent { display: none; }
  .website-preview-box .wpb-card-wrap { display: flex; }
  .website-preview-box .wpb-feat-grid { grid-template-columns: 1fr 1fr; }
  .website-preview-box .wpb-feat:nth-child(3) { grid-column: span 2; }
  .website-preview-box .wpb-pv-stars { display: none; }
}


/* =========================================================
   STEP 1 — TEMPLATE THUMBNAILS (small visual hints in option cards)
   ========================================================= */
.website-preview-box .wpb-options--templates {
  grid-template-columns: repeat(4, 1fr);
}
.website-preview-box .wpb-opt-thumb {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.website-preview-box .wpb-opt-thumb::before,
.website-preview-box .wpb-opt-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Clinic — light blue with white text bar */
.website-preview-box .wpb-thumb-clinic {
  background: linear-gradient(135deg, #b8d4e8 0%, #7da9c7 100%);
}
.website-preview-box .wpb-thumb-clinic::before {
  inset: auto 6px 6px 6px;
  height: 8px;
  background: rgba(255,255,255,.85);
  border-radius: 3px;
}

/* Green — dark forest with sun */
.website-preview-box .wpb-thumb-green {
  background: linear-gradient(180deg, #1c3a2a 0%, #0f2519 100%);
}
.website-preview-box .wpb-thumb-green::before {
  inset: 6px 6px auto auto; width: 14px; height: 14px;
  background: radial-gradient(circle, #d8e8a0, #8fb04b);
  border-radius: 50%;
}

/* Mac — white minimal with text */
.website-preview-box .wpb-thumb-mac {
  background: #fff;
}
.website-preview-box .wpb-thumb-mac::before {
  left: 8px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 9px; background: #111; border-radius: 2px;
}

/* Interior — dark with photo blocks */
.website-preview-box .wpb-thumb-interior {
  background: #1a1a1a;
}
.website-preview-box .wpb-thumb-interior::before {
  inset: 6px 6px 6px 50%;
  background:
    linear-gradient(135deg, #6a4d35, #3a2820) right top / 50% 50% no-repeat,
    linear-gradient(135deg, #8a7050, #4a3a2a) left bottom / 50% 50% no-repeat,
    linear-gradient(135deg, #5a4030, #2e2018) left top / 50% 50% no-repeat,
    #2a1f15;
  border-radius: 2px;
}

/* AI — black with morphing dark blob + gradient sweep */
.website-preview-box .wpb-thumb-ai {
  background:
    radial-gradient(circle at 40% 60%, rgba(120,140,255,.4) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(255,140,200,.3) 0%, transparent 35%),
    #0a0a14;
}
.website-preview-box .wpb-thumb-ai::before {
  inset: 30% 20% 20% 20%;
  background: radial-gradient(ellipse at center, #1a1a26 0%, #0a0a14 70%);
  border-radius: 50%;
  filter: blur(2px);
}

/* Frame — beige with mock shape */
.website-preview-box .wpb-thumb-frame {
  background: linear-gradient(180deg, #f3e8d6 0%, #d9c8a8 100%);
}
.website-preview-box .wpb-thumb-frame::before {
  inset: 30% 30% 30% 8%;
  background: rgba(180,120,70,.5); border-radius: 3px;
}
.website-preview-box .wpb-thumb-frame::after {
  inset: 20% 8% 20% 60%;
  background: rgba(255,255,255,.6); border-radius: 3px;
}

/* Spa — warm cream with serif feel */
.website-preview-box .wpb-thumb-spa {
  background: linear-gradient(135deg, #faf3e8 0%, #e9d8be 100%);
}
.website-preview-box .wpb-thumb-spa::before {
  inset: 6px 6px 50% 6px;
  background: rgba(82,50,30,.15); border-radius: 3px;
}
.website-preview-box .wpb-thumb-spa::after {
  inset: 50% 50% 6px 6px;
  background: rgba(82,50,30,.6); border-radius: 3px;
}

/* Sound — red and black */
.website-preview-box .wpb-thumb-sound {
  background: linear-gradient(90deg, #1a0a0a 50%, #d93a3a 50%);
}
.website-preview-box .wpb-thumb-sound::before {
  left: 6px; top: 6px; width: 16px; height: 4px;
  background: #d93a3a; border-radius: 2px;
}
.website-preview-box .wpb-thumb-sound::after {
  right: 6px; bottom: 6px; width: 18px; height: 8px;
  background: #1a0a0a; border-radius: 2px;
}


/* =========================================================
   8 LIVE TEMPLATES — applied to .wpb-browser via .wpb-tpl--*
   ========================================================= */

/* Common helpers */
.website-preview-box .wpb-browser .wpb-tpl-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.website-preview-box .wpb-tpl-pill {
  font-size: 11px !important;
  padding: 6px 14px !important;
}
.website-preview-box .wpb-tpl-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.website-preview-box .wpb-tpl-cta-ghost {
  background: transparent !important;
  border: 1px solid currentColor !important;
  color: inherit !important;
  box-shadow: none !important;
}
.website-preview-box .wpb-tpl-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* === 1. Clinic === */
.website-preview-box .wpb-tpl--clinic {
  background: #1a3340;
  color: #fff;
  border-color: rgba(255,255,255,.15);
}
.website-preview-box .wpb-tpl-bg-clinic {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(255,255,255,.08) 0%, transparent 50%),
    linear-gradient(135deg, #4a8a9e 0%, #1a3340 70%);
}
.website-preview-box .wpb-tpl-bg-clinic::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(220,200,180,.45) 0%, transparent 30%),
    radial-gradient(circle at 65% 55%, rgba(180,160,140,.35) 0%, transparent 25%);
}
.website-preview-box .wpb-tpl--clinic .wpb-tpl-hero-overlay {
  margin-top: auto;
  padding-bottom: 8px;
  align-items: flex-start;
}
.website-preview-box .wpb-tpl--clinic .wpb-hero {
  font-size: 30px; line-height: 1.05; max-width: 70%;
}

/* === 2. Green Volt === */
.website-preview-box .wpb-tpl--green {
  background: #1a3024;
  color: #f1fff0;
  border-color: rgba(255,255,255,.15);
}
.website-preview-box .wpb-tpl-bg-green {
  background:
    linear-gradient(180deg, rgba(20,40,30,.6) 0%, rgba(10,25,18,.95) 100%),
    repeating-linear-gradient(180deg, transparent 0 28px, rgba(255,255,255,.04) 28px 30px);
}
.website-preview-box .wpb-tpl-bg-green::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background:
    radial-gradient(ellipse at 20% 100%, rgba(40,80,50,.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(30,60,40,.5) 0%, transparent 55%);
}
.website-preview-box .wpb-tpl--green .wpb-tpl-hero-center {
  text-align: center; align-items: center;
  margin-top: auto; margin-bottom: 8px;
}
.website-preview-box .wpb-tpl--green .wpb-hero { font-size: 32px; line-height: 1.05; }
.website-preview-box .wpb-tpl-mark-green { background: linear-gradient(135deg, #88c97d, #2e7a3a) !important; }
.website-preview-box .wpb-tpl-stat-bar {
  display: flex; gap: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 12px;
  margin-top: 10px;
}
.website-preview-box .wpb-tpl-stat-bar div { display: flex; flex-direction: column; }
.website-preview-box .wpb-tpl-stat-bar strong {
  font-family: 'Syne', serif; font-size: 22px; font-weight: 700;
}
.website-preview-box .wpb-tpl-stat-bar small { font-size: 10px; opacity: .7; }

/* === 3. Mac === */
.website-preview-box .wpb-tpl--mac {
  background: #fff;
  color: #111;
  border-color: rgba(0,0,0,.1);
}
.website-preview-box .wpb-tpl--mac .wpb-browser-bar { background: #f5f5f7; border-bottom-color: rgba(0,0,0,.08); }
.website-preview-box .wpb-tpl--mac .wpb-url-pill { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.08); color: rgba(0,0,0,.6); }
.website-preview-box .wpb-tpl-mac-nav {
  justify-content: center; gap: 24px;
  background: #f5f5f7; padding: 10px 16px;
  margin: -22px -24px 0; border-bottom: 1px solid rgba(0,0,0,.08);
}
.website-preview-box .wpb-tpl-mac-nav .wpb-pv-links { gap: 18px; }
.website-preview-box .wpb-tpl-mac-nav .wpb-pv-links span { color: #111; opacity: .85; font-size: 11px; }
.website-preview-box .wpb-tpl-mac-logo {
  width: 14px; height: 14px;
  background: radial-gradient(circle, #111 0%, #111 70%, transparent 71%);
  -webkit-mask: radial-gradient(circle at 50% 35%, transparent 35%, black 36%);
}
.website-preview-box .wpb-tpl-hero-mac { align-items: flex-start; padding: 8px 0 0; }
.website-preview-box .wpb-tpl--mac .wpb-hero { font-size: 64px; font-weight: 700; }
.website-preview-box .wpb-tpl-mac-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative; z-index: 1;
}
.website-preview-box .wpb-tpl-mac-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 10px;
}
.website-preview-box .wpb-tpl-mac-img {
  width: 100%; aspect-ratio: 1.1 / 1; border-radius: 6px;
  background: linear-gradient(180deg, #e4e4e6 0%, #fafafa 100%);
  position: relative;
}
.website-preview-box .wpb-tpl-mac-img-1 { background: linear-gradient(180deg, #f8e8d0 0%, #fff 100%); }
.website-preview-box .wpb-tpl-mac-img-2 { background: linear-gradient(180deg, #d8d8e0 0%, #fff 100%); }
.website-preview-box .wpb-tpl-mac-img-3 { background: linear-gradient(180deg, #c0d8f0 0%, #f5f8ff 100%); }
.website-preview-box .wpb-tpl-mac-img-4 { background: linear-gradient(180deg, #e8e0e0 0%, #fff 100%); }
.website-preview-box .wpb-tpl-mac-card span { font-weight: 600; color: #111; }
.website-preview-box .wpb-tpl-mac-card small { color: #ff7e3d; font-weight: 600; font-size: 9px; }
.website-preview-box .wpb-tpl-mac-title {
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 22px;
  color: #111; margin-top: 4px;
}

/* === 4. Interior === */
.website-preview-box .wpb-tpl--interior {
  background: #15140f;
  color: #fff;
  border-color: rgba(255,255,255,.1);
}
.website-preview-box .wpb-tpl-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
  align-items: end;
  padding-bottom: 6px;
}
.website-preview-box .wpb-tpl-mosaic-text { display: flex; flex-direction: column; gap: 8px; }
.website-preview-box .wpb-tpl--interior .wpb-hero {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 38px;
  line-height: 0.9; letter-spacing: -0.04em;
}
.website-preview-box .wpb-tpl-mosaic-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 6px; height: 200px;
}
.website-preview-box .wpb-tpl-photo { border-radius: 4px; background: #2a2218; }
.website-preview-box .wpb-tpl-photo-a {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #3a2c1c 0%, #6a4f30 50%, #2a2018 100%);
}
.website-preview-box .wpb-tpl-photo-b {
  background: linear-gradient(135deg, #5a4030 0%, #8a6d4a 100%);
}
.website-preview-box .wpb-tpl-photo-c {
  background: linear-gradient(135deg, #c89a6a 0%, #6a4030 100%);
}
.website-preview-box .wpb-tpl-mosaic-tags {
  grid-column: span 2;
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 10px; opacity: 0.7; letter-spacing: 0.06em; text-transform: uppercase;
}

/* === 5. AI === */
.website-preview-box .wpb-tpl--ai {
  background: #050507;
  color: #f0f0f5;
  border-color: rgba(255,255,255,.1);
}
.website-preview-box .wpb-tpl-blob {
  position: absolute; pointer-events: none; z-index: 0;
  border-radius: 50%;
  filter: blur(12px);
}
.website-preview-box .wpb-tpl-blob-1 {
  bottom: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, #2a2530 0%, #15131c 50%, transparent 80%);
}
.website-preview-box .wpb-tpl-blob-2 {
  bottom: -30%; right: -20%;
  width: 65%; height: 90%;
  background: radial-gradient(circle, #1f1a28 0%, #0a0810 50%, transparent 80%);
}
.website-preview-box .wpb-tpl-ai-nav {
  justify-content: space-between;
}
.website-preview-box .wpb-tpl-ai-pill {
  display: flex; gap: 4px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
}
.website-preview-box .wpb-tpl-ai-pill span {
  width: 14px; height: 4px; background: rgba(255,255,255,.5); border-radius: 2px;
}
.website-preview-box .wpb-tpl-hero-ai {
  align-items: center; text-align: center; margin-top: auto; padding-bottom: 14px;
}
.website-preview-box .wpb-tpl-eyebrow-pill {
  padding: 4px 12px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  font-size: 10px;
}
.website-preview-box .wpb-tpl--ai .wpb-hero { font-size: 36px; line-height: 1.05; }
.website-preview-box .wpb-tpl-grad-text {
  background: linear-gradient(135deg, #d0c4ff 0%, #c4d6ff 30%, #ffc4e2 60%, #ffd6c4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* === 6. Frame === */
.website-preview-box .wpb-tpl--frame {
  background: linear-gradient(160deg, #f0e2cf 0%, #e3cfaa 100%);
  color: #2a1f12;
  border-color: rgba(0,0,0,.1);
}
.website-preview-box .wpb-tpl--frame .wpb-browser-bar { background: rgba(255,255,255,.4); }
.website-preview-box .wpb-tpl--frame .wpb-url-pill { background: rgba(255,255,255,.55); border-color: rgba(0,0,0,.08); color: #4a3220; }
.website-preview-box .wpb-tpl-frame-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px;
}
.website-preview-box .wpb-tpl-frame-mock {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.website-preview-box .wpb-tpl-frame-img {
  flex: 1; min-height: 120px; border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(110,80,50,.5), rgba(80,55,32,.7)),
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(0,0,0,.06) 6px 7px);
}
.website-preview-box .wpb-tpl--frame .wpb-hero { font-size: 24px; line-height: 1.1; }
.website-preview-box .wpb-tpl-frame-side { display: flex; flex-direction: column; gap: 10px; }
.website-preview-box .wpb-tpl-frame-card {
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.website-preview-box .wpb-tpl-frame-photo {
  height: 60px; border-radius: 6px;
  background: linear-gradient(135deg, #d4b890 0%, #8a6843 100%);
}
.website-preview-box .wpb-tpl-frame-card span { font-weight: 600; font-size: 12px; }
.website-preview-box .wpb-tpl-frame-card small { font-size: 10px; opacity: 0.65; }

/* === 7. Spa === */
.website-preview-box .wpb-tpl--spa {
  background: linear-gradient(180deg, #fbf6ed 0%, #f4ead7 100%);
  color: #2c1f12;
  border-color: rgba(0,0,0,.1);
}
.website-preview-box .wpb-tpl--spa .wpb-browser-bar { background: rgba(255,255,255,.55); }
.website-preview-box .wpb-tpl--spa .wpb-url-pill { background: rgba(255,255,255,.6); border-color: rgba(0,0,0,.08); color: #5a3e22; }
.website-preview-box .wpb-tpl-mark-spa { background: radial-gradient(circle, #8c7350, #4a3a26) !important; }
.website-preview-box .wpb-tpl-spa-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center;
}
.website-preview-box .wpb-tpl-spa-text { display: flex; flex-direction: column; gap: 12px; }
.website-preview-box .wpb-tpl--spa .wpb-hero {
  font-family: 'Syne', serif; font-weight: 600; font-size: 30px; line-height: 1.05;
}
.website-preview-box .wpb-tpl--spa .wpb-hero em { font-style: italic; font-weight: 500; }
.website-preview-box .wpb-tpl-spa-photo {
  border-radius: 12px; min-height: 220px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 40%, #d4b89a 0%, #8a6843 60%, #4a3a26 100%);
}

/* === 8. Sound === */
.website-preview-box .wpb-tpl--sound {
  background: #18181a;
  color: #fff;
  border-color: rgba(255,255,255,.12);
}
.website-preview-box .wpb-tpl-mark-sound { background: #d93a3a !important; }
.website-preview-box .wpb-tpl-sound-nav {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 12px; margin-bottom: 4px;
}
.website-preview-box .wpb-tpl-sound-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; align-items: stretch;
}
.website-preview-box .wpb-tpl-sound-stats {
  display: flex; flex-direction: column; gap: 14px;
  background: #0c0c0e; padding: 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.05);
}
.website-preview-box .wpb-tpl-stat-block strong {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 30px; line-height: 1; display: block;
}
.website-preview-box .wpb-tpl-stat-block small { font-size: 10px; opacity: .55; }
.website-preview-box .wpb-tpl-sound-blurb { font-size: 11px; opacity: .7; line-height: 1.5; }
.website-preview-box .wpb-tpl-sound-main {
  display: flex; flex-direction: column; gap: 10px;
  background: #d93a3a; padding: 16px; border-radius: 10px; color: #fff;
}
.website-preview-box .wpb-tpl-sound-photo {
  height: 90px; border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.4), transparent 60%),
    linear-gradient(135deg, #f8d4b8 0%, #b56050 100%);
}
.website-preview-box .wpb-tpl--sound .wpb-tpl-sound-main .wpb-hero {
  font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 56px;
  line-height: 0.9; letter-spacing: -0.04em; color: #fff;
}
.website-preview-box .wpb-tpl--sound .wpb-tpl-sound-main .wpb-slogan { color: rgba(255,255,255,.9); font-size: 11px; }

/* Responsive: collapse mosaic / sound / spa / frame two-col grids */
@media (max-width: 760px) {
  .website-preview-box .wpb-options--templates { grid-template-columns: repeat(2, 1fr); }
  .website-preview-box .wpb-tpl-mosaic,
  .website-preview-box .wpb-tpl-spa-grid,
  .website-preview-box .wpb-tpl-sound-grid,
  .website-preview-box .wpb-tpl-frame-grid {
    grid-template-columns: 1fr;
  }
  .website-preview-box .wpb-tpl-mosaic-grid { height: 130px; }
  .website-preview-box .wpb-tpl-mac-row { grid-template-columns: repeat(2, 1fr); }
  .website-preview-box .wpb-tpl-spa-photo { min-height: 130px; }
}


/* =========================================================
   THEME ↔ TEMPLATE BRIDGE
   Templates set default colors via CSS vars. Themes (step 2) override
   those vars later in the cascade so step 2 visibly recolors any
   chosen template.
   ========================================================= */

/* Templates are color-NEUTRAL — they all inherit the same default
   palette so step 1 is purely about LAYOUT. Step 2 (theme) provides
   the color override. */
.website-preview-box .wpb-browser {
  --wpb-bg: #1a1a22;
  --wpb-text: #f0f0f5;
  --wpb-muted: rgba(240,240,245,.6);
  --wpb-surface: rgba(255,255,255,.06);
}

/* THEMES — declared after templates so they win when both classes are present */
.website-preview-box .wpb-browser.wpb-pv--modern    { --wpb-bg: #fafafa !important; --wpb-text: #111 !important;     --wpb-muted: rgba(0,0,0,.55) !important;    --wpb-surface: rgba(0,0,0,.04) !important; --wpb-accent: #ff7a3d; }
.website-preview-box .wpb-browser.wpb-pv--luxury    { --wpb-bg: #0a0a0c !important; --wpb-text: #f1e6c8 !important; --wpb-muted: rgba(241,230,200,.6) !important; --wpb-surface: rgba(212,178,90,.08) !important; --wpb-accent: #d4b25a; }
.website-preview-box .wpb-browser.wpb-pv--salon     { --wpb-bg: #fbe1ec !important; --wpb-text: #5a2a3a !important; --wpb-muted: rgba(90,42,58,.6) !important;  --wpb-surface: rgba(255,255,255,.5) !important; --wpb-accent: #c9627c; }
.website-preview-box .wpb-browser.wpb-pv--restaurant{ --wpb-bg: #2c1c10 !important; --wpb-text: #f3d9b5 !important; --wpb-muted: rgba(243,217,181,.65) !important; --wpb-surface: rgba(243,217,181,.08) !important; --wpb-accent: #c08453; }
.website-preview-box .wpb-browser.wpb-pv--gym       { --wpb-bg: #0c0c0e !important; --wpb-text: #fff !important;     --wpb-muted: rgba(255,255,255,.6) !important; --wpb-surface: rgba(255,59,59,.08) !important; --wpb-accent: #ff3b3b; }
.website-preview-box .wpb-browser.wpb-pv--clinic    { --wpb-bg: #f4f8fc !important; --wpb-text: #103b66 !important; --wpb-muted: rgba(16,59,102,.65) !important; --wpb-surface: rgba(47,122,217,.08) !important; --wpb-accent: #2f7ad9; }
.website-preview-box .wpb-browser.wpb-pv--shop      { --wpb-bg: #f9f7f3 !important; --wpb-text: #1a1a1a !important; --wpb-muted: rgba(0,0,0,.55) !important;    --wpb-surface: rgba(0,0,0,.04) !important; --wpb-accent: #1a1a1a; }
.website-preview-box .wpb-browser.wpb-pv--creative  { --wpb-bg: #221034 !important; --wpb-text: #fff !important;     --wpb-muted: rgba(255,255,255,.7) !important; --wpb-surface: rgba(255,255,255,.08) !important; --wpb-accent: #ffd25e; }

/* Apply the vars to the live preview — !important beats earlier static template / theme rules */
.website-preview-box .wpb-browser[class*="wpb-tpl--"] {
  background: var(--wpb-bg) !important;
  color: var(--wpb-text) !important;
}
.website-preview-box .wpb-browser[class*="wpb-tpl--"] .wpb-slogan,
.website-preview-box .wpb-browser[class*="wpb-tpl--"] .wpb-pv-eyebrow,
.website-preview-box .wpb-browser[class*="wpb-tpl--"] .wpb-pv-links span,
.website-preview-box .wpb-browser[class*="wpb-tpl--"] .wpb-trust {
  color: var(--wpb-muted);
}
.website-preview-box .wpb-browser[class*="wpb-tpl--"] .wpb-pv-brand-mark {
  background: linear-gradient(135deg, var(--wpb-accent, #b48cff), color-mix(in srgb, var(--wpb-accent, #b48cff) 35%, var(--wpb-text)));
}

/* Browser bar / URL pill follow the theme's vibe */
.website-preview-box .wpb-browser[class*="wpb-tpl--"] .wpb-browser-bar {
  background: color-mix(in srgb, var(--wpb-bg) 88%, var(--wpb-text)) !important;
  border-bottom-color: color-mix(in srgb, var(--wpb-text) 12%, transparent) !important;
}
.website-preview-box .wpb-browser[class*="wpb-tpl--"] .wpb-url-pill {
  background: color-mix(in srgb, var(--wpb-text) 8%, transparent) !important;
  border-color: color-mix(in srgb, var(--wpb-text) 12%, transparent) !important;
  color: var(--wpb-muted) !important;
}

/* Template-specific layout overlays — these are decorative, kept static
   so the layout stays recognizable across themes. They only adjust opacity
   based on theme luminance via mix-blend so they look good on light or dark. */
.website-preview-box .wpb-browser.wpb-tpl--clinic .wpb-tpl-bg-clinic,
.website-preview-box .wpb-browser.wpb-tpl--green .wpb-tpl-bg-green {
  mix-blend-mode: overlay;
  opacity: 0.85;
}


/* =========================================================
   COMMON TEMPLATE FOOTER (slot for steps 4 & 8)
   Appended to every template via JS so Sections + Contact
   always have somewhere visible to write changes.
   ========================================================= */
.website-preview-box .wpb-tpl-foot {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--wpb-text) 12%, transparent);
  position: relative;
  z-index: 2;
}
.website-preview-box .wpb-tpl-foot-features {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.website-preview-box .wpb-tpl-chip {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
  background: var(--wpb-surface, rgba(255,255,255,.08));
  color: var(--wpb-text, #fff);
  border: 1px solid color-mix(in srgb, var(--wpb-text) 14%, transparent);
  white-space: nowrap;
}
.website-preview-box .wpb-tpl-foot .wpb-trust {
  font-size: 10.5px;
  color: var(--wpb-muted);
  margin: 0;
}

/* =========================================================
   LAYOUT step (5) — works on every template by targeting
   the universal .wpb-tpl-hero container.
   ========================================================= */
.website-preview-box .wpb-browser .wpb-tpl-hero {
  transition: padding 0.3s ease, gap 0.3s ease;
}
.website-preview-box .wpb-browser.wpb-layout--center .wpb-tpl-hero,
.website-preview-box .wpb-browser.wpb-layout--center .wpb-tpl-hero-text,
.website-preview-box .wpb-browser.wpb-layout--center .wpb-tpl-mosaic-text,
.website-preview-box .wpb-browser.wpb-layout--center .wpb-tpl-spa-text,
.website-preview-box .wpb-browser.wpb-layout--center .wpb-tpl-sound-main {
  text-align: center;
  align-items: center;
}
.website-preview-box .wpb-browser.wpb-layout--center .wpb-glassy-cta,
.website-preview-box .wpb-browser.wpb-layout--center .wpb-tpl-cta-row {
  align-self: center;
  justify-content: center;
}

.website-preview-box .wpb-browser.wpb-layout--full .wpb-tpl-hero {
  padding: 24px 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--wpb-text) 5%, transparent);
}

.website-preview-box .wpb-browser.wpb-layout--stack .wpb-tpl-hero {
  gap: 6px;
}
.website-preview-box .wpb-browser.wpb-layout--stack .wpb-hero {
  font-size: 28px !important;
}
.website-preview-box .wpb-browser.wpb-layout--stack .wpb-tpl-foot {
  flex-direction: column;
  align-items: flex-start;
}


/* =========================================================
   v2 PREVIEW ARCHITECTURE — CLEAN REWRITE
   Step 1 = layout (B&W skeleton). Step 2 = mood. Step 3 = palette.
   Step 4 = which sections render. Step 5/6 = CTA / Font.
   Step 7 = contact details. Step 8 = send.
   ========================================================= */

/* ---------- Preview frame ---------- */
.website-preview-box .wpb-browser {
  max-height: 640px !important;
  min-height: 560px !important;
  /* Default neutral B&W palette — picked up by all skeleton elements. */
  --bg: #ffffff;
  --fg: #111111;
  --muted: #777777;
  --surface: #f4f4f4;
  --line: #d4d4d4;
  --p1: #111111;
  --p2: #525252;
  --p3: #e5e5e5;
  background: var(--bg) !important;
  color: var(--fg) !important;
  border-color: var(--line) !important;
}
.website-preview-box .wpb-browser-body {
  overflow-y: auto !important;
  padding: 0 !important;
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
  display: block !important;
}

/* ---------- Browser bar — neutral chrome ---------- */
.website-preview-box .wpb-browser-bar {
  background: var(--surface) !important;
  border-bottom: 1px solid var(--line) !important;
}
.website-preview-box .wpb-browser .wpb-url-pill {
  background: rgba(0,0,0,.05) !important;
  border-color: rgba(0,0,0,.1) !important;
  color: var(--muted) !important;
}

/* ---------- Common nav ---------- */
.website-preview-box .wpb-sk-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky; top: 0; z-index: 5;
  font-family: var(--font-body);
}
.website-preview-box .wpb-sk-brand { display: inline-flex; align-items: center; gap: 8px; }
.website-preview-box .wpb-sk-mark {
  width: 18px; height: 18px; border-radius: 6px;
  background: var(--p1);
}
.website-preview-box .wpb-sk-brand-name { font-weight: 700; font-size: 13px; letter-spacing: -0.01em; color: var(--fg); }
.website-preview-box .wpb-sk-links { display: flex; gap: 18px; }
.website-preview-box .wpb-sk-links span { font-size: 11px; color: var(--muted); }

/* ---------- Headings ---------- */
.website-preview-box .wpb-sk-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.website-preview-box .wpb-sk-h1 {
  font-family: 'Syne', sans-serif;
  font-size: 38px; line-height: 1.05; font-weight: 700;
  color: var(--fg); margin: 0;
}
.website-preview-box .wpb-sk-h1-mega { font-size: 88px; line-height: 1; letter-spacing: -0.04em; }
.website-preview-box .wpb-sk-h1-stack { font-size: 44px; line-height: 0.95; letter-spacing: -0.04em; }
.website-preview-box .wpb-sk-h1-center { text-align: center; }
.website-preview-box .wpb-sk-h1-bold { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; }
.website-preview-box .wpb-sk-h2 {
  font-family: 'Syne', sans-serif;
  font-size: 26px; line-height: 1.1; font-weight: 700;
  color: var(--fg); margin: 0 0 18px 0;
}
.website-preview-box .wpb-sk-h2-mega { font-size: 32px; }
.website-preview-box .wpb-sk-sub {
  font-family: var(--font-body);
  font-size: 13px; line-height: 1.55; color: var(--muted); margin: 8px 0 14px 0;
}
.website-preview-box .wpb-sk-sub-center { text-align: center; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ---------- CTA buttons (styled by step 5 classes on .wpb-browser) ---------- */
.website-preview-box .wpb-sk-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--p1);
  color: var(--bg);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}
.website-preview-box .wpb-sk-cta:hover { transform: translateY(-1px); }
.website-preview-box .wpb-sk-cta-pill { padding: 7px 14px; font-size: 11px; }
.website-preview-box .wpb-sk-cta-ghost {
  background: transparent !important;
  color: var(--fg) !important;
  border: 1px solid var(--line) !important;
}
.website-preview-box .wpb-sk-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.website-preview-box .wpb-sk-cta-row-center { justify-content: center; }

/* ---------- Hero shells ---------- */
.website-preview-box .wpb-sk-hero {
  position: relative;
  padding: 30px 26px;
  background: var(--bg);
}

/* COVER hero — full-bleed photo with overlay text bottom-left */
.website-preview-box .wpb-sk-cover {
  display: flex; flex-direction: column; gap: 14px;
}
.website-preview-box .wpb-sk-cover-photo {
  height: 240px; border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, var(--surface) 0 8px, transparent 8px 16px),
    var(--p3);
  border: 1px solid var(--line);
}
.website-preview-box .wpb-sk-cover-text { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }

/* STATS hero */
.website-preview-box .wpb-sk-stats {
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.website-preview-box .wpb-sk-stats-photo {
  width: 100%; height: 180px; border-radius: 14px;
  background: linear-gradient(180deg, var(--p3), var(--surface));
  border: 1px solid var(--line);
}
.website-preview-box .wpb-sk-stats-text { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.website-preview-box .wpb-sk-stat-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  width: 100%;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.website-preview-box .wpb-sk-stat { display: flex; flex-direction: column; gap: 4px; }
.website-preview-box .wpb-sk-stat strong {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--fg);
}
.website-preview-box .wpb-sk-stat small { font-size: 10px; color: var(--muted); }

/* GRID (Apple-style) hero */
.website-preview-box .wpb-sk-grid-hero {
  display: flex; flex-direction: column; gap: 18px; padding-bottom: 14px;
}
.website-preview-box .wpb-sk-prod-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.website-preview-box .wpb-sk-prod {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-body); font-size: 11px;
}
.website-preview-box .wpb-sk-prod-img {
  width: 100%; aspect-ratio: 1.1/1; border-radius: 10px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
}
.website-preview-box .wpb-sk-prod span { font-weight: 600; color: var(--fg); }
.website-preview-box .wpb-sk-prod small { color: var(--muted); font-size: 9px; }

/* MOSAIC hero */
.website-preview-box .wpb-sk-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.website-preview-box .wpb-sk-mosaic-text { display: flex; flex-direction: column; gap: 8px; align-self: end; }
.website-preview-box .wpb-sk-mosaic-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 6px; height: 220px;
}
.website-preview-box .wpb-sk-photo-a {
  grid-row: 1 / 3;
  background: repeating-linear-gradient(135deg, var(--surface) 0 6px, var(--bg) 6px 14px), var(--p3);
}
.website-preview-box .wpb-sk-photo-b { background: linear-gradient(135deg, var(--p2), var(--surface)); }
.website-preview-box .wpb-sk-photo-c { background: linear-gradient(135deg, var(--p3), var(--p1)); }
.website-preview-box .wpb-sk-mosaic-tags {
  grid-column: span 2; list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
}

/* CENTER hero */
.website-preview-box .wpb-sk-center {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 40px 26px;
  text-align: center; position: relative;
}
.website-preview-box .wpb-sk-center-shape {
  position: absolute; pointer-events: none;
  border-radius: 50%;
  border: 1px dashed var(--line);
  background: radial-gradient(circle, color-mix(in srgb, var(--p1) 20%, transparent), transparent 70%);
}
.website-preview-box .wpb-sk-center-shape-1 { width: 200px; height: 200px; left: -60px; top: 20%; }
.website-preview-box .wpb-sk-center-shape-2 { width: 240px; height: 240px; right: -80px; bottom: 0; background: radial-gradient(circle, color-mix(in srgb, var(--p2) 20%, transparent), transparent 70%); }
.website-preview-box .wpb-sk-eyebrow-pill {
  padding: 4px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); margin-bottom: 6px;
}

/* FRAME hero */
.website-preview-box .wpb-sk-frame {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px;
}
.website-preview-box .wpb-sk-frame-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.website-preview-box .wpb-sk-frame-side { display: flex; flex-direction: column; gap: 10px; }
.website-preview-box .wpb-sk-frame-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; display: flex; flex-direction: column; gap: 6px;
}
.website-preview-box .wpb-sk-frame-card strong { font-weight: 700; color: var(--fg); }
.website-preview-box .wpb-sk-frame-card small { color: var(--muted); font-size: 10px; }

/* SIDE hero */
.website-preview-box .wpb-sk-side {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center;
}
.website-preview-box .wpb-sk-side-text { display: flex; flex-direction: column; gap: 10px; }
.website-preview-box .wpb-sk-side-text em { font-style: italic; }
.website-preview-box .wpb-sk-side-photo {
  border-radius: 14px; min-height: 220px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--p1) 15%, transparent), transparent 60%),
    radial-gradient(ellipse at 30% 40%, var(--p3), var(--p1));
  border: 1px solid var(--line);
}

/* SPLIT hero */
.website-preview-box .wpb-sk-split {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px;
}
.website-preview-box .wpb-sk-split-stats {
  background: var(--fg); color: var(--bg);
  border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.website-preview-box .wpb-sk-split-stats .wpb-sk-stat strong { color: var(--bg); font-size: 28px; }
.website-preview-box .wpb-sk-split-stats .wpb-sk-stat small { color: rgba(255,255,255,.6); }
.website-preview-box .wpb-sk-split-blurb { font-size: 11px; color: rgba(255,255,255,.7); line-height: 1.55; margin: 0; }
.website-preview-box .wpb-sk-split-main {
  background: var(--p1); color: var(--bg);
  border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.website-preview-box .wpb-sk-split-main .wpb-sk-h1 { color: var(--bg); font-size: 56px; line-height: 0.9; }
.website-preview-box .wpb-sk-split-main .wpb-sk-sub { color: rgba(255,255,255,.85); }
.website-preview-box .wpb-sk-photo-split {
  height: 100px; border-radius: 8px;
  background: linear-gradient(135deg, var(--p3), var(--p2));
}

/* ---------- Photo placeholders (B&W stippled / gradient) ---------- */
.website-preview-box .wpb-sk-photo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  background-image: repeating-linear-gradient(45deg, var(--line) 0 1px, transparent 1px 8px);
}
.website-preview-box .wpb-sk-photo-square { width: 100%; aspect-ratio: 1/1; min-height: 180px; }
.website-preview-box .wpb-sk-photo-blog { aspect-ratio: 16/10; }
.website-preview-box .wpb-sk-photo-gal { aspect-ratio: 4/5; }
.website-preview-box .wpb-sk-photo-work { aspect-ratio: 16/10; }
.website-preview-box .wpb-sk-photo-frame { flex: 1; min-height: 130px; border-radius: 6px; }
.website-preview-box .wpb-sk-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); }
.website-preview-box .wpb-sk-avatar-large { width: 56px; height: 56px; }

/* ---------- Common section blocks ---------- */
.website-preview-box .wpb-sk-sec {
  padding: 32px 26px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.website-preview-box .wpb-sk-grid {
  display: grid; gap: 16px;
}
.website-preview-box .wpb-sk-grid-2 { grid-template-columns: repeat(2, 1fr); }
.website-preview-box .wpb-sk-grid-3 { grid-template-columns: repeat(3, 1fr); }

.website-preview-box .wpb-sk-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
}
.website-preview-box .wpb-sk-card h3 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--fg); margin: 0; }
.website-preview-box .wpb-sk-card p { font-family: var(--font-body); font-size: 12px; line-height: 1.5; color: var(--muted); margin: 0; }
.website-preview-box .wpb-sk-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--p1);
}

/* About: split */
.website-preview-box .wpb-sk-split-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center;
}
.website-preview-box .wpb-sk-split-text { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.website-preview-box .wpb-sk-split-text p { font-family: var(--font-body); font-size: 12.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Pricing */
.website-preview-box .wpb-sk-pricing-grid { gap: 14px; }
.website-preview-box .wpb-sk-pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px; display: flex; flex-direction: column; gap: 8px;
}
.website-preview-box .wpb-sk-pcard-feat { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.website-preview-box .wpb-sk-pcard-feat h3,
.website-preview-box .wpb-sk-pcard-feat .wpb-sk-price { color: var(--bg); }
.website-preview-box .wpb-sk-pcard-feat ul li { color: rgba(255,255,255,.85); }
.website-preview-box .wpb-sk-pcard h3 { font-family: 'Syne', sans-serif; font-size: 14px; margin: 0; color: var(--fg); }
.website-preview-box .wpb-sk-price { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--fg); }
.website-preview-box .wpb-sk-pcard ul { list-style: none; padding: 0; margin: 8px 0; display: flex; flex-direction: column; gap: 4px; }
.website-preview-box .wpb-sk-pcard ul li { font-family: var(--font-body); font-size: 11px; color: var(--muted); }

/* Testimonials */
.website-preview-box .wpb-sk-tcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; display: flex; flex-direction: column; gap: 12px;
}
.website-preview-box .wpb-sk-tcard p { font-family: 'Syne', sans-serif; font-size: 14px; line-height: 1.45; color: var(--fg); margin: 0; font-style: italic; }
.website-preview-box .wpb-sk-tperson { display: flex; align-items: center; gap: 10px; }
.website-preview-box .wpb-sk-tperson strong { display: block; font-family: var(--font-body); font-size: 12px; color: var(--fg); }
.website-preview-box .wpb-sk-tperson small { display: block; font-size: 10px; color: var(--muted); }

/* Blog */
.website-preview-box .wpb-sk-bcard { display: flex; flex-direction: column; gap: 8px; }
.website-preview-box .wpb-sk-bcard h3 { font-family: 'Syne', sans-serif; font-size: 13px; color: var(--fg); margin: 0; line-height: 1.3; }
.website-preview-box .wpb-sk-bcard small { color: var(--muted); font-size: 10px; }

/* Gallery */
.website-preview-box .wpb-sk-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}

/* Work */
.website-preview-box .wpb-sk-wcard { display: flex; flex-direction: column; gap: 8px; }
.website-preview-box .wpb-sk-wcard h3 { font-family: 'Syne', sans-serif; font-size: 14px; color: var(--fg); margin: 0; }
.website-preview-box .wpb-sk-wcard small { color: var(--muted); font-size: 10px; }

/* Contact */
.website-preview-box .wpb-sk-contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.website-preview-box .wpb-sk-cc {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 6px;
}
.website-preview-box .wpb-sk-cc strong { font-family: 'Syne', sans-serif; font-size: 12px; color: var(--fg); }
.website-preview-box .wpb-sk-cc span { font-family: var(--font-body); font-size: 13px; color: var(--muted); }
.website-preview-box .wpb-sk-cc-form { grid-column: span 2; gap: 10px; }
.website-preview-box .wpb-sk-input { height: 32px; border-radius: 6px; background: var(--bg); border: 1px solid var(--line); }
.website-preview-box .wpb-sk-input-tall { height: 70px; }
.website-preview-box .wpb-sk-cc-map { grid-column: span 2; }
.website-preview-box .wpb-sk-map {
  height: 120px; border-radius: 8px;
  background:
    linear-gradient(135deg, var(--surface), var(--bg)),
    repeating-linear-gradient(45deg, transparent 0 12px, var(--line) 12px 13px);
  background-blend-mode: multiply;
  border: 1px solid var(--line);
}
.website-preview-box .wpb-sk-cc-booking { grid-column: span 2; }
.website-preview-box .wpb-sk-calendar {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  padding: 8px; background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
}
.website-preview-box .wpb-sk-calendar span {
  aspect-ratio: 1; background: var(--surface); border-radius: 4px;
}
.website-preview-box .wpb-sk-cal-pick { background: var(--p1) !important; }

/* Footer */
.website-preview-box .wpb-sk-foot {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.website-preview-box .wpb-sk-foot-cols { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.website-preview-box .wpb-sk-foot-col { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-body); font-size: 11px; color: var(--muted); }
.website-preview-box .wpb-sk-foot-col strong { color: var(--fg); margin-bottom: 4px; }
.website-preview-box .wpb-sk-foot-copy { font-size: 10px; color: var(--muted); margin: 0; padding-top: 12px; border-top: 1px solid var(--line); }


/* =========================================================
   STEP 1 SKELETON THUMBNAILS
   ========================================================= */
.website-preview-box .wpb-skl-thumb {
  width: 100%; aspect-ratio: 5/3; border-radius: 8px;
  background: #fff; border: 1px solid #1a1a1a;
  position: relative; overflow: hidden;
}
.website-preview-box .wpb-skl-thumb::before,
.website-preview-box .wpb-skl-thumb::after { content: ""; position: absolute; pointer-events: none; }

/* Cover thumb: big rectangle + overlay strip */
.website-preview-box .wpb-skl-thumb-cover::before { inset: 4px; background: #d4d4d4; border-radius: 4px; }
.website-preview-box .wpb-skl-thumb-cover::after { left: 8px; bottom: 8px; width: 50%; height: 6px; background: #1a1a1a; border-radius: 2px; }

/* Stats thumb: photo + 2 small bars + 3 dots */
.website-preview-box .wpb-skl-thumb-stats::before { left: 4px; right: 4px; top: 4px; height: 50%; background: #d4d4d4; border-radius: 4px; }
.website-preview-box .wpb-skl-thumb-stats::after {
  left: 4px; right: 4px; bottom: 4px; height: 30%;
  background:
    linear-gradient(90deg, #1a1a1a 0 20%, transparent 20% 30%, #1a1a1a 30% 50%, transparent 50% 60%, #1a1a1a 60% 80%, transparent 80% 100%);
  border-radius: 2px;
}

/* Grid thumb: 4 small cards */
.website-preview-box .wpb-skl-thumb-grid::before {
  inset: 4px; background:
    linear-gradient(90deg, #d4d4d4 0 22%, transparent 22% 26%, #d4d4d4 26% 48%, transparent 48% 52%, #d4d4d4 52% 74%, transparent 74% 78%, #d4d4d4 78% 100%);
  background-size: 100% 70%; background-position: bottom; background-repeat: no-repeat;
  border-radius: 2px;
}
.website-preview-box .wpb-skl-thumb-grid::after { left: 8px; top: 6px; width: 30%; height: 6px; background: #1a1a1a; border-radius: 2px; }

/* Mosaic thumb: bold text + 3 photo blocks */
.website-preview-box .wpb-skl-thumb-mosaic::before {
  left: 4px; top: 4px; bottom: 4px; width: 38%;
  background: linear-gradient(180deg, #1a1a1a 0 18%, transparent 18% 24%, #1a1a1a 24% 42%, transparent 42% 48%, #1a1a1a 48% 66%, transparent 66% 72%, #1a1a1a 72% 90%);
}
.website-preview-box .wpb-skl-thumb-mosaic::after {
  right: 4px; top: 4px; bottom: 4px; width: 56%;
  background:
    linear-gradient(135deg, #d4d4d4 0%, #888 100%) left/48% 100% no-repeat,
    linear-gradient(135deg, #888 0%, #d4d4d4 100%) right top/48% 48% no-repeat,
    linear-gradient(135deg, #d4d4d4 0%, #1a1a1a 100%) right bottom/48% 48% no-repeat;
}

/* Center thumb: pill + lines centered */
.website-preview-box .wpb-skl-thumb-center::before {
  left: 50%; top: 18%; transform: translateX(-50%);
  width: 30%; height: 5px; background: #1a1a1a; border-radius: 999px;
}
.website-preview-box .wpb-skl-thumb-center::after {
  left: 50%; top: 38%; transform: translateX(-50%);
  width: 60%; height: 30%;
  background: linear-gradient(180deg, #1a1a1a 0 30%, transparent 30% 45%, #d4d4d4 45% 80%, transparent 80% 100%);
}

/* Frame thumb: split — left mockup + right card */
.website-preview-box .wpb-skl-thumb-frame::before { left: 4px; top: 4px; bottom: 4px; width: 56%; background: #d4d4d4; border-radius: 4px; }
.website-preview-box .wpb-skl-thumb-frame::after { right: 4px; top: 4px; bottom: 4px; width: 36%; background: #f4f4f4; border: 1px solid #1a1a1a; border-radius: 4px; }

/* Side thumb: text left + photo right */
.website-preview-box .wpb-skl-thumb-side::before {
  left: 6px; top: 50%; transform: translateY(-50%);
  width: 40%; height: 60%;
  background: linear-gradient(180deg, #1a1a1a 0 20%, transparent 20% 35%, #888 35% 60%, transparent 60% 75%, #1a1a1a 75% 90%);
}
.website-preview-box .wpb-skl-thumb-side::after { right: 4px; top: 4px; bottom: 4px; width: 46%; background: linear-gradient(135deg, #888, #d4d4d4); border-radius: 4px; }

/* Split thumb: left dark stats + right colored */
.website-preview-box .wpb-skl-thumb-split::before { left: 4px; top: 4px; bottom: 4px; width: 36%; background: #1a1a1a; border-radius: 4px; }
.website-preview-box .wpb-skl-thumb-split::after { right: 4px; top: 4px; bottom: 4px; width: 56%; background: #888; border-radius: 4px; }


/* =========================================================
   STEP 2 STYLE SWATCHES + STYLE MODES
   ========================================================= */
.website-preview-box .wpb-st-sw-bright { background: linear-gradient(135deg, #fff, #e5e5e5); border: 1px solid #1a1a1a; }
.website-preview-box .wpb-st-sw-dark   { background: linear-gradient(135deg, #1a1a1a, #525252); }
.website-preview-box .wpb-st-sw-warm   { background: linear-gradient(135deg, #fef3c7, #d97706); }
.website-preview-box .wpb-st-sw-cool   { background: linear-gradient(135deg, #dbeafe, #1e40af); }
.website-preview-box .wpb-st-sw-pastel { background: linear-gradient(135deg, #fce7f3, #c4b5fd); }
.website-preview-box .wpb-st-sw-bold   { background: linear-gradient(135deg, #fcd34d, #dc2626); }
.website-preview-box .wpb-st-sw-mono   { background: linear-gradient(135deg, #d4d4d4, #404040); }
.website-preview-box .wpb-st-sw-neon   { background: radial-gradient(circle, #22d3ee 0%, #0c0a1f 80%); }

/* Style modes — set CSS vars */
.website-preview-box .wpb-browser.wpb-st--bright {
  --bg: #ffffff; --fg: #0a0a0a; --muted: #525252; --surface: #f5f5f5; --line: #e5e5e5;
}
.website-preview-box .wpb-browser.wpb-st--dark {
  --bg: #0a0a0a; --fg: #f5f5f5; --muted: #a3a3a3; --surface: #1a1a1a; --line: #404040;
}
.website-preview-box .wpb-browser.wpb-st--warm {
  --bg: #fef9ed; --fg: #3d2914; --muted: #92400e; --surface: #fef3c7; --line: #fde68a;
}
.website-preview-box .wpb-browser.wpb-st--cool {
  --bg: #f0f9ff; --fg: #0c2a52; --muted: #1e40af; --surface: #dbeafe; --line: #bfdbfe;
}
.website-preview-box .wpb-browser.wpb-st--pastel {
  --bg: #fdf4ff; --fg: #4c1d95; --muted: #6d28d9; --surface: #fce7f3; --line: #f5d0fe;
}
.website-preview-box .wpb-browser.wpb-st--bold {
  --bg: #fff7ed; --fg: #7c2d12; --muted: #c2410c; --surface: #fed7aa; --line: #fdba74;
}
.website-preview-box .wpb-browser.wpb-st--mono {
  --bg: #fafafa; --fg: #171717; --muted: #525252; --surface: #e5e5e5; --line: #d4d4d4;
}
.website-preview-box .wpb-browser.wpb-st--neon {
  --bg: #0c0a1f; --fg: #f0f0ff; --muted: #94a3b8; --surface: #1e1b3a; --line: #4338ca;
}


/* =========================================================
   STEP 3 PALETTE TRI-SWATCH
   ========================================================= */
.website-preview-box .wpb-pal-tri {
  background:
    linear-gradient(90deg, var(--c1) 0 33%, var(--c2) 33% 66%, var(--c3) 66% 100%);
  border: 1px solid rgba(0,0,0,.15);
}


/* =========================================================
   STEP 4 + 7 CHECKBOXES
   ========================================================= */
.website-preview-box .wpb-checks .wpb-check .wpb-opt-card {
  flex-direction: row; justify-content: flex-start; gap: 12px; padding: 14px 16px;
}
.website-preview-box .wpb-check-box {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  position: relative; flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.website-preview-box .wpb-check input:checked ~ .wpb-opt-card .wpb-check-box {
  background: #fff; border-color: #fff;
}
.website-preview-box .wpb-check input:checked ~ .wpb-opt-card .wpb-check-box::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px;
  border-right: 2px solid #0e0b1f; border-bottom: 2px solid #0e0b1f;
  transform: rotate(45deg);
}
.website-preview-box .wpb-check input:checked ~ .wpb-opt-card {
  border-color: #fff; background: rgba(255,255,255,.10);
}
.website-preview-box .wpb-opt--disabled { opacity: 0.4; pointer-events: none; }
.website-preview-box .wpb-contact-warning {
  font-family: var(--font-body); font-size: 12px; color: var(--wpb-text-sub);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 12px 14px; margin: 0 0 14px 0;
}
.website-preview-box .wpb-contact-warning strong { color: var(--wpb-text); }


/* =========================================================
   STEP 5 — 8 CTA STYLES (apply to .wpb-sk-cta inside preview)
   ========================================================= */
.website-preview-box .wpb-browser .wpb-sk-cta { transition: all 0.25s ease; }

.website-preview-box .wpb-browser.wpb-cta--glass .wpb-sk-cta {
  background: color-mix(in srgb, var(--fg) 12%, transparent);
  color: var(--fg);
  backdrop-filter: blur(6px);
  border: 1px solid color-mix(in srgb, var(--fg) 25%, transparent);
}
.website-preview-box .wpb-browser.wpb-cta--solid .wpb-sk-cta {
  background: var(--p1); color: var(--bg); border: 0; border-radius: 6px;
}
.website-preview-box .wpb-browser.wpb-cta--outline .wpb-sk-cta {
  background: transparent; color: var(--fg); border: 1.5px solid var(--fg);
}
.website-preview-box .wpb-browser.wpb-cta--minimal .wpb-sk-cta {
  background: transparent; color: var(--fg);
  border-radius: 0; border: 0; border-bottom: 1.5px solid var(--fg);
  padding: 6px 2px;
}
.website-preview-box .wpb-browser.wpb-cta--gradient .wpb-sk-cta {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: var(--bg); border: 0;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--p1) 35%, transparent);
}
.website-preview-box .wpb-browser.wpb-cta--arrow .wpb-sk-cta {
  background: var(--p1); color: var(--bg); border: 0;
  padding-right: 12px;
}
.website-preview-box .wpb-browser.wpb-cta--arrow .wpb-sk-cta::after {
  content: "→"; margin-left: 4px; transition: transform 0.2s ease;
}
.website-preview-box .wpb-browser.wpb-cta--arrow .wpb-sk-cta:hover::after { transform: translateX(3px); }
.website-preview-box .wpb-browser.wpb-cta--shadow .wpb-sk-cta {
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0,0,0,.18), 0 2px 4px rgba(0,0,0,.06);
}
.website-preview-box .wpb-browser.wpb-cta--square .wpb-sk-cta {
  background: var(--p1); color: var(--bg);
  border: 0; border-radius: 0;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800;
  font-size: 11px;
}
/* Ghost CTA always overrides for secondary buttons */
.website-preview-box .wpb-browser .wpb-sk-cta-ghost {
  background: transparent !important;
  color: var(--fg) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
}


/* =========================================================
   STEP 6 — FONT (applies to .wpb-sk-h1 inside)
   ========================================================= */
.website-preview-box .wpb-browser.wpb-font--serif   .wpb-sk-h1 { font-family: 'Syne', serif; font-weight: 700; letter-spacing: -0.02em; text-transform: none; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--sans    .wpb-sk-h1 { font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: -0.02em; text-transform: none; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--round   .wpb-sk-h1 { font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: 0.04em; text-transform: lowercase; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--bold    .wpb-sk-h1 { font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: -0.05em; text-transform: uppercase; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--italic  .wpb-sk-h1 { font-family: 'Syne', serif; font-weight: 600; font-style: italic; letter-spacing: -0.01em; }
.website-preview-box .wpb-browser.wpb-font--light   .wpb-sk-h1 { font-family: 'Syne', sans-serif; font-weight: 400; letter-spacing: 0; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--mono    .wpb-sk-h1 { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 500; letter-spacing: -0.04em; font-style: normal; }
.website-preview-box .wpb-browser.wpb-font--compact .wpb-sk-h1 { font-family: 'DM Sans', sans-serif; font-weight: 800; letter-spacing: -0.06em; text-transform: uppercase; font-style: normal; }


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 760px) {
  .website-preview-box .wpb-options--templates { grid-template-columns: repeat(2, 1fr) !important; }
  .website-preview-box .wpb-sk-mosaic,
  .website-preview-box .wpb-sk-side,
  .website-preview-box .wpb-sk-frame,
  .website-preview-box .wpb-sk-split,
  .website-preview-box .wpb-sk-split-row,
  .website-preview-box .wpb-sk-grid-3,
  .website-preview-box .wpb-sk-grid-2,
  .website-preview-box .wpb-sk-prod-row { grid-template-columns: 1fr !important; }
  .website-preview-box .wpb-sk-stat-bar { grid-template-columns: repeat(3, 1fr) !important; }
  .website-preview-box .wpb-sk-foot-cols { grid-template-columns: 1fr !important; }
  .website-preview-box .wpb-sk-h1-mega { font-size: 56px; }
  .website-preview-box .wpb-sk-gallery { grid-template-columns: repeat(2, 1fr); }
  .website-preview-box .wpb-sk-mosaic-grid { height: 160px; }
  .website-preview-box .wpb-sk-contact-grid { grid-template-columns: 1fr; }
  .website-preview-box .wpb-sk-cc-form,
  .website-preview-box .wpb-sk-cc-map,
  .website-preview-box .wpb-sk-cc-booking { grid-column: span 1; }
}


/* =========================================================
   v2 PATCH — Smoother thumbnails (Section 1) + tri-pie palettes (Section 3)
   These override the simpler shapes above.
   ========================================================= */

/* ---------- Skeleton thumbnails — minimal centered icons ---------- */
.website-preview-box .wpb-skl-thumb {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.website-preview-box .wpb-skl-thumb::before,
.website-preview-box .wpb-skl-thumb::after {
  content: ""; position: absolute; pointer-events: none;
  background: #c4c4c4;
  border-radius: 3px;
}

/* Cover — one centered block */
.website-preview-box .wpb-skl-thumb-cover::before {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80%; height: 70%;
}
.website-preview-box .wpb-skl-thumb-cover::after { display: none; }

/* Stats — two stacked centered bars (image + row) */
.website-preview-box .wpb-skl-thumb-stats::before {
  top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 78%; height: 32%;
}
.website-preview-box .wpb-skl-thumb-stats::after {
  top: 72%; left: 50%; transform: translate(-50%, -50%);
  width: 78%; height: 18%;
}

/* Grid — two equal squares, centered as a pair */
.website-preview-box .wpb-skl-thumb-grid::before {
  top: 50%; left: 32%; transform: translate(-50%, -50%);
  width: 28%; height: 55%;
}
.website-preview-box .wpb-skl-thumb-grid::after {
  top: 50%; left: 68%; transform: translate(-50%, -50%);
  width: 28%; height: 55%;
}

/* Mosaic — asymmetric pair, centered */
.website-preview-box .wpb-skl-thumb-mosaic::before {
  top: 50%; left: 30%; transform: translate(-50%, -50%);
  width: 26%; height: 65%;
}
.website-preview-box .wpb-skl-thumb-mosaic::after {
  top: 50%; left: 66%; transform: translate(-50%, -50%);
  width: 40%; height: 45%;
}

/* Center — title bar + button, both centered */
.website-preview-box .wpb-skl-thumb-center::before {
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  width: 55%; height: 10%;
  background: #6a6a6a;
}
.website-preview-box .wpb-skl-thumb-center::after {
  top: 65%; left: 50%; transform: translate(-50%, -50%);
  width: 24%; height: 14%;
  background: #6a6a6a;
  border-radius: 999px;
}

/* Frame — filled card + outlined card, centered */
.website-preview-box .wpb-skl-thumb-frame::before {
  top: 50%; left: 32%; transform: translate(-50%, -50%);
  width: 30%; height: 70%;
}
.website-preview-box .wpb-skl-thumb-frame::after {
  top: 50%; left: 68%; transform: translate(-50%, -50%);
  width: 30%; height: 70%;
  background: transparent;
  border: 1.5px solid #c4c4c4;
}

/* Side — narrow text block + wider image block */
.website-preview-box .wpb-skl-thumb-side::before {
  top: 50%; left: 28%; transform: translate(-50%, -50%);
  width: 22%; height: 60%;
  background: #6a6a6a;
}
.website-preview-box .wpb-skl-thumb-side::after {
  top: 50%; left: 67%; transform: translate(-50%, -50%);
  width: 42%; height: 72%;
}

/* Split — two centered equal columns, dark + light */
.website-preview-box .wpb-skl-thumb-split::before {
  top: 50%; left: 30%; transform: translate(-50%, -50%);
  width: 32%; height: 72%;
  background: #6a6a6a;
}
.website-preview-box .wpb-skl-thumb-split::after {
  top: 50%; left: 70%; transform: translate(-50%, -50%);
  width: 32%; height: 72%;
}

/* ---------- Section 3 — palette tri swatches as 3-sector pie ---------- */
.website-preview-box .wpb-pal-tri {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: conic-gradient(
    from -90deg,
    var(--c1) 0deg 120deg,
    var(--c2) 120deg 240deg,
    var(--c3) 240deg 360deg
  );
  border: 0 !important;
  box-shadow:
    inset 0 0 0 2px #fff,
    inset 0 0 0 3px rgba(0,0,0,.08),
    0 2px 6px rgba(0,0,0,.18);
}


/* Hamburger toggle — hidden on desktop, shown on tablet/phone */
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 0; padding: 0;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 23px; }
.nav.is-open .nav-toggle span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { top: 17px; transform: rotate(-45deg); }
/* On desktop, .nav-menu is invisible to layout — its children
   (links + CTA) become direct flex items of .nav so the original
   logo / links / CTA space-between still works. */
.nav-menu { display: contents; }

/* =========================================================
   TABLET / SMALL-DESKTOP RESPONSIVE (≤ 1024px)
   Scales the desktop layout down proportionally. Keeps the
   feel — no big gaps, no broken sticky, no jumps. The 640px
   block below overrides this for true phones.
   ========================================================= */
@media (max-width: 1024px) {

  /* Hamburger replaces the nav links + CTA at this width.
     IMPORTANT: explicit `display: flex` here — the base rule uses
     `display: contents` so the panel needs a real box for
     position/transform/opacity to apply. */
  .nav { padding: 0 24px; height: 60px; position: relative; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #1C1C1E;
    border-bottom: 1px solid rgba(255,255,255,.2);
    padding: 22px 24px 28px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: 100;
  }
  .nav.is-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav-links a { font-size: 18px; padding: 6px 0; }
  .nav .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    justify-content: center;
  }

  /* Hero */
  h1 { font-size: 92px; letter-spacing: -1.5px; line-height: 1; }
  .hero-content { top: 200px; left: 40px; right: 40px; }
  .hero-line2 { margin-left: 260px; }
  .hero-line3 { margin-left: 110px; }

  /* Section h2 */
  h2 { font-size: 72px; line-height: 1; }
  .services-line1 { margin-left: 40px; }
  .services-line2 { margin-left: 110px; }
  .services-header { padding-top: 48px; padding-bottom: 48px; }

  /* Service boxes — scale, keep 50/50 split */
  .service-box-1,
  .service-box-2,
  .service-box-3 {
    width: calc(100vw - 40px);
    max-width: 1200px;
    padding: 60px 28px;
    gap: 32px;
  }
  .service-content-1 h2,
  .service-content-2 h2,
  .service-content-3 h2 {
    font-size: 56px;
    line-height: 0.95;
  }
  .service-content-1 p,
  .service-content-2 p,
  .service-content-3 p { font-size: 16px; }
  .service-content-2 h2 { padding-top: 60px; padding-bottom: 16px; }

  /* Pricing — 2 columns at this width */
  .pricing-header { padding-top: 48px; padding-bottom: 48px; }
  .pricing-header h2 { font-size: 56px; }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100vw - 40px);
    max-width: 1200px;
    gap: 28px;
  }
  .pricing-card { padding: 36px 24px; }
  .pricing { margin-bottom: 120px; }

  /* Website preview */
  .website-preview-header { padding-top: 80px; }
  .website-preview-header h2 { font-size: 60px; }
  .website-preview {
    padding-bottom: 120px;
    gap: 50px;
  }
  .website-preview-box {
    width: calc(100vw - 32px);
    max-width: 1200px;
  }

  /* Testimonials */
  .testimonials { padding: 60px 40px; }

  /* Footer — keep two-column feel but shrink */
  .footer { padding-left: 40px; padding-right: 40px; height: auto; min-height: 600px; }
  .footer-content { padding: 16px 0; }
  .footer-right { gap: 50px; }
  .footer-bottom { left: 40px; right: 40px; }
  .footer-circle {
    width: 1100px; height: 1200px; top: -680px;
  }
}


/* =========================================================
   STACK SERVICE VIDEO + CONTENT (≤ 1190px)
   ========================================================= */
@media (max-width: 1190px) {
  .service {
    position: static;
    height: auto;
    margin-bottom: 80px;
  }
  .service-box-1,
  .service-box-2,
  .service-box-3 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: calc(100vw - 40px);
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
    padding: 40px 32px;
  }
  .service-content-1,
  .service-content-2,
  .service-content-3 {
    width: 100%;
    height: auto;
  }
  .service-video-1,
  .service-video-2,
  .service-video-3 {
    width: 100%;
    height: 50vh;
  }
  .service-content-2 h2 {
    padding-top: 0;
  }
}


/* =========================================================
   PHONE-ONLY RESPONSIVE (≤ 640px)
   Sticky-stack is disabled on phone so we can safely clip any
   horizontal overflow at the page level — no off-screen content.
   ========================================================= */
@media (max-width: 640px) {

  /* Hard safety net: never let anything spill horizontally on phone. */
  html, body { overflow-x: hidden; max-width: 100vw; }
  img, video, iframe { max-width: 100%; height: auto; }

  /* --- Section h2 --- */
  h2 { font-size: 44px; line-height: 1.05; }

  /* --- Hero — collapses to content height, more left breathing room. --- */
  .hero {
    height: auto;
    min-height: 0;
    padding: 100px 28px 50px;
  }
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    padding-left: 8px;
  }
  h1 { font-size: 52px; letter-spacing: -1px; line-height: 1.05; }
  .hero-line2 { margin-left: 90px; }
  .hero-line3 { margin-left: 36px; }

  /* --- Services header + sticky disable --- */
  .services-header {
    padding-top: 24px;
    padding-bottom: 16px;
  }
  .services-line1 { margin-left: 18px; }
  .services-line2 { margin-left: 56px; }
  .service,
  .service-2 {
    position: static;
    height: auto;
    margin-bottom: 24px;
    padding: 0;
  }

  /* --- Service boxes — stack vertically, contained width --- */
  .service-box-1,
  .service-box-2,
  .service-box-3 {
    width: calc(100vw - 24px);
    padding: 24px 18px;
    flex-direction: column;
    gap: 18px;
    height: auto;
  }
  .service-content-1,
  .service-content-2,
  .service-content-3 {
    width: 100%;
    height: auto;
    border: 0;
  }
  .service-video-1,
  .service-video-2,
  .service-video-3 {
    width: 100%;
    height: 200px;
    border: 0;
  }
  .service-content-1 h2,
  .service-content-2 h2,
  .service-content-3 h2 {
    font-size: 36px;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 10px;
  }
  .service-content-1 p,
  .service-content-2 p,
  .service-content-3 p {
    font-size: 14px;
    line-height: 1.45;
    padding-bottom: 14px;
  }

  /* --- Pricing — content height, no hover-grow, single column --- */
  .pricing {
    height: auto;
    padding: 40px 0;
    margin-bottom: 50px;
  }
  .pricing-header {
    padding-top: 12px;
    padding-bottom: 16px;
  }
  .pricing-header h2 { font-size: 36px; padding: 0 18px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
    gap: 18px;
  }
  .pricing-card { padding: 24px 20px; border-radius: 32px; }
  .pricing-card:hover { transform: none; }
  .pricing-price strong { font-size: 26px; }

  /* --- Website preview — preview on top, configurator below; trim padding --- */
  .website-preview-header h2 { font-size: 36px; padding: 0 18px; }
  .website-preview { gap: 28px; padding-bottom: 80px; }
  .website-preview-box {
    width: calc(100vw - 24px);
    max-width: 100%;
    padding: 16px 12px 24px;
    border-radius: 18px;
  }
  .website-preview-box .wpb-main {
    display: flex;
    flex-direction: column-reverse;
  }
  .website-preview-box .wpb-config { padding: 0; }
  .website-preview-box .wpb-options,
  .website-preview-box .wpb-card-grid,
  .website-preview-box .wpb-options--templates {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .website-preview-box .wpb-opt--wide { grid-column: span 2; }
  .website-preview-box .wpb-browser { min-height: 420px; }

  /* --- Testimonials --- */
  .testimonials { padding: 60px 18px; }
  .testimonials h1 { font-size: 48px; }

  /* --- Footer --- */
  .footer { height: auto; padding: 40px 20px; }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 0;
  }
  .footer-line { display: none; }
  .footer-left h3 { font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
  .footer-right {
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 12px;
  }
  .footer-right h5 { font-size: 11px; margin-bottom: 10px; }
  .footer-right a { font-size: 13px; }
  .footer-bottom {
    position: static;
    margin-top: 28px;
    flex-direction: column;
    gap: 6px;
    left: auto; right: auto; bottom: auto;
  }
  .footer-bottom p,
  .footer-bottom a { font-size: 11px; }
  .footer-circle {
    width: 600px; height: 640px; top: -360px;
  }
}


/* =========================================================
   TINY SCREENS (≤ 400px) — iPhone SE / small Androids
   Everything tightens one more notch so nothing leaks off
   the right edge.
   ========================================================= */
@media (max-width: 400px) {

  /* Nav */
  .nav { padding: 0 14px; }

  /* Hero */
  .hero { padding: 90px 20px 40px; }
  .hero-content { padding-left: 4px; }
  h1 { font-size: 44px; letter-spacing: -0.5px; }
  .hero-line2 { margin-left: 70px; }
  .hero-line3 { margin-left: 28px; }
  .hero-content p { font-size: 11px; }

  /* Section h2 */
  h2 { font-size: 36px; }
  .services-line1 { margin-left: 14px; }
  .services-line2 { margin-left: 44px; }

  /* Service boxes */
  .service-box-1,
  .service-box-2,
  .service-box-3 {
    width: calc(100vw - 16px);
    padding: 20px 14px;
    gap: 14px;
  }
  .service-content-1 h2,
  .service-content-2 h2,
  .service-content-3 h2 { font-size: 30px; }
  .service-content-1 p,
  .service-content-2 p,
  .service-content-3 p { font-size: 13px; padding-bottom: 12px; }
  .service-video-1,
  .service-video-2,
  .service-video-3 { height: 170px; }

  /* Pricing */
  .pricing-grid { width: calc(100vw - 16px); }
  .pricing-card { padding: 20px 16px; border-radius: 28px; }
  .pricing-header h2 { font-size: 30px; padding: 0 14px; }

  /* Website preview — single column inside the configurator
     so options don't get cramped. */
  .website-preview-header h2 { font-size: 30px; }
  .website-preview-box {
    width: calc(100vw - 16px);
    padding: 14px 10px 20px;
  }
  .website-preview-box .wpb-options,
  .website-preview-box .wpb-card-grid,
  .website-preview-box .wpb-options--templates {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .website-preview-box .wpb-opt--wide { grid-column: span 1; }
  .website-preview-box .wpb-stepbar { font-size: 11px; gap: 8px; }
  .website-preview-box .wpb-title { font-size: 19px; }
  .website-preview-box .wpb-desc { font-size: 12px; }
  .website-preview-box .wpb-browser { min-height: 380px; }
  .website-preview-box .wpb-nav button { font-size: 12px; padding: 8px 14px; }

  /* Testimonials */
  .testimonials { padding: 50px 14px; }
  .testimonials h1 { font-size: 38px; }

  /* Footer */
  .footer { padding: 32px 16px; }
  .footer-left h3 { font-size: 20px; }
  .footer-right { gap: 18px; }
  .footer-circle {
    width: 480px; height: 520px; top: -290px;
  }
}


/* =========================================================
   PREVIEW OVERFLOW GUARD
   Ensures the live-preview side of the configurator never spills
   past its grid column at any viewport. Independent of breakpoints.
   ========================================================= */
.website-preview-box { overflow: hidden; }
.website-preview-box .wpb-main { min-width: 0; }
.website-preview-box .wpb-config,
.website-preview-box .wpb-preview {
  min-width: 0;
  max-width: 100%;
}
.website-preview-box .wpb-browser {
  max-width: 100%;
  overflow: hidden;
}
.website-preview-box .wpb-browser-body {
  max-width: 100%;
}
/* Long single words inside the preview can't push past the column edge. */
.website-preview-box .wpb-browser .wpb-sk-h1,
.website-preview-box .wpb-browser .wpb-sk-h2,
.website-preview-box .wpb-browser p,
.website-preview-box .wpb-browser span {
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* =========================================================
   SKELETON NAV — hamburger on small viewports
   Plain media query, no container query (that was causing the
   preview to disappear on phones).
   ========================================================= */
@media (max-width: 720px) {
  .website-preview-box .wpb-sk-links,
  .website-preview-box .wpb-sk-nav > .wpb-sk-cta-pill {
    display: none;
  }
  .website-preview-box .wpb-sk-nav::after {
    content: "";
    display: block;
    width: 22px;
    height: 14px;
    margin-left: auto;
    background:
      linear-gradient(currentColor, currentColor) top    0 / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) center   / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) bottom 0 / 100% 2px no-repeat;
  }
}


/* =========================================================
   CONTACT PAGE — RESPONSIVE
   Picks up the hamburger nav from the main responsive block.
   Adds phone-specific sizing for hero-contact + form section.
   ========================================================= */

@media (max-width: 1024px) {
  /* Hero-contact shrinks padding so heading fits the viewport. */
  .hero-contact {
    padding: 100px 32px;
    height: auto;
    min-height: 80vh;
  }
  .hero-contact-tag {
    left: 32px;
    top: 220px;
  }
  .contact-line1 { margin-left: 40px; }

  /* Form section padding */
  .form-section { padding: 40px 32px; }
  .form-heading h2 { font-size: 28px; }
}

@media (max-width: 640px) {
  /* Hero-contact — tighter, content height. */
  .hero-contact {
    padding: 90px 24px 50px;
    height: auto;
    min-height: 60vh;
  }
  /* Hide the "• Contact" tag on phone. */
  .hero-contact-tag { display: none; }

  /* Stacked heading without the desktop left-margin offsets. */
  .hero-contact-title { line-height: 1.05; }
  .hero-contact span { display: block; }
  .contact-line1,
  .contact-line2 { margin-left: 0; }

  /* Form section */
  .form-section {
    width: 100%;
    padding: 24px 18px 48px;
    gap: 24px;
  }
  .form-heading h2 { font-size: 22px; line-height: 1.2; }
  .form-heading .btn { font-size: 12px; padding: 8px 16px; }
  .contact-form { width: 100%; }
  .form-row { gap: 12px; margin-bottom: 12px; }
  .field input,
  .field select,
  .field textarea {
    height: 52px;
    font-size: 14px;
    padding: 20px 14px 8px;
  }
  .field label { font-size: 13px; left: 14px; }
  .textarea-field textarea { height: 100px; }
  .file-upload { padding: 10px 14px; min-height: 56px; }
  .file-name { font-size: 13px; }
  .contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .hero-contact { padding: 80px 18px 40px; }
  .hero-contact-tag { font-size: 12px; }
  .contact-line1 { margin-left: 18px; }
  .form-section { padding: 20px 14px 40px; }
  .form-heading h2 { font-size: 19px; }
  .field input,
  .field select,
  .field textarea { font-size: 13px; height: 48px; }
}



/* TESTYYY */

