/* ---------------------------------------------------------
   Custom Setup Page — Hero Section Override
--------------------------------------------------------- */

.hero-custom-setup {
    background: var(--clr-bg);  /* page background */
    color: var(--clr-dark);
    border-bottom: 1px solid var(--clr-dark);

    /* Create a dark “inner wrapper” to match brand aesthetic */
    padding: 0;
    padding-top: 12rem;
    padding-bottom: 8rem;
}

.hero-custom-setup .hero-inner {
    background: var(--clr-dark);
    border: 1px solid rgba(255,255,255,0.4);
    padding: clamp(2rem, 4vw, 4rem);
    color: var(--clr-white);

}

/* Fix title + accent colors to match your palette */
.hero-custom-setup .hero-title {
    color: var(--clr-secondary);
}





/* Subtext remains white */
.hero-custom-setup .hero-subtext {
    color: rgba(255,255,255,1);
}


/* Buttons sit on dark wrapper so original styles work */












/* ================================
   WHAT WE DO SECTION (Option B)
   ================================ */

.cs-whatwedo-section {
    background: var(--clr-bg);
    padding: var(--space-section) 0;
}

/* Header */
.cs-wd-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cs-wd-title {
    font-size: var(--fs-h2);
    color: var(--clr-secondary);
    margin-bottom: 0.8rem;
}

.cs-wd-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: var(--clr-dark);
    opacity: 0.9;
    font-size: var(--fs-body);
}

/* 4-Column Grid */
.cs-wd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Boxes */
.cs-wd-box {
    background: var(--clr-bg); 
    padding: 2rem;
    border: 1px solid var(--clr-gray);
    border-radius: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cs-wd-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(68, 169, 158, 0.15);
}

/* Box Titles */
.cs-wd-box-title {
    color: var(--clr-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* List */
.cs-wd-list {
    list-style: none;
    padding: 0;
    margin-top: auto; /* Push items upward for equal spacing */
}

.cs-wd-list li {
    padding: 0.3rem 0;
    color: var(--clr-dark);
    font-size: 0.95rem;
    opacity: 0.9;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}






















/* ===============================
   SECTION WRAPPER
================================ */
.cs-steps2-section {
    background: var(--clr-bg);
    padding: 5rem 0;
    border-top: 1px solid var(--clr-dark);
}

/* ===============================
   HEADER LAYOUT
================================ */
.cs-steps2-header {
    width: min(1200px, 90%);
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cs-steps2-titlewrap {
    flex-shrink: 0;
}

.cs-steps2-title {
    font-size: var(--fs-h2);
    color: var(--clr-dark);
    margin-bottom: 0.3rem;
}

.cs-steps2-sub {
    color: var(--clr-dark);
    opacity: 0.85;
}

.cs-steps2-divider {
    height: 2px;
    width: 100%;
    background: var(--clr-dark);
    opacity: 0.53;
}

/* ===============================
   GRID
================================ */
.cs-steps2-grid {
    width: min(1200px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===============================
   CARDS
================================ */
.cs-step2-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-secondary);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* forces desc to bottom */
    text-align: left;
    height: 330px; /* fixed equal height */
    transition: var(--transition);
}

.cs-step2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(68, 169, 158, 0.15);
}

/* TOP SECTION */
.cs-step2-top {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cs-step2-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-primary);
}

.cs-step2-heading {
    font-size: 1.2rem;
    color: var(--clr-primary);
}

/* DESCRIPTION (Anchored Bottom) */
.cs-step2-desc {
    color: var(--clr-dark);
    opacity: 0.9;
    line-height: 1.5rem;
    margin: 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .cs-steps2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cs-steps2-grid {
        grid-template-columns: 1fr;
    }
    .cs-step2-card {
        height: auto;
    }
}







/* WRAPPER */
.pricing-wrapper {
    padding: 90px 0;
    color: var(--clr-dark);
}

/* CONTAINER */
.pricing-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: var(--clr-grey);
    font-size: 1.1rem;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARDS */
.pricing-card {
    background: #fff;
    padding: 35px;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* FEATURED */
.pricing-featured {
    border: 2px solid var(--clr-primary);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transform: scale(1.03);
}

.badge-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--clr-primary);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* TITLES */
.package-name {
    font-size: 1.5rem;
    margin-bottom: 7px;
}

.package-tagline {
    color: var(--clr-grey);
    font-size: 1rem;
    margin-bottom: 20px;
}

/* LIST */
.package-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.package-list li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
    color: var(--clr-grey-dark);
}

