/* ============================================================
   CodeAtoZ — Product Sales Page  v1.2.0
   Production CSS — scoped under body.caz-product-page
   ============================================================ */

/* ── 0. GOOGLE FONTS ENSURE LOAD ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── 1. WP PAGE CHROME ── */
body.caz-product-page {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
body.caz-product-page.admin-bar { padding-top: 32px !important; }
@media screen and (max-width: 782px) {
  body.caz-product-page.admin-bar { padding-top: 46px !important; }
}

/* Kill ALL theme wrappers that constrain width */
body.caz-product-page #page,
body.caz-product-page #content,
body.caz-product-page #primary,
body.caz-product-page #main,
body.caz-product-page .site,
body.caz-product-page .site-content,
body.caz-product-page .content-area,
body.caz-product-page .entry-content,
body.caz-product-page .post-content,
body.caz-product-page article.post,
body.caz-product-page article.page,
body.caz-product-page .hentry,
body.caz-product-page .type-page {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  display: block !important;
}
/* Hide side chrome (keep header/footer) */
body.caz-product-page aside,
body.caz-product-page #secondary,
body.caz-product-page .widget-area,
body.caz-product-page .sidebar,
body.caz-product-page nav.navigation,
body.caz-product-page .entry-header,
body.caz-product-page .post-navigation,
body.caz-product-page .breadcrumbs {
  display: none !important;
}

/* ── 2. CSS TOKENS ── */
body.caz-product-page {
  --y:  #E8B84B;
  --yd: #c9a03e;
  --ink: #0A0A0F;
  --k2:  #1F2937;
  --mu:  #6B7280;
  --li:  #9CA3AF;
  --br:  #E5E7EB;
  --bg:  #F9FAFB;
  --pu:  #E7B455;
  --pu2: #FFF5DC;
  --gr:  #10B981;
  --gr2: #ECFDF5;
  --re:  #EF4444;
  --re2: #FEF2F2;
  --bl:  #3B82F6;
  --bl2: #EFF6FF;
  --f:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --r8:  8px;
  --r12: 12px;
  --r16: 16px;
}

/* === BEGIN PREMIUM PRODUCT PAGE STYLES (full import) === */
/* Paste of product-page-styles.css starts here */

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE - PREMIUM DESIGN
   Matches homepage aesthetic with unique product-focused layout
═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   PRODUCT HERO
══════════════════════════════════════════════ */
.product-hero {
    position: relative;
    padding: 120px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, #f5f5f5 1px, transparent 1px),
        linear-gradient(to bottom, #f5f5f5 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.hero-glow-effect {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 180, 85, 0.12) 0%, transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fafafa;
    border: 1px solid #eee;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #666;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.product-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.title-highlight {
    color: #E7B455;
    position: relative;
}

.product-tagline {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    max-width: 550px;
}

.product-stats-inline {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
}

.stat-inline svg {
    color: var(--gold);
    flex-shrink: 0;
}

.stat-inline strong {
    color: var(--dark);
    font-weight: 700;
}

.product-cta-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-product svg {
    transition: transform 0.3s ease;
}

.btn-product:hover svg {
    transform: translateX(4px);
}

.btn-product-primary {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.btn-product-primary:hover {
    background: #d9a647;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 180, 85, 0.4);
}

.btn-product-secondary {
    background: #ffffff;
    border: 2px solid #d1d5db;
    color: #111827;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.btn-product-secondary:hover {
    background: #fafafa;
    border-color: #E7B455;
    color: #111827;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231,180,85,0.15);
}

.product-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.trust-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Right Visual */
.product-hero-visual {
    position: relative;
}

.screenshot-window {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.screenshot-window:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.window-dot:nth-child(1) { background: #ff5f57; }
.window-dot:nth-child(2) { background: #ffbd2e; }
.window-dot:nth-child(3) { background: #28c840; }

.window-title {
    margin-left: 12px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.screenshot-placeholder {
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    color: #999;
    padding: 60px 40px;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.screenshot-placeholder p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

/* Floating Feature Cards */
.floating-feature {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    z-index: 2;
}

.floating-feature-1 {
    top: 20%;
    left: -60px;
    animation: float-1 3s ease-in-out infinite;
}

.floating-feature-2 {
    bottom: 15%;
    right: -60px;
    animation: float-2 3s ease-in-out infinite 0.5s;
}

.floating-feature-3 {
    top: 55%;
    left: -40px;
    animation: float-1 3s ease-in-out infinite 0.3s;
}

.floating-feature-4 {
    top: 10%;
    right: -40px;
    animation: float-2 3s ease-in-out infinite 0.8s;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
}

.feature-icon {
    font-size: 28px;
    line-height: 1;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 13px;
    color: var(--dark);
    font-weight: 700;
}

.feature-text span {
    font-size: 11px;
    color: #888;
}

/* ══════════════════════════════════════════════
   FEATURES OVERVIEW
══════════════════════════════════════════════ */
.product-features-overview {
    padding: 100px 0;
    background: #fafafa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.feature-card-highlight {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(231, 180, 85, 0.03) 0%, #fff 50%);
}

.feature-badge-premium {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(231, 180, 85, 0.15);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(231, 180, 85, 0.1);
    border: 2px solid rgba(231, 180, 85, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    font-size: 14px;
    color: #666;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* ══════════════════════════════════════════════
   SCREENSHOTS SHOWCASE
══════════════════════════════════════════════ */
/* INTERFACE PREVIEW - TABBED SCREENSHOTS */
.interface-preview-section {
    padding: 80px 20px 60px;
    background: #fdfcf9;
    text-align: center;
}

.interface-preview-section .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #B8860B;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    text-align: center !important;
}

.interface-preview-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    text-align: center !important;
    width: 100%;
}

.interface-preview-section .subtitle {
    font-size: 16px;
    color: #6B7280;
    max-width: 560px;
    margin: 0 auto 40px !important;
    text-align: center !important;
    line-height: 1.6;
    display: block;
}

.interface-preview-section p {
    text-align: center;
}

.preview-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.preview-tabs {
    display: inline-flex;
    gap: 6px;
    background: #f3f4f6;
    border-radius: 50px;
    padding: 5px;
}

.preview-tab {
    padding: 9px 22px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #6B7280;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.preview-tab:hover {
    color: #111827;
    background: rgba(231, 180, 85, 0.1);
}

.preview-tab.active {
    background: #E7B455;
    color: #fff;
    box-shadow: 0 3px 10px rgba(231, 180, 85, 0.4);
}

.preview-panels {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
}

.preview-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-panel.active {
    display: block;
    opacity: 1;
}

.preview-panel {
  padding: 12px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  max-width: 1060px;
  margin: 0 auto;
}

.preview-panel img,
.preview-screenshot img {
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(231, 180, 85, 0.15);
  box-shadow:
    0 2px 0 rgba(231, 180, 85, 0.3),
    0 24px 64px rgba(0, 0, 0, 0.10),
    0 4px 16px rgba(0, 0, 0, 0.06);
  display: block;
  margin: 0 auto;
}

.preview-caption {
  text-align: center;
  font-size: 14px;
  color: #9CA3AF;
  margin-top: 16px;
}

.preview-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.preview-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.preview-dots .dot.active {
    background: #E7B455;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .interface-preview-section h2 { font-size: 26px; }
    .preview-tabs { justify-content: flex-start; }
    .preview-tab { padding: 8px 16px; font-size: 13px; }
}

/* ══════════════════════════════════════════════
   PRICING SECTION (Dark Background)
══════════════════════════════════════════════ */
.product-pricing {
    padding: 100px 0;
    background: #faf7ef;
    position: relative;
    overflow: hidden;
}

.pricing-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.pricing-header {
    position: relative;
    z-index: 1;
}

.eyebrow-light {
    color: var(--gold);
}

.heading-light {
    color: var(--dark);
}

.subtitle-light {
    color: #555;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    display: flex;
    flex-direction: column;
    min-height: 580px;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(231, 180, 85, 0.6);
    box-shadow: 0 26px 55px rgba(15,23,42,0.10);
}

.pricing-card-pro {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(231,180,85,0.06) 0%, #ffffff 60%);
    transform: translateY(-4px);
}

.pricing-card-pro:hover {
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card-header {
    margin-bottom: 20px;
}

.pricing-card-header.plan-header {
    min-height: 90px;
    margin-bottom: 20px;
}

.pricing-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.plan-price-block {
    min-height: 100px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.plan-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 0 0 20px 0;
}

.price-amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.pricing-card-pro .price-amount {
    color: var(--gold);
}

.price-period {
    font-size: 14px;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-features li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #10b981;
}

.pricing-features li.feature-disabled {
    opacity: 0.4;
}

.pricing-features li.feature-disabled svg {
    color: #d1d5db;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.pricing-card .btn-pricing {
    width: 100%;
}

/* Feature lists within Pro card */
.plan-features {
    flex: 1;
    margin-bottom: 0;
}

.plan-cta {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-visible,
.features-hidden {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
}

.features-visible li,
.features-hidden li {
  font-size: 14px;
  color: #4B5563;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.features-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  margin: 10px 0 20px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: #E7B455;
  cursor: pointer;
  transition: opacity 0.2s;
}

.features-toggle:hover {
  opacity: 0.75;
}

.features-toggle .toggle-icon {
  transition: transform 0.3s ease;
}

.features-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.features-hidden {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.features-hidden.expanded {
  max-height: 600px;
  opacity: 1;
}

.price-amount.price-amount-custom {
  font-size: 52px;
  font-weight: 800;
  color: #111827;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  letter-spacing: -1px;
  display: block;
  margin-bottom: 8px;
}

.price-period.price-period-custom {
  font-size: 14px;
  color: #6B7280;
  margin-top: 4px;
}

.btn-pricing svg {
    transition: transform 0.3s ease;
}

.btn-pricing:hover svg {
    transform: translateX(4px);
}

.btn-pricing-free {
    background: #ffffff;
    border-color: #e5e7eb;
    color: #111827;
}

.btn-pricing-free:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-pricing-pro {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.btn-pricing-pro:hover {
    background: #d9a647;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(231, 180, 85, 0.4);
}

.btn-pricing-enterprise {
    background: #ffffff;
    border-color: #e5e7eb;
    color: #111827;
}

.btn-pricing-enterprise:hover {
    background: #f9fafb;
    border-color: var(--gold);
}

/.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: #6b7280;
}

.pricing-guarantee svg {
    color: var(--gold);
}

.pricing-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

.pricing-footer p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-methods span {
    font-size: 13px;
    color: #6b7280;
}

/* ══════════════════════════════════════════════
   USE CASES
══════════════════════════════════════════════ */
.product-use-cases {
    padding: 100px 0;
    background: #f9f9f9;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.use-case-card {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.use-case-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.use-case-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.use-case-result {
    display: inline-block;
    background: rgba(231, 180, 85, 0.1);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.use-case-result strong {
    color: var(--dark);
    font-weight: 700;
}

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.product-faq {
    padding: 100px 0;
    background: linear-gradient(160deg, #fdfcf9 0%, #ffffff 60%, #fffbf0 100%);
    position: relative;
    overflow: hidden;
}

.product-faq::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231,180,85,0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}

.faq-header {
    position: sticky;
    top: 100px;
}

.product-faq .section-eyebrow {
    display: inline-block;
    background: rgba(231, 180, 85, 0.12);
    color: #B8860B;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.product-faq h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 14px;
}

.faq-subheading {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.faq-subheading a {
    color: #E7B455;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(231,180,85,0.4);
    transition: border-color 0.2s;
}

.faq-subheading a:hover {
    border-color: #E7B455;
}

.faq-cta-box,
.faq-support-card {
    background: #ffffff;
    border: 1.5px solid rgba(231, 180, 85, 0.25);
    border-radius: 20px;
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow:
        0 2px 0 0 #E7B455,
        0 8px 32px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    margin-top: 24px;
}

.faq-support-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E7B455 0%, #f5d07a 100%);
    z-index: 2;
}

.faq-support-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(231, 180, 85, 0.06);
    pointer-events: none;
}

.support-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(231, 180, 85, 0.1);
    border: 1.5px solid rgba(231, 180, 85, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.faq-cta-icon {
    font-size: 30px;
}

.support-icon-wrap svg {
    width: 30px;
    height: 30px;
    color: #E7B455;
    stroke: #E7B455;
}

.faq-support-card h4,
.faq-support-card .support-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    margin-top: 0;
}

.faq-support-card p,
.faq-support-card .support-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 22px;
}

.btn-faq,
.btn-get-in-touch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #E7B455;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(231, 180, 85, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-faq:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 180, 85, 0.5);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(231, 180, 85, 0.10);
    border-color: rgba(231, 180, 85, 0.40);
}

.faq-item-active {
    border-color: #E7B455;
    box-shadow: 0 4px 24px rgba(231, 180, 85, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px 18px 20px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.25s ease;
    border-left: 3px solid transparent;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(231, 180, 85, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.3s ease;
    color: #E7B455;
}

.faq-item-active .faq-icon,
.faq-item.open .faq-icon {
    background: #E7B455;
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item-active .faq-answer,
.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 16px 24px 24px 24px !important;
    margin: 0 !important;
    border-top: 1px solid #f3f4f6;
    box-sizing: border-box;
}

.faq-answer-inner p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #4B5563 !important;
    display: block;
    width: 100%;
}

.faq-item-active .faq-question,
.faq-item.open .faq-question {
    border-left-color: #E7B455;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #059669;
    font-weight: 600;
    margin-top: 14px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

/* ══════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════ */
.product-final-cta.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, #fdfbf4 0%, #fff8e7 50%, #fdfbf4 100%);
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
}

.product-final-cta .container {
  position: relative;
}

.cta-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-bg-blob--left {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231,180,85,0.10) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}

.cta-bg-blob--right {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(231,180,85,0.08) 0%, transparent 70%);
  bottom: -80px;
  right: -100px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(231, 180, 85, 0.12);
  border: 1px solid rgba(231, 180, 85, 0.3);
  color: #a07820;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.cta-badge-dot {
  width: 7px;
  height: 7px;
  background: #E7B455;
  border-radius: 50%;
  animation: pulse-gold 2.5s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.cta-heading {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .cta-heading { font-size: 32px; }
}

.cta-subtext {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 40px !important;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  display: block;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E7B455;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow:
    0 4px 0 #c49520,
    0 8px 24px rgba(231,180,85,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.2px;
  min-width: 220px;
  white-space: nowrap;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #c49520,
    0 14px 32px rgba(231,180,85,0.4);
}

.btn-cta-primary:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 0 #c49520,
    0 4px 12px rgba(231,180,85,0.3);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  color: #374151;
  background: #ffffff;
  border: 1.5px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  min-width: 220px;
  white-space: nowrap;
}

.btn-cta-secondary:hover {
  border-color: #E7B455;
  box-shadow: 0 4px 16px rgba(231,180,85,0.15);
  color: #111827;
}

.cta-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

.trust-badge svg {
  color: #E7B455;
  flex-shrink: 0;
}

.trust-divider {
  color: #D1D5DB;
  font-size: 16px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .floating-feature-1,
    .floating-feature-2 {
        position: static;
        margin-top: 20px;
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .faq-header {
        position: static;
    }
}

@media (max-width: 900px) {
    .product-title {
        font-size: 42px;
    }
    
    .features-grid-3col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card-pro {
        transform: scale(1);
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-hero {
        padding: 80px 0 60px;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .product-cta-buttons {
        flex-direction: column;
    }
    
    .btn-product {
        width: 100%;
        justify-content: center;
    }
    
    .section-header-center h2 {
        font-size: 32px;
    }
    
    .screenshots-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .btn-final {
        width: 100%;
        justify-content: center;
    }
}

/* === END PREMIUM PRODUCT PAGE STYLES === */

/* ============================================================
   LAYOUT 2 (light home-page style, black price box)
   Scoped via body.caz-product-page.caz-product-page-v2
   ============================================================ */

body.caz-product-page.caz-product-page-v2 #caz-pdp {
  background: #F9FAFB;
}

.p2-hero {
  padding: 72px 0 56px;
  background: #F9FAFB;
}

.p2-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.p2-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FBBF24;
}

.p2-hero-title {
  margin-top: 18px;
  font-size: 40px;
  line-height: 1.1;
  color: #0F172A;
}

.p2-hero-title-em {
  display: inline-block;
  background: linear-gradient(90deg, #FACC15, #F97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p2-hero-sub {
  margin-top: 18px;
  max-width: 560px;
  color: #4B5563;
  font-size: 16.5px;
}

.p2-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.p2-hero-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  color: #4B5563;
}

.p2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.p2-btn-primary,
.p2-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.p2-btn-primary {
  background: #111827;
  color: #F9FAFB;
  box-shadow: 0 16px 40px rgba(15,23,42,.32);
}

.p2-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(15,23,42,.45);
}

.p2-btn-ghost {
  background: transparent;
  color: #111827;
  border: 1px solid #D1D5DB;
}

.p2-btn-ghost:hover {
  background: #FFFFFF;
  border-color: #9CA3AF;
}

.p2-hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: #6B7280;
}

.p2-price-card {
  background: #020617;
  color: #F9FAFB;
  border-radius: 24px;
  padding: 28px 26px 26px;
  box-shadow: 0 24px 60px rgba(15,23,42,.7);
  border: 1px solid rgba(148,163,184,.35);
}

.p2-price-card-label {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #E5E7EB;
}

.p2-price-main-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}

.p2-price-main {
  font-size: 40px;
  font-weight: 700;
}

.p2-price-old {
  font-size: 15px;
  text-decoration: line-through;
  color: #9CA3AF;
}

.p2-price-period {
  margin-top: 4px;
  font-size: 13px;
  color: #9CA3AF;
}

.p2-price-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 16px;
  font-size: 14px;
}

.p2-price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.p2-price-features li:before {
  content: '✓';
  font-size: 12px;
  color: #22C55E;
}

.p2-price-cta {
  display: block;
  text-align: center;
  margin-top: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #FACC15;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.p2-price-cta:hover {
  background: #EAB308;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(234,179,8,.45);
}

.p2-price-note {
  margin-top: 10px;
  font-size: 12px;
  color: #9CA3AF;
}

.p2-trust {
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.p2-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 12px 0;
  font-size: 13px;
  color: #4B5563;
}

.p2-section {
  padding: 56px 0;
  background: #FFFFFF;
}

.p2-section-alt {
  background: #F9FAFB;
}

.p2-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.p2-section-header h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.p2-section-sub {
  margin-top: 4px;
  font-size: 15px;
  color: #6B7280;
}

.p2-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #4B5563;
}

.p2-highlight-box {
  padding: 22px 20px;
  border-radius: 18px;
  background: #111827;
  color: #E5E7EB;
  box-shadow: 0 18px 45px rgba(15,23,42,.65);
}

.p2-highlight-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.p2-highlight-box p {
  font-size: 14px;
  color: #E5E7EB;
}

.p2-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.p2-step {
  padding: 22px 20px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
}

.p2-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #F9FAFB;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.p2-step h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.p2-step p {
  font-size: 14px;
  color: #6B7280;
}

.p2-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.p2-screen-frame {
  border-radius: 18px;
  background: #020617;
  padding: 10px 10px 14px;
  box-shadow: 0 22px 50px rgba(15,23,42,.7);
  color: #E5E7EB;
}

.p2-screen-label {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(148,163,184,.18);
  font-size: 11px;
  margin-bottom: 10px;
}

.p2-screen-placeholder {
  border-radius: 12px;
  border: 1px dashed rgba(148,163,184,.75);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9CA3AF;
  background: radial-gradient(circle at top left, rgba(251,191,36,.16), transparent 55%);
}

.p2-screen figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #6B7280;
}

.p2-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.p2-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  font-size: 13px;
  color: #4B5563;
}

.p2-pricing-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.p2-price-card-large {
  max-width: 420px;
  width: 100%;
}

.p2-final-cta {
  background: linear-gradient(135deg, #FACC15, #FDBA74);
}

.p2-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.p2-final-cta-inner h2 {
  font-size: 26px;
}

.p2-final-cta-inner .p2-section-sub {
  color: rgba(15,23,42,.8);
}

.p2-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 960px) {
  .p2-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .p2-two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .p2-steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .p2-screens-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .p2-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ── 3. GLOBAL RESET inside product page ── */
body.caz-product-page #caz-pdp,
body.caz-product-page #caz-pdp * {
  box-sizing: border-box;
}
body.caz-product-page #caz-pdp {
  display: block;
  width: 100%;
  font-family: var(--f);
  font-size: 16px;
  line-height: 1.6;
  color: var(--k2);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Reset typography inside scope — override ANY theme h1–h6, p */
body.caz-product-page #caz-pdp h1,
body.caz-product-page #caz-pdp h2,
body.caz-product-page #caz-pdp h3,
body.caz-product-page #caz-pdp h4,
body.caz-product-page #caz-pdp h5,
body.caz-product-page #caz-pdp h6 {
  font-family: var(--f) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--k2) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
body.caz-product-page #caz-pdp p {
  font-family: var(--f) !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.caz-product-page #caz-pdp a {
  color: inherit !important;
  text-decoration: none !important;
}
body.caz-product-page #caz-pdp ul,
body.caz-product-page #caz-pdp ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.caz-product-page #caz-pdp button {
  cursor: pointer !important;
  font-family: var(--f) !important;
}
body.caz-product-page #caz-pdp img {
  max-width: 100% !important;
  display: block !important;
}
body.caz-product-page #caz-pdp *,
body.caz-product-page #caz-pdp *::before,
body.caz-product-page #caz-pdp *::after {
  box-sizing: border-box !important;
}

