html:has(.cbc-page) {
    scroll-behavior: smooth;
}

.cbc-page {
    --cbc-brand: #0f766e;
    --cbc-brand-light: #14b8a6;
    --cbc-brand-dark: #115e59;
    --cbc-brand-soft: #f0fdfa;
    --cbc-brand-ring: #ccfbf1;
    --cbc-ink: #0b1f1d;
    --cbc-ink-deep: #071513;
    --cbc-text: #1e293b;
    --cbc-muted: #64748b;
    --cbc-border: #f1f5f9;
    --cbc-shadow-soft: 0 4px 24px -8px rgba(15, 118, 110, 0.15);
    --cbc-shadow-card: 0 8px 30px -12px rgba(15, 23, 42, 0.12);
    --cbc-shadow-glow: 0 0 0 1px rgba(20, 184, 166, 0.15), 0 20px 60px -20px rgba(15, 118, 110, 0.45);
    font-family: "Vazirmatn", system-ui, sans-serif;
    background: #fff;
    color: var(--cbc-text);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

.cbc-page *,
.cbc-page *::before,
.cbc-page *::after {
    box-sizing: border-box;
}

.cbc-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .cbc-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .cbc-container { padding: 0 2rem; }
}

/* Header — cartbecart pill nav */
.cbc-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 0.75rem 1rem 0;
}

@media (min-width: 640px) {
    .cbc-header { padding-top: 1rem; }
}

.cbc-nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
    .cbc-nav-pill { padding: 0.55rem 1.25rem; }
}

.cbc-nav-pill.is-scrolled {
    border-color: rgba(226, 232, 240, 0.7);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--cbc-shadow-soft);
    backdrop-filter: blur(16px);
}

.cbc-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #0f172a;
    flex-shrink: 0;
    min-width: 0;
}

.cbc-brand-text {
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.cbc-brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--cbc-brand) 0%, var(--cbc-brand-light) 100%);
    box-shadow: var(--cbc-shadow-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cbc-nav-center {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    display: none;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .cbc-nav-center { display: flex; }
}

.cbc-nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.cbc-nav-link:hover {
    background: var(--cbc-brand-soft);
    color: var(--cbc-brand);
}

.cbc-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cbc-header-actions--desktop {
    display: none;
}

@media (min-width: 1024px) {
    .cbc-header-actions--desktop { display: flex; }
}

.cbc-btn-nav-login {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: color 0.15s;
}

.cbc-btn-nav-login:hover {
    color: var(--cbc-brand);
}

.cbc-btn-nav-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    background: var(--cbc-brand);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--cbc-shadow-soft);
    transition: background 0.2s, transform 0.2s;
}

.cbc-btn-nav-primary:hover {
    background: var(--cbc-brand-dark);
    color: #fff;
}

.cbc-btn-nav-register .cbc-btn-icon-arrow {
    transition: transform 0.2s;
}

.cbc-btn-nav-register:hover .cbc-btn-icon-arrow {
    transform: translateX(-2px);
}

.cbc-btn-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.cbc-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #334155;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}

.cbc-menu-toggle:hover {
    background: #f1f5f9;
}

@media (min-width: 1024px) {
    .cbc-menu-toggle { display: none; }
}

.cbc-mobile-menu {
    max-width: 72rem;
    margin: 0.5rem auto 0;
    padding: 0.75rem;
    border-radius: 1.25rem;
    border: 1px solid var(--cbc-border);
    background: #fff;
    box-shadow: var(--cbc-shadow-card);
    animation: cbc-fade-in 0.25s ease-out;
}

@keyframes cbc-fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.cbc-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}

.cbc-mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.85rem;
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.cbc-mobile-nav-link:hover {
    background: var(--cbc-brand-soft);
    color: var(--cbc-brand);
}

.cbc-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--cbc-border);
}

.cbc-btn-block {
    width: 100%;
    justify-content: center;
}

body.cbc-menu-open {
    overflow: hidden;
}

.cbc-scroll-target {
    scroll-margin-top: 6.5rem;
}

@media (min-width: 640px) {
    .cbc-scroll-target { scroll-margin-top: 7rem; }
}

.cbc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.65rem 1.25rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cbc-btn-primary {
    background: var(--cbc-brand);
    color: #fff;
    box-shadow: var(--cbc-shadow-soft);
}

.cbc-btn-primary:hover {
    background: var(--cbc-brand-light);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cbc-btn-outline {
    background: #fff;
    color: var(--cbc-brand);
    border: 1px solid var(--cbc-brand);
}

.cbc-btn-outline:hover {
    background: var(--cbc-brand-soft);
}

.cbc-btn-lg {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
}

.cbc-btn-ghost {
    background: transparent;
    color: #475569;
    padding: 0.5rem 0.85rem;
}

.cbc-btn-ghost:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.cbc-btn-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(8px);
}