.package-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-primary);
}

/* PRICE */
.package-price {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* BUTTONS */
.pricing-btn {
    display: inline-block;
    padding: 12px 20px;
    background: var(--clr-primary);
    color: #fff;
    text-align: center;
    transition: 0.3s;
}

.pricing-btn:hover {
    opacity: 0.85;
}

.pricing-btn-dark {
    background: var(--clr-dark);
}

@media (max-width: 768px) {
    .pricing-wrapper {
        padding: 60px 0;
    }
    .pricing-featured {
        transform: scale(1);
    }
}




.trust-section {
    padding: 6rem 0;
    background: var(--clr-bg);
}

.trust-container {
    width: min(1200px, 90%);
    margin: auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-title {
    font-size: 2.6rem;
}

.trust-title span {
    color: var(--clr-primary);
}

.trust-subtext {
    margin-top: 0.6rem;
    font-size: 1.1rem;
    color: var(--clr-dark);
}

/* GRID */
.trust-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--clr-dark);
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.95rem;
    line-height: 1.45rem;
}

/* METRICS */
.trust-metrics {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    gap: 2rem;
}

.metric-value {
    font-size: 1.8rem;
    color: var(--clr-bg);
    background-color: var(--clr-dark);
}

.metric-label {
    font-size: 0.95rem;
    color: var(--clr-dark);

}

/* TESTIMONIAL */
.trust-testimonial {
    margin-top: 5rem;
    padding: 2.5rem;
    background: #fff;
    text-align: center;
    border: 1px solid #eee;
    color: var(--clr-dark);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .trust-grid, .trust-metrics {
        grid-template-columns: 1fr;
    }
}














/* ===========================
   SAMPLE DELIVERABLES SECTION
   =========================== */
/* ========== Fullscreen Workspace Viewer & Deliverables grid (cs- scoped) ========== */

/* Grid base */
.cs-deliv-section { padding: 5.5rem 0; background: var(--clr-bg); }
.cs-deliv-container { max-width: 1200px; margin: 0 auto; }
.cs-deliv-header { text-align: center; margin-bottom: 2.5rem; }
.cs-deliv-title { font-size: 2rem; color: var(--clr-primary); margin-bottom: 8px; }
.cs-deliv-sub { color: var(--clr-dark); opacity: 0.85; }

/* Cards grid */
.cs-deliv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cs-deliv-card {
  background: #fff;
  overflow: hidden;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.cs-deliv-card:focus { outline: 3px solid rgba(0,103,71,0.12); }
.cs-deliv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px rgba(0,0,0,0.10); }

.cs-deliv-thumb { width: 100%; height: 170px; overflow: hidden; background: #e9e9e9; display:flex; align-items:center; justify-content:center; }
.cs-deliv-thumb img { width:100%; height:100%; object-fit:cover; display:block; }

.cs-deliv-card h3 { font-size:1.05rem; color: var(--clr-dark); margin:0; }
.cs-deliv-card p { margin:0; color: var(--clr-dark); opacity:0.8; font-size:0.92rem; }

/* ========== FULLSCREEN VIEWER OVERLAY ========== */
.cs-ws-overlay {
  position: fixed; inset: 0; z-index: 12000;
  display: flex; align-items: center; justify-content: center;
}

/* backdrop (click to close) */
.cs-ws-backdrop {
  position: absolute; inset:0;
  background: rgba(3,10,8,0.75);
  backdrop-filter: blur(6px);
  transition: opacity .22s ease;
}

/* panel */
.cs-ws-panel {
  position: relative;
  width: min(1200px, 94%);
  height: min(820px, 92vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 12010;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.04);
}

/* floating mini panel (top-left) */
.cs-ws-mini {
  position: absolute;
  top: 18px;
  left: 18px;
  display:flex;
  gap:12px;
  align-items:center;
  z-index: 12020;
  background: rgba(255,255,255,0.04);
  padding: 10px 12px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.05);
}