/* ── 4. LAYOUT ── */
body.caz-product-page #caz-pdp .wrap {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}
body.caz-product-page #caz-pdp .wrap-sm {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}
body.caz-product-page #caz-pdp .tc { text-align: center !important; }
body.caz-product-page #caz-pdp .tc .sec-sub { margin-left: auto !important; margin-right: auto !important; }

/* ── 5. SECTION BASE ── */
body.caz-product-page #caz-pdp .sec {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: block !important;
}
body.caz-product-page #caz-pdp .sec-alt {
  background: var(--bg) !important;
  border-top: 1px solid var(--br) !important;
}
body.caz-product-page #caz-pdp .sec-label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
  color: var(--y) !important;
  margin-bottom: 12px !important;
}
body.caz-product-page #caz-pdp .sec-title {
  font-size: clamp(26px, 3.2vw, 40px) !important;
  font-weight: 900 !important;
  color: var(--ink) !important;
  letter-spacing: -.03em !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
}
body.caz-product-page #caz-pdp .sec-sub {
  font-size: 17px !important;
  color: var(--mu) !important;
  line-height: 1.7 !important;
  max-width: 580px !important;
}

/* ── 6. HERO ── */
body.caz-product-page #caz-pdp .hero {
  background: var(--ink) !important;
  padding: 84px 40px 96px !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}