.cbc-btn-light:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* Hero */
.cbc-hero {
    position: relative;
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.cbc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(70% 60% at 70% 0%, rgba(20, 184, 166, 0.12), transparent),
        linear-gradient(to bottom, #fff, #f8fafc);
    pointer-events: none;
}

.cbc-hero-grid {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .cbc-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3.5rem;
    }
}

.cbc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: var(--cbc-brand-soft);
    color: var(--cbc-brand);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px var(--cbc-brand-ring);
    margin-bottom: 1.25rem;
}

.cbc-hero-title {
    margin: 0 0 1.1rem;
    font-size: clamp(2.3rem, 6vw, 3.75rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.cbc-hero-title-main {
    display: block;
}

.cbc-hero-title-accent {
    display: block;
    width: fit-content;
    margin-top: 0.12em;
    position: relative;
    padding-bottom: 0.1em;
    color: var(--cbc-brand);
}

.cbc-hero-title-accent::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0.02em;
    height: 0.28rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #fde047 0%, #fbbf24 100%);
    box-shadow: 0 2px 12px rgba(253, 224, 71, 0.55);
}

.cbc-hero-lead {
    margin: 0 0 1.75rem;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--cbc-muted);
}

.cbc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cbc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 28rem;
}

.cbc-stat {
    padding: 0.25rem 0;
}

.cbc-stat strong {
    display: block;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 900;
    color: var(--cbc-brand);
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.cbc-stat span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--cbc-muted);
    font-weight: 500;
}

/* Hero visual — menu preview */
.cbc-hero-visual {
    position: relative;
    min-height: 26rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbc-hero-visual-inner {
    position: relative;
    width: min(100%, 20rem);
}

.cbc-menu-preview {
    animation: cbc-float 5s ease-in-out infinite;
}

.cbc-menu-preview-frame {
    background: #fff;
    border: 1px solid var(--cbc-border);
    border-radius: 1.35rem;
    box-shadow: var(--cbc-shadow-glow);
    overflow: hidden;
}

.cbc-menu-preview-url {
    padding: 0.55rem 0.85rem;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f7;
    text-align: center;
}

.cbc-menu-preview-url span {
    display: inline-block;
    max-width: 100%;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 0.62rem;
    color: #64748b;
    direction: ltr;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cbc-menu-preview-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem 0.75rem;
}

.cbc-menu-preview-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #115e59, #0f766e);
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.cbc-menu-preview-brand strong {
    display: block;
    font-size: 0.92rem;
    color: #0f172a;
}

.cbc-menu-preview-brand small {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.72rem;
    color: #94a3b8;
}

.cbc-menu-preview-tabs {
    display: flex;
    gap: 0.45rem;
    padding: 0 1rem 0.85rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.cbc-menu-preview-tabs::-webkit-scrollbar {
    display: none;
}

.cbc-menu-preview-tabs span {
    flex-shrink: 0;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
}

.cbc-menu-preview-tabs span.is-active {
    background: var(--cbc-brand-soft);
    color: var(--cbc-brand-dark);
}

.cbc-menu-preview-list {
    display: grid;
    gap: 0.55rem;
    padding: 0 0.85rem 1rem;
}

.cbc-menu-preview-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.65rem;
    border: 1px solid #eef2f7;
    border-radius: 0.95rem;
    background: #fff;
}

.cbc-menu-preview-item-main {
    min-width: 0;
    flex: 1;
}

.cbc-menu-preview-item-main strong {
    display: block;
    font-size: 0.82rem;
    color: #0f172a;
    line-height: 1.35;
}

.cbc-menu-preview-item-main p {
    margin: 0.2rem 0 0.35rem;
    font-size: 0.68rem;
    line-height: 1.45;
    color: #94a3b8;
}

.cbc-menu-preview-price {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--cbc-brand-dark);
}

.cbc-menu-preview-item-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    flex-shrink: 0;
}

.cbc-menu-preview-thumb {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.75rem;
    object-fit: cover;
    display: block;
    background: #f1f5f9;
}

.cbc-menu-preview-add {
    border: 1px solid var(--cbc-brand);
    background: #fff;
    color: var(--cbc-brand-dark);
    border-radius: 999px;
    padding: 0.18rem 0.55rem;
    font-size: 0.62rem;
    font-weight: 700;
    font-family: inherit;
    cursor: default;
    white-space: nowrap;
}

.cbc-menu-preview-cart {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0.85rem 0.85rem;
    padding: 0.62rem 0.75rem;
    border-radius: 0.85rem;
    background: var(--cbc-brand);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.28);
}

.cbc-menu-preview-cart-icon {
    font-size: 0.9rem;
}

.cbc-menu-preview-cart em {
    margin-right: auto;
    font-style: normal;
    min-width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    font-size: 0.72rem;
}

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

/* Marquee section */
.cbc-marquee-section {
    padding: 3.5rem 0;
    background:
        linear-gradient(to right, rgba(15, 118, 110, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 118, 110, 0.06) 1px, transparent 1px),
        #fff;
    background-size: 34px 34px;
    border-block: 1px solid var(--cbc-border);
}

