:root {
  --bg-dark: #0e0e0e;
  --bg-light: #ffffff;
  --text-light: #f5f5f5;
  --text-dark: #111;
  --muted: #667;
  --accent: #c9a24d;
  --card: #141414;
  --line: rgba(255,255,255,0.12);
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1.5rem;
}

.link-text-raw{
  color: unset;
}

.speed-proof{
  background:#feffd6;
}

.speed-proof h2{
  font-size:2rem;
  margin-bottom:20px;
}

.speed-proof p{
  font-size:1.05rem;
  line-height:1.65;
  color:#333;
}

.speed-proof strong{
  color:#000;
}

.speed-source{
  margin-top:24px;
  font-size:.9rem;
  font-weight:600;
  color:#666;
  padding-left:14px;
  border-left:3px solid rgba(201,162,77,.9);
}


/* Make Growth clearly highlighted */
/* Global scarcity line */
.pricing-scarcity{
  display:inline-block;
  margin:0 0 14px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  color: #000000 !important;
}

/* Highlight Growth WITHOUT changing the card text structure */
.price-card.featured{
  border-width:3px;
  transform:translateY(-12px);
  box-shadow:0 24px 60px rgba(0,0,0,.18);
  position:relative;
  overflow:hidden;
  background-color: rgba(201,162,77,.2);
}

.price-card.featured::before{
  content:"Most popular 🔥";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  padding:0px 60px;
  font-weight:800;
  font-size:.85rem;
  background:rgba(201,162,77,.95);
  color:#fff;
  border-radius:0 0 20px 20px;
  white-space:nowrap;
}


/* Keep CTAs aligned */
.price-card{display:flex;flex-direction:column}
.price-card .btn{margin-top:auto}


.hero-banner{
  margin-top:16px;
  padding:10px 18px;
  font-size:0.95rem;
  font-weight:700;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:#111;
  color:#fff;

  border:1px solid rgba(201,162,77,.9);
  box-shadow:0 0 0 1px rgba(201,162,77,.25);
  background:rgba(201,162,77,.12);
}

/* small status dot */
.hero-banner-dot{
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a24d;
  box-shadow: 0 0 8px rgba(201,162,77,.8);
}

/* pulse */
.hero-banner-dot::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(201,162,77,.6);
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse{
  0%{
    transform: scale(1);
    opacity: .7;
  }
  70%{
    transform: scale(3.6);
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}




/* VIDEO */
.video-card{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  overflow: hidden;
}

.video-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* keeps it stable, no layout jump */
  background: #000;
}

.preview-video{
  width: 100%;
  height: 100%;
  object-fit: cover; /* nice crop if needed */
  display: block;
}

.video-play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding-left: 5px;
  border: none;
  background: rgba(255, 208, 1, 0.7);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

/* hover = confidence */
.video-play:hover{
  background: rgba(255, 208, 1, .9);
  transform: scale(1.05);
}


/* Accessibility: stop motion if user prefers */
@media (prefers-reduced-motion: reduce){
  .video-play{
    animation: none;
  }
}


.video-note{
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
}

/* Optional: if user prefers reduced motion, stop autoplay loop */
@media (prefers-reduced-motion: reduce){
  .preview-video{ animation: none; }
}


.section-lead {
  color: var(--muted);
}

.pb-2{
  padding-bottom: 10px;
}

.pb-3{
  padding-bottom: 20px;
}

.py-2{
  padding-top: 10px;
  padding-bottom: 10px;
}

.my-2{
  margin-top: 10px;
  margin-bottom: 10px;
}

.mx-2{
  margin-right: 10px;
  margin-left: 10px;
}

.mt-3{
  margin-top: 20px;
}

.mt-1{
  margin-top: 7px;
}

.mb-2{
  margin-bottom: 10px;
}

.m-auto{
  margin-left: auto;
  margin-right: auto;
}