body.caz-product-page #caz-pdp .hero::before {
  content: "" !important;
  position: absolute !important;
  top: -200px !important; right: -100px !important;
  width: 560px !important; height: 560px !important;
  background: radial-gradient(circle, rgba(232,184,75,.09), transparent 60%) !important;
  pointer-events: none !important;
}
body.caz-product-page #caz-pdp .hero::after {
  content: "" !important;
  position: absolute !important;
  bottom: -100px !important; left: -80px !important;
  width: 400px !important; height: 400px !important;
  background: radial-gradient(circle, rgba(232,184,75,.13), transparent 60%) !important;
  pointer-events: none !important;
}
body.caz-product-page #caz-pdp .hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  gap: 60px !important;
  align-items: center !important;
  position: relative !important;
  z-index: 1 !important;
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.caz-product-page #caz-pdp .hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(232,184,75,.1) !important;
  border: 1px solid rgba(232,184,75,.22) !important;
  border-radius: 100px !important;
  padding: 5px 16px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--y) !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
}
body.caz-product-page #caz-pdp .hero h1 {
  font-size: clamp(34px, 4.4vw, 56px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.04 !important;
  letter-spacing: -.04em !important;
  margin-bottom: 22px !important;
  text-transform: none !important;
}
body.caz-product-page #caz-pdp .hero h1 em {
  font-style: normal !important;
  background: linear-gradient(90deg, var(--y), #f59e0b) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}
body.caz-product-page #caz-pdp .hero-desc {
  font-size: 17px !important;
  color: rgba(255,255,255,.52) !important;
  line-height: 1.78 !important;
  margin-bottom: 32px !important;
  max-width: 500px !important;
}
body.caz-product-page #caz-pdp .hero-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 34px !important;
}
body.caz-product-page #caz-pdp .hero-pill {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 5px !important;
  padding: 5px 12px !important;
  font-size: 11px !important;
  color: rgba(255,255,255,.4) !important;
  font-family: var(--mono) !important;
}
body.caz-product-page #caz-pdp .btns {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}
body.caz-product-page #caz-pdp .btn-y {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--y) !important;
  color: var(--ink) !important;
  padding: 15px 30px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(232,184,75,.35) !important;
  transition: all .2s !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