.cbc-section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.cbc-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cbc-brand);
}

.cbc-section-head h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.cbc-section-head p {
    margin: 0;
    color: var(--cbc-muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

.cbc-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.cbc-marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: cbc-marquee 60s linear infinite;
}

.cbc-marquee-track:hover {
    animation-play-state: paused;
}

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

.cbc-marquee-item {
    flex-shrink: 0;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* Sections */
.cbc-section {
    padding: 4.5rem 0;
}

.cbc-section-muted {
    background: #f8fafc;
}

.cbc-cards-4 {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cbc-cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .cbc-cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.cbc-audience-card {
    background: #fff;
    border: 1px solid var(--cbc-border);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    box-shadow: var(--cbc-shadow-card);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    height: 100%;
}

.cbc-audience-card:hover {
    transform: translateY(-4px);
    border-color: #99f6e4;
    box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.18);
}

.cbc-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    background: var(--cbc-brand-soft);
    color: var(--cbc-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.cbc-audience-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.cbc-audience-card p {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--cbc-muted);
}

.cbc-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--cbc-brand-soft);
    color: var(--cbc-brand);
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid var(--cbc-brand-ring);
}

.cbc-features-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cbc-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .cbc-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.cbc-feature-card {
    background: #fff;
    border: 1px solid var(--cbc-border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--cbc-shadow-card);
    height: 100%;
    transition: transform 0.2s, border-color 0.2s;
}

.cbc-feature-card:hover {
    transform: translateY(-3px);
    border-color: #99f6e4;
}

.cbc-feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.cbc-feature-card p {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--cbc-muted);
}

.cbc-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cbc-feature-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
}

/* Pricing */
.cbc-pricing-grid {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .cbc-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.cbc-price-card {
    background: #fff;
    border: 1px solid var(--cbc-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--cbc-shadow-card);
    display: flex;
    flex-direction: column;
}

.cbc-price-card.is-featured {
    border-color: var(--cbc-brand);
    box-shadow: var(--cbc-shadow-glow);
    transform: scale(1.02);
}

.cbc-price-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.cbc-price-card .cbc-price-desc {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: var(--cbc-muted);
    line-height: 1.6;
}

.cbc-price-amount {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.cbc-price-amount small {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cbc-muted);
}

.cbc-price-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    flex: 1;
}

.cbc-price-list li {
    position: relative;
    padding: 0.4rem 1.25rem 0.4rem 0;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
}

.cbc-price-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--cbc-brand);
    font-weight: 800;
}

.cbc-price-card .cbc-btn {
    width: 100%;
}

/* FAQ */
.cbc-faq-list {
    max-width: 42rem;
    margin: 0 auto;
    display: grid;
    gap: 0.65rem;
}

.cbc-faq-item {
    border: 1px solid var(--cbc-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--cbc-shadow-card);
    overflow: hidden;
}

.cbc-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.25rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cbc-faq-item summary::-webkit-details-marker {
    display: none;
}

.cbc-faq-item summary::after {
    content: "+";
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--cbc-brand-soft);
    color: var(--cbc-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.cbc-faq-item[open] summary::after {
    content: "−";
}

.cbc-faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.1rem;
    color: var(--cbc-muted);
    line-height: 1.85;
    font-size: 0.9rem;
}

/* Final CTA */
.cbc-final-cta {
    padding: 4rem 0 5rem;
}

.cbc-final-box {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, #0b1f1d 0%, #0f766e 55%, #115e59 100%);
    background-size: 32px 32px, 32px 32px, auto;
    box-shadow: var(--cbc-shadow-glow);
}

.cbc-final-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 60% at 50% 0%, rgba(20, 184, 166, 0.22), transparent 70%);
    pointer-events: none;
}

.cbc-final-box > * {
    position: relative;
}

.cbc-final-box .cbc-eyebrow {
    color: #99f6e4;
}

.cbc-final-box h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
}

.cbc-final-box p {
    margin: 0 auto 1.75rem;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.cbc-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Footer */
.cbc-footer {
    background: var(--cbc-ink-deep);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 0 2rem;
    font-size: 0.875rem;
}

.cbc-footer-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cbc-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        align-items: start;
    }
}

.cbc-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.cbc-footer p {
    margin: 0;
    line-height: 1.75;
    max-width: 22rem;
}

.cbc-footer-col h4 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.cbc-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.cbc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.cbc-footer-links a:hover {
    color: #fff;
}

.cbc-footer-bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 575px) {
    .cbc-stats { grid-template-columns: 1fr; }
    .cbc-hero { padding-top: 6rem; }
    .cbc-hero-actions .cbc-btn { width: 100%; }
    .cbc-price-card.is-featured { transform: none; }
    .cbc-tx-panel { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 1rem; animation: none; }
    .cbc-brand-text { font-size: 0.92rem; max-width: 9rem; overflow: hidden; text-overflow: ellipsis; }
}