.cs-mini-left { display:flex; flex-direction:column; gap:4px; color: var(--clr-bg); }
.cs-mini-fname { font-weight:700; font-size:0.95rem; color: var(--clr-light); max-width: 420px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cs-mini-meta { font-size:0.8rem; color: rgba(255,255,255,0.7); }

/* actions */
.cs-mini-actions { display:flex; gap:8px; align-items:center; }
.cs-mini-btn {
  background: transparent;
  color: var(--clr-light);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 10px;
  font-size: 0.85rem;
  text-decoration:none;
}
.cs-mini-btn:hover { background: rgba(255,255,255,0.04); }

.cs-btn-download { border-color: rgba(255,255,255,0.14); }
.cs-mini-close {
  background: transparent;
  border: none;
  color: var(--clr-light);
  font-size: 1.05rem;
  padding: 6px 8px;
  cursor: pointer;
}

/* main preview area */
.cs-ws-body {
  flex: 1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.02));
}

/* content area where different preview nodes are injected */
.cs-ws-content {
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}

/* image preview */
.cs-ws-content img.preview-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* iframe preview (pdf / web) */
.cs-ws-content iframe.preview-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}

/* placeholder for non-previewable files */
.cs-ws-placeholder {
  text-align:center;
  color: var(--clr-bg);
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  justify-content:center;
  padding: 40px;
}
.cs-ws-placeholder p { max-width: 640px; color: rgba(255,255,255,0.88); }

/* footer hint */
.cs-ws-footer {
  padding: 10px 18px;
  text-align:center;
  background: rgba(255,255,255,0.02);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.03);
}

/* hidden util */
.hidden { display:none !important; }

/* responsive */
@media (max-width: 900px) {
  .cs-ws-panel { height: 92vh; width: 96%; }
  .cs-ws-mini { left: 12px; top: 12px; padding: 8px; }
  .cs-mini-fname { font-size: 0.9rem; max-width: 220px; }
}
@media (max-width: 520px) {
  .cs-ws-mini { display:flex; gap:8px; padding: 6px; }
  .cs-mini-left { display:none; } /* save space on tiny screens */
  .cs-mini-actions { gap:6px; }
}


/* PDF.js workspace layout */
.cs-ws-thumbs {
  width: 120px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
  padding: 10px;
  display: none; /* toggled ON when PDF is loaded */
}

.cs-ws-thumb-page {
  width: 100%;
  margin-bottom: 8px;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.cs-ws-thumb-page canvas {
  width: 100%;
  display: block;
}

/* PDF Page canvas */
.cs-pdf-page {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.cs-pdf-page canvas {
  background: #fff;
}










/* Scoped FAQ styles: cs-faq-* */
.cs-faq-section { padding: 4.5rem 0; background: var(--clr-bg); }
.cs-faq-container { max-width: 1100px; margin: 0 auto; }

/* Header */
.cs-faq-header { text-align:center; margin-bottom: 2rem; }
.cs-faq-title { font-size: 2.2rem; color: var(--clr-primary); margin-bottom: .4rem; }
.cs-faq-sub { color: var(--clr-dark); opacity: .85; }

/* Accordion */
.cs-faq-accordion { margin-top: 1.2rem; display: grid; gap: 12px; }

/* Item */
.cs-faq-item { overflow: hidden; border: 1px solid rgba(16,81,79,0.3); background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }

/* Toggle button */
.cs-faq-toggle {
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  gap:16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align:left;
  font-family: var(--font-heading);
  color: var(--clr-light);
  font-size: 1rem;
  transition: background .18s ease, color .18s ease;
}
.cs-faq-toggle:hover { background: rgba(255,255,255,0.02); color: var(--clr-secondary); }

/* question text */
.cs-faq-q { display:block; flex:1; font-size: 1.3rem; color: var(--clr-dark); }

/* caret */
.cs-faq-carat {
  font-size: 1.3rem;
  width: 28px;
  height: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--clr-light);
  background: rgba(255,255,255,0.02);
}

/* Panel */
.cs-faq-panel {
  padding: 16px 20px 22px 20px;
  color: var(--clr-bg);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.01));
  font-size: 1rem;
  line-height: 1.6;
   border-top: 1px solid  rgba(0, 0, 0, 0.24);
}

.cs-faq-panel {
    color: var(--clr-dark);
}

/* Open state (visual) */
.cs-faq-item.is-open .cs-faq-toggle { color: var(--clr-dark); }
.cs-faq-item.is-open .cs-faq-carat { transform: rotate(45deg); background: var(--clr-primary); color: #fff; }

/* small screens */
@media (max-width: 800px) {
  .cs-faq-toggle { padding: 14px 16px; font-size: 0.98rem; }
  .cs-faq-panel { padding: 14px 16px 18px 16px; }
}