body.caz-product-page #caz-pdp .btn-y:hover {
  background: var(--yd) !important;
  color: var(--ink) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(232,184,75,.45) !important;
}
body.caz-product-page #caz-pdp .btn-ghost {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.65) !important;
  padding: 15px 24px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all .2s !important;
  white-space: nowrap !important;
}
body.caz-product-page #caz-pdp .btn-ghost:hover {
  background: rgba(255,255,255,.11) !important;
  color: #fff !important;
}
body.caz-product-page #caz-pdp .hero-small {
  font-size: 12px !important;
  color: rgba(255,255,255,.28) !important;
  margin-top: 16px !important;
}
body.caz-product-page #caz-pdp .hero-small b { color: var(--y) !important; }

/* Hero Card */
body.caz-product-page #caz-pdp .hcard {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 20px !important;
  padding: 28px !important;
}
body.caz-product-page #caz-pdp .hcard-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.32) !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  margin-bottom: 16px !important;
}
body.caz-product-page #caz-pdp .hcard-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  margin-bottom: 5px !important;
}
body.caz-product-page #caz-pdp .hcard-price-main {
  font-size: 52px !important;
  font-weight: 900 !important;
  color: #fff !important;
  letter-spacing: -.05em !important;
  line-height: 1 !important;
}
body.caz-product-page #caz-pdp .hcard-price-old {
  font-size: 22px !important;
  color: rgba(255,255,255,.2) !important;
  text-decoration: line-through !important;
}
body.caz-product-page #caz-pdp .hcard-period {
  font-size: 13px !important;
  color: rgba(255,255,255,.3) !important;
  margin-bottom: 20px !important;
}
body.caz-product-page #caz-pdp .hcard-list { margin-bottom: 22px !important; }
body.caz-product-page #caz-pdp .hcard-list li {
  font-size: 13px !important;
  color: rgba(255,255,255,.6) !important;
  padding: 7px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  list-style: none !important;
}
body.caz-product-page #caz-pdp .hcard-list li:last-child { border-bottom: none !important; }
body.caz-product-page #caz-pdp .hcard-list li::before {
  content: "✓" !important;
  color: var(--y) !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  flex-shrink: 0 !important;
}
body.caz-product-page #caz-pdp .hcard-btn,
body.caz-product-page #caz-pdp a.hcard-btn,
body.caz-product-page #caz-pdp .hcard-btn.edd_button {
  display: block !important;
  width: 100% !important;
  background: var(--y) !important;
  color: var(--ink) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 15px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-align: center !important;
  transition: all .2s !important;
  font-family: var(--f) !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
body.caz-product-page #caz-pdp .hcard-btn:hover { background: var(--yd) !important; color: var(--ink) !important; }
body.caz-product-page #caz-pdp .hcard-note {
  font-size: 11px !important;
  color: rgba(255,255,255,.2) !important;
  text-align: center !important;
  margin-top: 10px !important;
}

/* ── 7. TRUST BAR ── */
body.caz-product-page #caz-pdp .trust {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--br) !important;
  padding: 18px 40px !important;
  display: block !important;
}
body.caz-product-page #caz-pdp .trust-row {
  max-width: 1080px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
  flex-wrap: wrap !important;
}
body.caz-product-page #caz-pdp .ti {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--mu) !important;
  white-space: nowrap !important;
}
body.caz-product-page #caz-pdp .tdiv {
  width: 1px !important;
  height: 18px !important;
  background: var(--br) !important;
  flex-shrink: 0 !important;
}

/* ── 8. PROBLEM SECTION ── */
body.caz-product-page #caz-pdp .prob-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-top: 48px !important;
}
body.caz-product-page #caz-pdp .prob-card {
  background: var(--bg) !important;
  border: 1px solid var(--br) !important;
  border-radius: 14px !important;
  padding: 26px !important;
  position: relative !important;
  overflow: hidden !important;
}
body.caz-product-page #caz-pdp .prob-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: var(--re) !important;
  opacity: .5 !important;
  border-radius: 14px 14px 0 0 !important;
}
body.caz-product-page #caz-pdp .prob-em { font-size: 30px !important; margin-bottom: 12px !important; display: block !important; }
body.caz-product-page #caz-pdp .prob-t  { font-size: 15px !important; font-weight: 700 !important; color: var(--k2) !important; margin-bottom: 8px !important; }
body.caz-product-page #caz-pdp .prob-d  { font-size: 14px !important; color: var(--mu) !important; line-height: 1.6 !important; }
body.caz-product-page #caz-pdp .solution-box {
  margin-top: 48px !important;
  background: var(--gr2) !important;
  border: 1px solid #A7F3D0 !important;
  border-radius: 16px !important;
  padding: 28px 32px !important;
  display: grid !important;
  grid-template-columns: 56px 1fr !important;
  gap: 24px !important;
  align-items: flex-start !important;
}
body.caz-product-page #caz-pdp .sol-icon {
  width: 56px !important; height: 56px !important;
  background: #fff !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 8px rgba(16,185,129,.2) !important;
}
body.caz-product-page #caz-pdp .sol-label {
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--gr) !important;
  margin-bottom: 8px !important;
}
body.caz-product-page #caz-pdp .sol-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  letter-spacing: -.025em !important;
  margin-bottom: 10px !important;
}
body.caz-product-page #caz-pdp .sol-desc {
  font-size: 15px !important;
  color: #065F46 !important;
  line-height: 1.75 !important;
}

/* ── 9. HOW IT WORKS ── */
body.caz-product-page #caz-pdp .steps {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
  margin-top: 56px !important;
  position: relative !important;
}
body.caz-product-page #caz-pdp .steps::before {
  content: "" !important;
  position: absolute !important;
  top: 27px !important;
  left: calc(50% / 3 + 27px) !important;
  right: calc(50% / 3 + 27px) !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--y), var(--pu)) !important;
  opacity: .2 !important;
}
body.caz-product-page #caz-pdp .step    { text-align: center !important; }
body.caz-product-page #caz-pdp .step-n  {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  background: var(--y) !important;
  color: var(--ink) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 18px !important;
  box-shadow: 0 4px 18px rgba(232,184,75,.3) !important;
}
body.caz-product-page #caz-pdp .step-t { font-size: 17px !important; font-weight: 700 !important; color: var(--k2) !important; margin-bottom: 10px !important; }
body.caz-product-page #caz-pdp .step-d { font-size: 14px !important; color: var(--mu) !important; line-height: 1.65 !important; }

/* ── 10. FEATURE TABS ── */
body.caz-product-page #caz-pdp .tab-nav {
  display: flex !important;
  gap: 4px !important;
  background: var(--bg) !important;
  border: 1px solid var(--br) !important;
  border-radius: 12px !important;
  padding: 5px !important;
  margin: 40px 0 32px !important;
  flex-wrap: wrap !important;
}
body.caz-product-page #caz-pdp .tab-btn {
  flex: 1 !important;
  min-width: 120px !important;
  padding: 10px 14px !important;
  border: none !important;
  background: transparent !important;
  border-radius: 8px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--mu) !important;
  transition: all .18s !important;
  white-space: nowrap !important;
  font-family: var(--f) !important;
}
body.caz-product-page #caz-pdp .tab-btn.on {
  background: #fff !important;
  color: var(--k2) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,.1) !important;
}
body.caz-product-page #caz-pdp .tab-pane    { display: none !important; }
body.caz-product-page #caz-pdp .tab-pane.on { display: block !important; }

body.caz-product-page #caz-pdp .feat-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
  gap: 16px !important;
}
body.caz-product-page #caz-pdp .fc {
  background: var(--bg) !important;
  border: 1px solid var(--br) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  transition: all .2s !important;
}
body.caz-product-page #caz-pdp .fc:hover {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07) !important;
  border-color: #D1D5DB !important;
  transform: translateY(-2px) !important;
}
body.caz-product-page #caz-pdp .fc-icon  { font-size: 24px !important; margin-bottom: 10px !important; display: block !important; }
body.caz-product-page #caz-pdp .fc-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--k2) !important;
  margin-bottom: 6px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}