.text-center{
  text-align: center;
}

.back-top{
  padding-bottom: 30px;
  text-decoration: none;
}

.text-white{
  color: #fff;
}

.link-raw{
  text-decoration: none;
  color: unset;
}

/* FORM */
.get-started{
  margin: auto;
}

.lead-form{
  text-align: center;
  margin: 0 auto;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-weight:700;
  text-align: center;
}

/* Inputs */
.form-grid input,
.form-grid textarea{
  width:100%;
  padding:12px 14px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--accent) 75%, #ddd);
  font: inherit;
  background: #fff;
  color: var(--text-dark);
  resize: vertical;
}

/* Keep textareas from becoming ultra-wide */
.form-grid textarea{
  margin: 0 auto;
}

/* Full row */
.form-grid .full{ grid-column: 1 / -1; }

.plan-select{
  width:100%;
  padding:14px 14px;
  font-size:1rem;
  border-radius:10px;
  border:1px solid var(--accent);
  background:#fff;
  font-weight:600;
  cursor:pointer;
}

.plan-select, input, textarea:focus{
  outline: none;
}

.plan-select optgroup{
  font-weight:700;
  color:#555;
}

.plan-select option{
  font-weight:500;
  padding:8px;
}


/* ADD-ONS (cards with description + price) */
.checks{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.checks label{
  display:flex;
  align-items:normal;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in oklab, var(--accent) 35%, #ddd);
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  user-select: none;
}

.checks input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.checks .addon-text{
  display:flex;
  flex-direction:column;
  gap: 4px;
  min-width: 0;
}

.checks .addon-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  font-weight: 900;
}

.checks .addon-name{ font-size: 14px; }
.checks .addon-price{ font-size: 14px; color: var(--accent); font-weight: 900; white-space: nowrap; }

.checks .addon-desc{
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
}

.checks label:hover{
  border-color: var(--accent);
  transform: translateY(-1px);
  transition: 120ms ease;
}

@media (max-width: 720px){
  .checks{ grid-template-columns: 1fr; }

  .form-grid{
  grid-template-columns: 1fr;
}
}

/* TRACKING HELP */
.tracking-help {
  margin-top: 8px;
  font-size: 14px;
}

.tracking-help summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent);
  list-style: none;
}

.tracking-help summary::-webkit-details-marker {
  display: none;
}

.tracking-box {
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.tracking-item strong {
  display: block;
  margin-bottom: 4px;
}

.tracking-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.tracking-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.tracking-item a:hover {
  text-decoration: underline;
}

.tracking-item code {
  background: rgba(0,0,0,0.05);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
}





/* EXAMPLES */
.example-head{
  padding:14px 16px 10px;
}
.example-head h3{ margin:0; font-size:1.05rem; }
h3.exclusive{color: var(--accent);}
.example-head p{ margin:.25rem 0 0; color:var(--muted); font-size:.95rem; }

.example-previews{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:10px;
  padding:0 16px 16px;
  align-items:end;
}
.example-previews img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--line);
}
.example-previews img.mobile{
  height:180px;
}

.example-actions{
  padding:0 16px 16px;
}
.example-actions a{
  width:100%;
  display:inline-flex;
  justify-content:center;
  align-items:center;
}

.examples-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        @media (max-width:900px) {
            .examples-grid {
                grid-template-columns: 1fr
            }
        }

        .example-card {
            border: solid 1px var(--accent);
            border-radius: 16px;
            padding: 16px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.07);
        }

        .example-previews {
            display: grid;
            grid-template-columns: 2fr 1fr;
            margin: 12px 0 14px;
            padding: 0;
        }

        .example-previews img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
            border: 2px solid var(--accent);
            background: #fff;
        }

        /* ZOOM */
        .zoom {
            position: fixed;
            inset: 0;
            display: none;
            z-index: 9999;
        }

        .zoom:target {
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: brightness(0.1);
        }

        /* DIM BACKGROUND + CLICK-TO-CLOSE LAYER */
        .zoom-bg {
            position: absolute;
            inset: 0;
            display: block;
            background: rgba(0, 0, 0, .55);
        }

        /* MODAL BOX */
        .zoom-box {
            position: relative;
            max-width: min(1100px, 92vw);
            max-height: 90vh;
            padding: 0;
            background: transparent;
        }

        /* IMAGE */
        .zoom-box img {
            width: auto;
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            display: block;
            border-radius: 12px;
            border: solid 3px #c9a24d;
        }