body.caz-product-page #caz-pdp .fc-desc { font-size: 13px !important; color: var(--mu) !important; line-height: 1.58 !important; }
body.caz-product-page #caz-pdp .badge-pro {
  display: inline-flex !important;
  padding: 2px 7px !important;
  background: linear-gradient(90deg, var(--pu), #7C3AED) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
body.caz-product-page #caz-pdp .badge-free {
  display: inline-flex !important;
  padding: 2px 7px !important;
  background: var(--gr2) !important;
  color: #065F46 !important;
  border: 1px solid #A7F3D0 !important;
  border-radius: 4px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* CTA action cards */
body.caz-product-page #caz-pdp .cta-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
  gap: 16px !important;
  margin-top: 12px !important;
}
body.caz-product-page #caz-pdp .ctac {
  border: 2px solid var(--br) !important;
  border-radius: 14px !important;
  padding: 20px !important;
  background: #fff !important;
  transition: all .2s !important;
}
body.caz-product-page #caz-pdp .ctac:hover {
  border-color: var(--y) !important;
  box-shadow: 0 4px 20px rgba(232,184,75,.12) !important;
}
body.caz-product-page #caz-pdp .ctac-preview {
  background: var(--bg) !important;
  border-radius: 8px !important;
  padding: 13px 15px !important;
  margin-bottom: 14px !important;
  font-size: 13px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-height: 50px !important;
}
body.caz-product-page #caz-pdp .mock-btn  { padding: 6px 13px !important; border-radius: 6px !important; font-size: 12px !important; font-weight: 700 !important; white-space: nowrap !important; display: inline-block !important; }
body.caz-product-page #caz-pdp .mb-dark   { background: var(--ink) !important; color: #fff !important; }
body.caz-product-page #caz-pdp .mb-yellow { background: var(--y) !important; color: var(--ink) !important; }
body.caz-product-page #caz-pdp .mb-purple { background: var(--pu) !important; color: #fff !important; }
body.caz-product-page #caz-pdp .ctac-title { font-size: 14px !important; font-weight: 700 !important; color: var(--k2) !important; margin-bottom: 6px !important; }
body.caz-product-page #caz-pdp .ctac-desc  { font-size: 13px !important; color: var(--mu) !important; line-height: 1.55 !important; }

/* ── 11. COMPARE TABLE ── */
body.caz-product-page #caz-pdp .cmp-wrap {
  margin-top: 40px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.08) !important;
  border: 1px solid var(--br) !important;
}
body.caz-product-page #caz-pdp .cmp-tbl {
  width: 100% !important;
  border-collapse: collapse !important;
  background: #fff !important;
}
body.caz-product-page #caz-pdp .cmp-tbl th {
  padding: 16px 20px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .07em !important;
  color: var(--mu) !important;
  background: var(--bg) !important;
  border-bottom: 2px solid var(--br) !important;
  text-align: left !important;
}
body.caz-product-page #caz-pdp .cmp-tbl th:nth-child(2) { background: rgba(17,24,39,.02) !important; text-align: center !important; }
body.caz-product-page #caz-pdp .cmp-tbl th:nth-child(3) { background: rgba(232,184,75,.08) !important; text-align: center !important; }
body.caz-product-page #caz-pdp .cmp-tbl td {
  padding: 13px 20px !important;
  border-bottom: 1px solid #F3F4F6 !important;
  font-size: 14px !important;
  vertical-align: middle !important;
}
body.caz-product-page #caz-pdp .cmp-tbl td:first-child  { color: var(--k2) !important; font-weight: 500 !important; }
body.caz-product-page #caz-pdp .cmp-tbl td:nth-child(2) { background: rgba(17,24,39,.01) !important; text-align: center !important; }
body.caz-product-page #caz-pdp .cmp-tbl td:nth-child(3) { background: rgba(232,184,75,.02) !important; text-align: center !important; }
body.caz-product-page #caz-pdp .cmp-tbl tbody tr:last-child td { border-bottom: none !important; }
body.caz-product-page #caz-pdp .grp-row td {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: var(--mu) !important;
  background: var(--bg) !important;
  padding: 10px 20px 6px !important;
  border-bottom: none !important;
}
body.caz-product-page #caz-pdp .cy { color: var(--gr) !important; font-size: 20px !important; font-weight: 700 !important; }
body.caz-product-page #caz-pdp .cn { color: #D1D5DB !important; font-size: 20px !important; }

/* ── 12. PRICING ── */
body.caz-product-page #caz-pdp .price-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin-top: 52px !important;
  align-items: end !important; /* align to bottom so hot card elevated at top */
}
body.caz-product-page #caz-pdp .pc {
  border: 2px solid var(--br) !important;
  border-radius: 16px !important;
  padding: 28px 22px !important;
  background: #fff !important;
  transition: all .22s !important;
  position: relative !important;
}
body.caz-product-page #caz-pdp .pc:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.1) !important;
}
body.caz-product-page #caz-pdp .pc.hot {
  border-color: var(--y) !important;
  box-shadow: 0 8px 36px rgba(232,184,75,.22) !important;
  padding-top: 48px !important; /* space for banner */
  align-self: stretch !important;
}
body.caz-product-page #caz-pdp .pc.hot:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(232,184,75,.3) !important;
}
body.caz-product-page #caz-pdp .hot-badge {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--y) !important;
  color: var(--ink) !important;
  padding: 8px 0 !important;
  border-radius: 14px 14px 0 0 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  display: block !important;
}
body.caz-product-page #caz-pdp .pc-plan  { font-size: 11px !important; font-weight: 800 !important; color: var(--mu) !important; text-transform: uppercase !important; letter-spacing: .09em !important; margin-bottom: 12px !important; }
body.caz-product-page #caz-pdp .pc-price { font-size: 44px !important; font-weight: 900 !important; color: var(--ink) !important; letter-spacing: -.04em !important; line-height: 1 !important; }
body.caz-product-page #caz-pdp .pc-price sup {
  font-size: 20px !important;
  font-weight: 600 !important;
  vertical-align: top !important;
  margin-top: 6px !important;
  display: inline-block !important;
  color: var(--mu) !important;
}
body.caz-product-page #caz-pdp .pc-period { font-size: 13px !important; color: var(--mu) !important; margin: 6px 0 4px !important; }
body.caz-product-page #caz-pdp .pc-sites  { font-size: 12.5px !important; color: var(--pu) !important; font-weight: 700 !important; margin-bottom: 18px !important; }
body.caz-product-page #caz-pdp .pc-hr     { border: none !important; border-top: 1px solid var(--br) !important; margin: 16px 0 !important; }
body.caz-product-page #caz-pdp .pc-feats  { margin-bottom: 24px !important; }
body.caz-product-page #caz-pdp .pc-feats li {
  font-size: 13px !important;
  color: var(--mu) !important;
  padding: 5px 0 !important;
  display: flex !important;
  gap: 8px !important;
  align-items: flex-start !important;
  list-style: none !important;
}
body.caz-product-page #caz-pdp .pc-feats li::before {
  content: "✓" !important;
  color: var(--gr) !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}
body.caz-product-page #caz-pdp .pc-btn,
body.caz-product-page #caz-pdp a.pc-btn,
body.caz-product-page #caz-pdp .pc-btn.edd_button {
  width: 100% !important;
  padding: 13px !important;
  border-radius: 9px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  display: block !important;
  text-align: center !important;
  transition: all .2s !important;
  border: none !important;
  font-family: var(--f) !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
body.caz-product-page #caz-pdp .pc-btn-y,
body.caz-product-page #caz-pdp a.pc-btn-y {
  background: var(--y) !important;
  color: var(--ink) !important;
}
body.caz-product-page #caz-pdp .pc-btn-y:hover { background: var(--yd) !important; color: var(--ink) !important; }
body.caz-product-page #caz-pdp .pc-btn-o,
body.caz-product-page #caz-pdp a.pc-btn-o {
  background: transparent !important;
  border: 2px solid var(--br) !important;
  color: var(--k2) !important;
}
body.caz-product-page #caz-pdp .pc-btn-o:hover {
  border-color: var(--li) !important;
  background: var(--bg) !important;
}
body.caz-product-page #caz-pdp .price-note {
  text-align: center !important;
  font-size: 13.5px !important;
  color: var(--mu) !important;
  margin-top: 28px !important;
}
body.caz-product-page #caz-pdp .price-note b { color: var(--gr) !important; }

/* ── 13. DOCS SECTION ── */
body.caz-product-page #caz-pdp .docs-tabs {
  display: flex !important;
  border-bottom: 2px solid var(--br) !important;
  margin-bottom: 36px !important;
  overflow-x: auto !important;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
body.caz-product-page #caz-pdp .docs-tabs::-webkit-scrollbar { display: none !important; }
body.caz-product-page #caz-pdp .dt-btn {
  padding: 12px 20px !important;
  border: none !important;
  background: transparent !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--mu) !important;
  white-space: nowrap !important;
  border-bottom: 3px solid transparent !important;
  margin-bottom: -2px !important;
  transition: all .18s !important;
  font-family: var(--f) !important;
}
body.caz-product-page #caz-pdp .dt-btn.on  { color: var(--pu) !important; border-bottom-color: var(--pu) !important; }
body.caz-product-page #caz-pdp .dt-btn:hover { color: var(--k2) !important; }
body.caz-product-page #caz-pdp .dt-pane     { display: none !important; }
body.caz-product-page #caz-pdp .dt-pane.on  { display: block !important; }

/* Docs content area */
body.caz-product-page #caz-pdp .prose h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--k2) !important;
  margin: 28px 0 12px !important;
}
body.caz-product-page #caz-pdp .prose h3:first-child { margin-top: 0 !important; }
body.caz-product-page #caz-pdp .prose p  {
  font-size: 14.5px !important;
  color: var(--mu) !important;
  line-height: 1.78 !important;
  margin-bottom: 14px !important;
}
body.caz-product-page #caz-pdp .prose ul  { padding-left: 22px !important; margin-bottom: 14px !important; }
body.caz-product-page #caz-pdp .prose li  { font-size: 14px !important; color: var(--mu) !important; margin-bottom: 6px !important; list-style: disc !important; }
body.caz-product-page #caz-pdp .prose ol li { list-style: decimal !important; }
body.caz-product-page #caz-pdp .prose strong { color: var(--k2) !important; font-weight: 600 !important; }
body.caz-product-page #caz-pdp .prose code {
  font-family: var(--mono) !important;
  font-size: 13px !important;
  background: #F1F5F9 !important;
  color: var(--pu) !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
  border: 1px solid var(--br) !important;
}
body.caz-product-page #caz-pdp .prose pre {
  background: #0F172A !important;
  border-radius: 12px !important;
  padding: 22px !important;
  overflow-x: auto !important;
  margin: 16px 0 !important;
}
body.caz-product-page #caz-pdp .prose pre code {
  background: none !important;
  color: #E2E8F0 !important;
  border: none !important;
  font-size: 13.5px !important;
  padding: 0 !important;
  line-height: 1.7 !important;
}

/* Install steps */
body.caz-product-page #caz-pdp .isteps { margin: 20px 0 24px !important; }
body.caz-product-page #caz-pdp .istep  { display: flex !important; gap: 16px !important; margin-bottom: 22px !important; align-items: flex-start !important; }
body.caz-product-page #caz-pdp .istep-n {
  width: 30px !important; height: 30px !important;
  border-radius: 50% !important;
  background: var(--y) !important;
  color: var(--ink) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 2px !important;
}
body.caz-product-page #caz-pdp .istep-t { font-size: 15px !important; font-weight: 700 !important; color: var(--k2) !important; margin-bottom: 4px !important; }
body.caz-product-page #caz-pdp .istep-d { font-size: 13.5px !important; color: var(--mu) !important; line-height: 1.65 !important; margin: 0 !important; }

/* Req table */
body.caz-product-page #caz-pdp .rtbl { width: 100% !important; border-collapse: collapse !important; margin: 16px 0 !important; }
body.caz-product-page #caz-pdp .rtbl th {
  padding: 11px 14px !important;
  background: #F8FAFC !important;
  font-size: 11px !important; font-weight: 700 !important;
  color: var(--mu) !important;
  text-transform: uppercase !important;
  letter-spacing: .05em !important;
  border-bottom: 2px solid var(--br) !important;
  text-align: left !important;
}
body.caz-product-page #caz-pdp .rtbl td { padding: 11px 14px !important; border-bottom: 1px solid #F3F4F6 !important; font-size: 14px !important; color: var(--k2) !important; }
body.caz-product-page #caz-pdp .rtbl td:first-child { font-weight: 600 !important; }

/* Callouts */
body.caz-product-page #caz-pdp .callout { border-radius: 10px !important; padding: 16px 20px !important; margin: 18px 0 !important; display: flex !important; gap: 12px !important; align-items: flex-start !important; }
body.caz-product-page #caz-pdp .callout p { font-size: 13.5px !important; margin: 0 !important; line-height: 1.65 !important; }
body.caz-product-page #caz-pdp .callout strong { display: block !important; margin-bottom: 3px !important; font-weight: 700 !important; }
body.caz-product-page #caz-pdp .c-icon { font-size: 18px !important; flex-shrink: 0 !important; margin-top: 2px !important; }
body.caz-product-page #caz-pdp .c-info { background: var(--bl2) !important; border: 1px solid #BFDBFE !important; }
body.caz-product-page #caz-pdp .c-info p, body.caz-product-page #caz-pdp .c-info strong { color: #1E40AF !important; }
body.caz-product-page #caz-pdp .c-warn { background: #FFFBEB !important; border: 1px solid #FDE68A !important; }
body.caz-product-page #caz-pdp .c-warn p, body.caz-product-page #caz-pdp .c-warn strong { color: #78350F !important; }
body.caz-product-page #caz-pdp .c-ok { background: var(--gr2) !important; border: 1px solid #A7F3D0 !important; }
body.caz-product-page #caz-pdp .c-ok p, body.caz-product-page #caz-pdp .c-ok strong { color: #065F46 !important; }

/* ── 14. CHANGELOG ── */
body.caz-product-page #caz-pdp .cl-item { margin-bottom: 36px !important; }
body.caz-product-page #caz-pdp .cl-hdr  { display: flex !important; align-items: center !important; gap: 12px !important; margin-bottom: 16px !important; flex-wrap: wrap !important; }
body.caz-product-page #caz-pdp .cl-v    { background: var(--k2) !important; color: #fff !important; padding: 4px 12px !important; border-radius: 6px !important; font-size: 12px !important; font-weight: 700 !important; font-family: var(--mono) !important; }
body.caz-product-page #caz-pdp .cl-date { font-size: 12px !important; color: var(--mu) !important; }
body.caz-product-page #caz-pdp .cl-type { font-size: 11px !important; font-weight: 700 !important; padding: 3px 10px !important; border-radius: 100px !important; }
body.caz-product-page #caz-pdp .cl-init { background: var(--pu2) !important; color: #4C1D95 !important; }
body.caz-product-page #caz-pdp .cl-list li {
  font-size: 13.5px !important; color: var(--mu) !important;
  padding: 7px 0 !important;
  display: flex !important; align-items: flex-start !important; gap: 10px !important;
  border-bottom: 1px solid #F3F4F6 !important;
  list-style: none !important;
}
body.caz-product-page #caz-pdp .cl-list li:last-child { border-bottom: none !important; }
body.caz-product-page #caz-pdp .cl-tag { font-size: 10px !important; font-weight: 700 !important; padding: 2px 8px !important; border-radius: 4px !important; flex-shrink: 0 !important; margin-top: 2px !important; }
body.caz-product-page #caz-pdp .tag-new { background: var(--gr2) !important; color: #065F46 !important; }
body.caz-product-page #caz-pdp .tag-sec { background: var(--re2) !important; color: #991B1B !important; }
body.caz-product-page #caz-pdp .tag-imp { background: var(--bl2) !important; color: #1D4ED8 !important; }
body.caz-product-page #caz-pdp .tag-fix { background: #FEF3C7 !important; color: #92400E !important; }

/* Hook cards */
body.caz-product-page #caz-pdp .hook-card { background: #fff !important; border: 1px solid var(--br) !important; border-radius: 10px !important; padding: 16px 20px !important; margin-bottom: 12px !important; }
body.caz-product-page #caz-pdp .hook-name  { font-family: var(--mono) !important; font-size: 13.5px !important; color: var(--pu) !important; font-weight: 600 !important; margin-bottom: 6px !important; }
body.caz-product-page #caz-pdp .hook-desc  { font-size: 13.5px !important; color: var(--mu) !important; line-height: 1.6 !important; }
body.caz-product-page #caz-pdp .hook-meta  { display: flex !important; gap: 8px !important; margin-top: 9px !important; }
body.caz-product-page #caz-pdp .hook-type  { font-size: 10px !important; font-weight: 700 !important; padding: 2px 9px !important; border-radius: 4px !important; }
body.caz-product-page #caz-pdp .ht-filter  { background: var(--bl2) !important; color: #1E40AF !important; }
body.caz-product-page #caz-pdp .ht-action  { background: var(--gr2) !important; color: #065F46 !important; }