/* CLOSE BUTTON (bottom-centered, mobile-friendly) */
.zoom-x {
  position: absolute;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;

  width: auto;
  height: auto;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;

  color: #fff;
  background: rgba(201,162,77,.9);
  backdrop-filter: blur(6px);

  z-index: 10;
}

/* Evidence section */
.evidence { padding: 14px 0; background: #fff; }
.evidence-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.evidence-card{
  border: solid 1px var(--accent);
  border-radius: 16px;
  padding: 16px;
  background: var(--bg-light);
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  text-align: center;
}
.evidence-stat{
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 6px;
}
.evidence-title{ font-weight: 800; margin: 0 0 6px; color: var(--text-dark); }
.evidence-desc{ margin: 0 0 10px; color: var(--muted); }
.evidence-fix{
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(37,99,235,0.08);
  color: var(--text-dark);
}
.evidence-src{ margin: 0; font-size: 12px; color: var(--muted); }

@media (max-width: 980px){
  .evidence-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .evidence-grid{ grid-template-columns: 1fr; }
}

/* PRICING */
.pricing-grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.price-card{
  background: var(--bg-light);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  margin: auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.price-card.exclusive{
  background: #1e1e1e;
  border: 5px solid var(--accent);
  color: #ffffff;
  border-radius: 16px;
  padding: 22px;
  position: relative;
  margin: auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.price-card.featured{
  border-color: color-mix(in oklab, var(--accent) 100%, transparent);
  box-shadow: 0 16px 50px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.price-card .badge{
  position:absolute;
  top:14px;
  right:14px;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 16%, transparent);
  color: var(--text-dark);
}
.price{
  font-size: 40px;
  font-weight: 800;
  margin: 8px 0 0;
}

.price-exclusive{
  font-size: 40px;
  font-weight: bolder;
  margin: 8px 0 0;
  color: var(--accent);
}

.price-sub{ color: var(--muted); margin: 6px 0 14px; }
.price-sub.exclusive{ color: var(--text-light); margin: 6px 0 14px; }
.price-list{ margin: 0; padding-left: 18px; color: var(--text-dark); }
.price-list.exclusive{color: #ffffff;}
.price-list li{ margin: 8px 0; }
.pricing-note{ margin-top: 16px; color: var(--muted); }

.price-per-video{
  font-size:.85rem;
  opacity:.7;
  font-weight:600;
}

.price-per-video-exclusive{
  font-size:.85rem;
  opacity:.7;
  font-weight:600;
}

@media (max-width: 980px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-card.featured{ transform:none; }
}

/* GUARANTEE */
.guarantee-box {
    margin: 0px auto 0;
    padding: 24px 28px;
    max-width: 800px;

    background: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    text-align: center;
}

.guarantee-box h2 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.guarantee-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
}

.guarantee-box::before {
    content: "✓";
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ffffff;
}

/* Buttons */
button{
  border: none;
  text-decoration: none;
  font: unset;
  cursor: pointer;
}

.btn {
  padding: 0.95rem 1.7rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border-radius: 10px;
  transition: transform 0.08s ease;
}
.btn:active { transform: scale(0.98); }

  
.btn-primary { background: var(--accent); color: #fff;}
.btn-outline { border: 1px solid var(--accent); color: var(--accent); background: transparent; }

.btn-sm { padding: 0.65rem 1rem; border-radius: 10px; font-weight: 700; }

/* HERO */
.hero {
  background: radial-gradient(1200px 600px at 50% -100px, rgba(201,162,77,0.22), transparent 60%),
              var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}
.hero h1 { font-size: 2.7rem; margin-bottom: 0.9rem; letter-spacing: -0.02em; }
.hero p { max-width: 720px; margin: 1.25rem auto 1.25rem auto; color: rgba(245,245,245,0.88); }

.hero-cta { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.hero-sub { margin-top: 1.25rem; color: rgba(245,245,245,0.72); font-weight: 500; }

/* HERO B VARIANT */
.hero-b .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-b .hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-b .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-b .hero-media img {
    height: 260px;
    margin-top: 1.5rem;
  }
}

/* TRUST */
.trust { background: var(--accent); }
.trust-grid {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  font-weight: 600;
  color: #fff;
}

/* Content blocks */
h2{
  padding-bottom: 10px;
}

.problem h2, .services h2, .reviews h2, .process h2, .location h2, .faq h2, .final-cta h2 {
  letter-spacing: -0.02em;
}
.kicker { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.5rem; }

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.two-cols li { margin: 0.5rem 0; }

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat strong {
  font-size: 1.75rem;
  display: block;
}

/* PORTFOLIO */
.portfolio{padding:0}
.portfolio-block{margin-top:26px}
.portfolio-block .kicker{margin-bottom:12px}

/* VIDEOS */
.videos-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
@media (max-width: 980px){
  .videos-grid{grid-template-columns:1fr}
}
.video-card{
  background:#fff;
  border:1px solid var(--accent);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  padding:14px;
}
.video-embed{
  position:relative;
  padding-top:56.25%;
  border-radius:12px;
  overflow:hidden;
  background:#111;
}
.video-embed iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
}

/* THUMBNAILS */
.thumbs-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
@media (max-width: 980px){
  .thumbs-grid{grid-template-columns:repeat(1, minmax(0, 1fr))}
}
.thumb-card{
  position:relative;
  display:block;
  border-radius:14px;
  overflow:hidden;
  border:2px solid var(--accent);
  background:#111;
  text-decoration:none;
}
.thumb-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.thumb-label{
  position:absolute;
  left:10px; bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:800;
  background:rgba(0,0,0,.65);
  color:#fff;
}



.video-thumb{
  display:block;
  position:relative;
  border-radius:14px;
  overflow:hidden;
  background:#111;
  text-decoration:none;
}

.video-thumb img{
  width:100%;
  display:block;
  object-fit:cover;
}

.video-thumb-play{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:800;
  background:rgba(0,0,0,.7);
  color:#fff;
  border:1px solid rgba(255,255,255,.2);
}

.zoom-video{
  position:relative;
  width:min(980px, 92vw);
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  background:#111;
}

.zoom-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}


/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  border: solid 1px var(--accent);
  border-radius: 14px;
  padding: 1.25rem;
  background: #fff;
  text-align: center;
  box-shadow: rgba(201, 162, 77, 1) 3px 3px 0px;
  display: inherit;
  align-items: center;
}
.section-cta { margin-top: 2rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Service card image: same height, no stretch */
.service-card img {
  width: 100%;
  height: 180px;         /* change to 160/200 if you want */
  object-fit: cover;     /* crops/zooms instead of stretching */
  object-position: center;
  display: block;
  border-radius: 12px;
}

.service-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.service-tab {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f3f3f3;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.service-tab.active {
  background: var(--accent);
  color: #fff;
}


/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
blockquote {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.25rem;
  background: #fff;
}
blockquote cite { display: block; margin-top: 0.75rem; color: var(--muted); font-style: normal; }

.review-source {
  text-align: center;
  margin-top: 2rem;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.logo-row img {
  height: 37px;
}

.logo-footer{
  width: 150px;
}

/* RESULTS */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ba-pair figure {
  margin: 0;
}

.ba-pair img {
  width: 100%;
  height: 220px;          /* 👈 smaller */
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

.ba-pair figcaption {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.35rem;
  color: #444;
}

/* Mobile */
@media (max-width: 640px) {
  .ba-pair img {
    height: 200px;
  }
}

/* PRICING TOGGLE */
.billing-toggle{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin:14px 0 14px;
  font-weight:600;
}

.billing-note{
  text-align:center;
  font-size:.85rem;
  opacity:.7;
  margin-bottom:24px;
  font-weight:500;
}

.billing-label{
  opacity:.5;
  transition:.2s;
}

.billing-label.active{
  opacity:1;
}

.billing-label small{
  font-weight:500;
  opacity:.7;
}

.switch{
  position:relative;
  width:46px;
  height:24px;
}

.switch input{ display:none; }

.slider{
  position:absolute;
  inset:0;
  background:#ddd;
  border-radius:20px;
  cursor:pointer;
}

.slider::before{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  left:3px;
  top:3px;
  background:#fff;
  border-radius:50%;
  transition:.2s;
}

.switch input:checked + .slider{
  background:#c9a24d;
}

.switch input:checked + .slider::before{
  transform:translateX(22px);
}

.pricing-divider{
  display:flex;
  align-items:center;
  gap:14px;
  margin:40px 0 22px;
  opacity:.9;
}
.pricing-divider-line{
  height:1px;
  flex:1;
  background:rgba(0,0,0,.15);
}
.pricing-divider-text{
  font-weight:800;
  font-size:.9rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  opacity:.7;
}
.pricing-grid-single{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
}



/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.process-step {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  background: #fff;
  align-content: space-around;
}

/* FAQ */
.faq-item {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  background: #fff;
  margin-top: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: #ddd;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Chevron */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 0.75rem;
  color: #555;
}

/* ABOUT US */
.about img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .about img {
    height: 300px;
    margin-top: 1.5rem;
  }

  .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
}

@media (max-width: 550px) {
  .services-grid-main{
    display: grid;
    gap: 10px !important;
}
}


@media (max-width: 450px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.4rem;
  }

.service-card{
  padding: 7px;
}
}


.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  padding: 0.4rem 0.75rem;
  background: #f3f3f3;
  border-radius: 999px;
  font-size: 0.9rem;
}

li {
  list-style: none;
}

/* FINAL CTA */
.final-cta {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}
.final-cta .section-lead { color: rgba(245,245,245,0.75); }

/* Footer */
footer { background: #000; color: #aaa; }
.footer-inner { padding: 2.5rem 1.5rem; text-align: center; }
.footer-links { margin-top: 0.75rem; display: flex; gap: 1rem; justify-content: center; }
.footer-links a { color: #aaa; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-meta {
  color: #777;
  margin-top: 0.25rem;
}

/* Sticky CTA (desktop) */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14,14,14,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.25s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-light);
}
.sticky-cta-text { font-weight: 600; display: flex; align-items: center;}
.sticky-cta-actions { display: flex; gap: 0.5rem; }

/* Mobile call bar */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  border-top: 1px solid var(--line);
  display: none;
  z-index: 999;
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  justify-content: center;
  align-items: center;
}
.mobile-bar-btn-accent { color: #fff; background: var(--accent); }

/* Exit modal */
.hidden { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.modal-card {
  width: 100%;
  max-width: 520px;
  background: #111;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}
.modal-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; padding: 14px; justify-content: center; }
.muted { color: var(--muted); }

.map-wrap { margin-top: 1rem; }

/* Responsive */
@media (max-width: 900px) {
  .two-cols { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .sticky-cta { display: none; } /* keep top sticky for desktop only */
  .mobile-bar { display: flex; }
  body { padding-bottom: 58px; } /* avoid mobile bar overlap */
}