/* ── 15. FAQ ── */
body.caz-product-page #caz-pdp .faq { margin-top: 40px !important; }
body.caz-product-page #caz-pdp .faq-item { border-bottom: 1px solid var(--br) !important; }
body.caz-product-page #caz-pdp .faq-q {
  width: 100% !important;
  padding: 20px 0 !important;
  background: none !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--k2) !important;
  text-align: left !important;
  transition: color .15s !important;
  font-family: var(--f) !important;
}
body.caz-product-page #caz-pdp .faq-q:hover { color: var(--pu) !important; }
body.caz-product-page #caz-pdp .faq-ico {
  font-size: 22px !important;
  color: var(--mu) !important;
  flex-shrink: 0 !important;
  transition: transform .25s !important;
  line-height: 1 !important;
  font-style: normal !important;
  font-weight: 300 !important;
}
body.caz-product-page #caz-pdp .faq-a     { max-height: 0 !important; overflow: hidden !important; transition: max-height .38s ease !important; }
body.caz-product-page #caz-pdp .faq-a-in  { padding: 0 0 20px !important; font-size: 14.5px !important; color: var(--mu) !important; line-height: 1.78 !important; }
body.caz-product-page #caz-pdp .faq-item.open .faq-ico { transform: rotate(45deg) !important; color: var(--pu) !important; }
body.caz-product-page #caz-pdp .faq-item.open .faq-a  { max-height: 400px !important; }

/* ── 16. FINAL CTA ── */
body.caz-product-page #caz-pdp .final {
  background: var(--ink) !important;
  padding: 88px 40px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
}
body.caz-product-page #caz-pdp .final::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(232,184,75,.07), transparent 65%) !important;
  pointer-events: none !important;
}
body.caz-product-page #caz-pdp .final h2 {
  font-size: clamp(28px, 3.8vw, 46px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  letter-spacing: -.04em !important;
  margin-bottom: 16px !important;
  position: relative !important;
  text-transform: none !important;
}
body.caz-product-page #caz-pdp .final h2 em {
  font-style: normal !important;
  color: var(--y) !important;
  -webkit-text-fill-color: var(--y) !important;
}
body.caz-product-page #caz-pdp .final p {
  font-size: 17px !important;
  color: rgba(255,255,255,.44) !important;
  margin-bottom: 36px !important;
  position: relative !important;
}
body.caz-product-page #caz-pdp .final-btns { display: flex !important; gap: 14px !important; justify-content: center !important; flex-wrap: wrap !important; position: relative !important; }
body.caz-product-page #caz-pdp .final-note { margin-top: 24px !important; font-size: 12px !important; color: rgba(255,255,255,.2) !important; position: relative !important; }

/* ── 17. RESPONSIVE ── */
@media (max-width: 1024px) {
  body.caz-product-page #caz-pdp .price-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.caz-product-page #caz-pdp .pc.hot { padding-top: 48px !important; }
  body.caz-product-page #caz-pdp .prob-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 860px) {
  body.caz-product-page #caz-pdp .hero-grid { grid-template-columns: 1fr !important; }
  body.caz-product-page #caz-pdp .hcard { display: none !important; }
  body.caz-product-page #caz-pdp .steps { grid-template-columns: 1fr !important; }
  body.caz-product-page #caz-pdp .steps::before { display: none !important; }
  body.caz-product-page #caz-pdp .wrap,
  body.caz-product-page #caz-pdp .wrap-sm { padding-left: 24px !important; padding-right: 24px !important; }
  body.caz-product-page #caz-pdp .sec  { padding-top: 64px !important; padding-bottom: 64px !important; }
  body.caz-product-page #caz-pdp .hero { padding: 60px 24px 72px !important; }
  body.caz-product-page #caz-pdp .trust { padding: 18px 24px !important; }
  body.caz-product-page #caz-pdp .final { padding: 64px 24px !important; }
}
@media (max-width: 600px) {
  body.caz-product-page #caz-pdp .price-grid { grid-template-columns: 1fr !important; }
  body.caz-product-page #caz-pdp .prob-grid  { grid-template-columns: 1fr !important; }
  body.caz-product-page #caz-pdp .trust-row  { gap: 14px !important; }
  body.caz-product-page #caz-pdp .tdiv       { display: none !important; }
  body.caz-product-page #caz-pdp .cmp-tbl    { font-size: 12.5px !important; }
  body.caz-product-page #caz-pdp .cmp-tbl th,
  body.caz-product-page #caz-pdp .cmp-tbl td { padding: 10px 12px !important; }
  body.caz-product-page #caz-pdp .tab-btn    { min-width: 80px !important; font-size: 12px !important; padding: 8px 10px !important; }
  body.caz-product-page #caz-pdp .solution-box { grid-template-columns: 1fr !important; }
}

/* ── 18. EDD BUTTON OVERRIDE ──────────────────────────────────────────
   EDD outputs (after the button) extra elements we must hide:
   - .edd-cart-ajax-messages  ("Added to cart!" text)
   - a.edd_go_to_checkout     ("Checkout →" link)
   - .edd_price_options       (variable pricing dropdown — we bypass with price_id)
   - input[name=edd_quantity]  (quantity field)
   We ONLY want the <a class="button edd-submit"> anchor visible.
   ── */

/* Kill every EDD default button style so our classes control everything */
body.caz-product-page #caz-pdp a.button,
body.caz-product-page #caz-pdp a.edd_button,
body.caz-product-page #caz-pdp a.edd-submit,
body.caz-product-page #caz-pdp a.edd_go_to_checkout,
body.caz-product-page #caz-pdp input[type="submit"].edd-submit {
  font-family:    var(--f) !important;
  font-weight:    inherit !important;
  line-height:    normal !important;
  letter-spacing: normal !important;
  text-shadow:    none !important;
  text-transform: none !important;
  margin:         0 !important;
}

/* Hide ALL EDD extras — only the purchase anchor should show */
body.caz-product-page #caz-pdp .edd-cart-ajax-messages,
body.caz-product-page #caz-pdp .edd_go_to_checkout,
body.caz-product-page #caz-pdp a.edd_go_to_checkout,
body.caz-product-page #caz-pdp .edd_price_options,
body.caz-product-page #caz-pdp .edd-add-to-cart-label,
body.caz-product-page #caz-pdp .edd_purchase_download_form .edd_price_option_sep,
body.caz-product-page #caz-pdp .edd_purchase_download_form select,
body.caz-product-page #caz-pdp .edd_purchase_download_form input[type="number"],
body.caz-product-page #caz-pdp .edd_purchase_download_form input[name="edd_quantity"],
body.caz-product-page #caz-pdp .edd_purchase_download_form .edd-add-to-cart + *,
body.caz-product-page #caz-pdp .edd-purchase-link .edd-cart-ajax-messages,
body.caz-product-page #caz-pdp .edd_errors { display: none !important; }

/* Wrapper form/div — block-level, no extra spacing */
body.caz-product-page #caz-pdp .edd-purchase-link,
body.caz-product-page #caz-pdp .edd_purchase_link_wrapper,
body.caz-product-page #caz-pdp form.edd_download_purchase_form {
  display:    block !important;
  margin:     0 !important;
  padding:    0 !important;
  border:     none !important;
  background: none !important;
  width:      100% !important;
}

/* ---- Pricing card button — yellow (featured) ---- */
body.caz-product-page #caz-pdp .pc a.pc-btn-y,
body.caz-product-page #caz-pdp .pc a.pc-btn-y.button,
body.caz-product-page #caz-pdp .pc a.pc-btn-y.edd_button,
body.caz-product-page #caz-pdp .pc a.pc-btn-y.edd-submit {
  background:     var(--y) !important;
  color:          var(--ink) !important;
  padding:        13px 16px !important;
  border-radius:  9px !important;
  border:         none !important;
  font-size:      14px !important;
  font-weight:    700 !important;
  display:        block !important;
  width:          100% !important;
  text-align:     center !important;
  text-decoration:none !important;
  box-shadow:     none !important;
  transition:     background .18s !important;
}
body.caz-product-page #caz-pdp .pc a.pc-btn-y:hover { background: var(--yd) !important; color: var(--ink) !important; }

/* ---- Pricing card button — ghost (other plans) ---- */
body.caz-product-page #caz-pdp .pc a.pc-btn-o,
body.caz-product-page #caz-pdp .pc a.pc-btn-o.button,
body.caz-product-page #caz-pdp .pc a.pc-btn-o.edd_button,
body.caz-product-page #caz-pdp .pc a.pc-btn-o.edd-submit {
  background:     transparent !important;
  border:         2px solid var(--br) !important;
  color:          var(--k2) !important;
  padding:        11px 16px !important;
  border-radius:  9px !important;
  font-size:      14px !important;
  font-weight:    700 !important;
  display:        block !important;
  width:          100% !important;
  text-align:     center !important;
  text-decoration:none !important;
  box-shadow:     none !important;
  transition:     all .18s !important;
}
body.caz-product-page #caz-pdp .pc a.pc-btn-o:hover { border-color: var(--li) !important; background: var(--bg) !important; }

/* ---- Hero card button ---- */
body.caz-product-page #caz-pdp .hcard a.hcard-btn,
body.caz-product-page #caz-pdp .hcard a.hcard-btn.button,
body.caz-product-page #caz-pdp .hcard a.hcard-btn.edd_button,
body.caz-product-page #caz-pdp .hcard a.hcard-btn.edd-submit {
  background:     var(--y) !important;
  color:          var(--ink) !important;
  padding:        15px !important;
  border-radius:  10px !important;
  border:         none !important;
  font-size:      15px !important;
  font-weight:    800 !important;
  display:        block !important;
  width:          100% !important;
  text-align:     center !important;
  text-decoration:none !important;
  box-shadow:     none !important;
  transition:     background .18s !important;
}
body.caz-product-page #caz-pdp .hcard a.hcard-btn:hover { background: var(--yd) !important; color: var(--ink) !important; }

/* ---- "No EDD ID" placeholder ---- */
body.caz-product-page #caz-pdp .caz-no-edd {
  background:    #fee2e2 !important; color: #dc2626 !important;
  font-size:     12px !important; padding: 10px !important;
  text-align:    center !important; border-radius: 8px !important;
  border:        1px solid #fca5a5 !important;
}

/* ── 19./* ── 19./* ── 19. REMAINING VISUAL FIXES ── */

/* Hero: h1 line-height fix — 4 lines break layout on narrow */
body.caz-product-page #caz-pdp .hero h1 {
  font-size: clamp(28px, 3.8vw, 52px) !important;
}

/* Problem section: "Everyone" highlight */
body.caz-product-page #caz-pdp .sec-title span[style*="color"] {
  color: #EF4444 !important;
}

/* Pricing: old price strikethrough inside price div */
body.caz-product-page #caz-pdp .pc-price span {
  font-size: 15px !important;
  color: var(--li) !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
  vertical-align: baseline !important;
  margin-left: 4px !important;
}

/* Pricing grid: equal card heights — align-items:stretch so cards fill row */
body.caz-product-page #caz-pdp .price-grid {
  align-items: stretch !important;
}
body.caz-product-page #caz-pdp .pc {
  display: flex !important;
  flex-direction: column !important;
}
body.caz-product-page #caz-pdp .pc-feats {
  flex: 1 !important; /* push button to bottom */
}

/* Features tab: fix inline var() color references */
body.caz-product-page #caz-pdp .ctac-preview span[style*="color:#1F2937"] {
  color: #1F2937 !important;
  font-weight: 600 !important;
}

/* Section titles: ensure no theme override on colour */
body.caz-product-page #caz-pdp .sec-title {
  color: var(--ink) !important;
}

/* Docs section: add a light background panel to prose area */
body.caz-product-page #caz-pdp .dt-pane.on > .prose {
  background: #fff !important;
  border: 1px solid var(--br) !important;
  border-radius: 12px !important;
  padding: 28px 32px !important;
}

/* Remove duplicate EDD add-to-cart form if it appears */
body.caz-product-page #caz-pdp form.edd_download_purchase_form {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.caz-product-page #caz-pdp form.edd_download_purchase_form input[type="hidden"] {
  display: none !important;
}
body.caz-product-page #caz-pdp form.edd_download_purchase_form .edd_price_options {
  display: none !important; /* hide EDD's own price variation select if shown */
}

/* Trust bar: ensure emoji render correctly */
body.caz-product-page #caz-pdp .ti {
  font-size: 13px !important;
}

/* ── 20. SINGLE PRODUCT PRICING CARD ── */
body.caz-product-page #caz-pdp .single-price-wrap {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 32px !important;
}
body.caz-product-page #caz-pdp .single-pc {
  width: 100% !important;
  max-width: 440px !important;
  padding-top: 48px !important; /* room for badge */
}
body.caz-product-page #caz-pdp .single-pc .pc-price {
  font-size: 64px !important;
  margin: 8px 0 4px !important;
}
body.caz-product-page #caz-pdp .single-pc .pc-price sup {
  font-size: 26px !important;
}
body.caz-product-page #caz-pdp .single-pc .pc-feats li {
  font-size: 14px !important;
  padding: 7px 0 !important;
}
body.caz-product-page #caz-pdp .single-pc a.pc-btn-y {
  padding: 16px !important;
  font-size: 16px !important;
  border-radius: 10px !important;
  margin-top: 4px !important;
}

/* ── INTERFACE PREVIEW CENTERING OVERRIDE ── */
.interface-preview-section,
.interface-preview-section .container {
    text-align: center !important;
}
.interface-preview-section h2,
.interface-preview-section .section-label,
.interface-preview-section .subtitle,
.interface-preview-section p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.interface-preview-section .subtitle {
    max-width: 560px;
    display: block;
}

/* ── FAQ ANSWER BLEED FIX ── */
.faq-item {
    overflow: hidden;
    position: relative;
}

.faq-answer {
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer,
.faq-item-active .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 16px 24px 24px !important;
    margin: 0 !important;
    border-top: 1px solid #f3f4f6;
    overflow: visible;
    box-sizing: border-box;
    width: 100%;
}

.product-faq .faq-answer-inner p,
.faq-answer-inner p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #4B5563 !important;
}

.faq-item.open .faq-question,
.faq-item-active .faq-question {
    border-left-color: #E7B455 !important;
}

/* ── FINAL CTA OVERRIDE (defeats global #caz-pdp reset) ── */
.product-final-cta .cta-subtext {
  text-align: center !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.product-final-cta .cta-buttons {
  justify-content: center !important;
}
.product-final-cta .btn-cta-primary,
.product-final-cta .btn-cta-secondary {
  min-width: 220px !important;
  white-space: nowrap !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
}

/* ══════════════════════════════════════════
   GLOBAL FIXES — All Issues
══════════════════════════════════════════ */

/* FIX 1: Enterprise "Custom" price match size */
.pricing-card-enterprise .price-amount {
  font-size: 52px !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
  line-height: 1 !important;
  color: #111827 !important;
}

/* FIX 2: Hero title gold color */
.product-hero .title-highlight,
.title-highlight {
  color: #E7B455 !important;
}

/* FIX 3: Interface preview full width */
.interface-preview-section .preview-panels,
.preview-panels {
  max-width: 1060px !important;
}
.preview-panel {
  max-width: 1060px !important;
}
.preview-panel img {
  max-width: 100% !important;
  width: 100% !important;
}

/* FIX 4: Secondary hero button visible */
.btn-product-secondary {
  background: #ffffff !important;
  border: 2px solid #d1d5db !important;
  color: #111827 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* FIX 5: Pricing card equal height button alignment */
.pricing-grid {
  align-items: stretch !important;
}
.pricing-card {
  display: flex !important;
  flex-direction: column !important;
}
.plan-features {
  flex: 1 !important;
}
.plan-cta {
  margin-top: auto !important;
  padding-top: 24px !important;
}

/* FIX 6: Footer CTA button visibility on this product page */
.page-template-caz-wp-pro-camping .site-footer .btn-footer {
  background: #E7B455 !important;
  color: #111827 !important;
  border-color: #E7B455 !important;
  box-shadow: 0 4px 14px rgba(231, 180, 85, 0.35) !important;
}

.page-template-caz-wp-pro-camping .site-footer .btn-footer:hover {
  background: #d9a647 !important;
  color: #111827 !important;
  border-color: #E7B455 !important;
}
