:root {
    --orange: #FF6B00;
    --orange-light: #FF8C33;
    --orange-glow: rgba(255, 107, 0, 0.18);
    --dark: #0D0F14;
    --dark-card: #13161D;
    --dark-card2: #181B24;
    --white: #FFFFFF;
    --muted: #9299A8;
    --border: rgba(255, 107, 0, 0.13);
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── NAV ── */
.crevofyworks-pricing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(13, 15, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.crevofyworks-pricing-nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.crevofyworks-pricing-nav-logo span {
    color: var(--orange);
}

.crevofyworks-pricing-nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.crevofyworks-pricing-nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.crevofyworks-pricing-nav-links a:hover,
.crevofyworks-pricing-nav-links a.active {
    color: var(--white);
}

.crevofyworks-pricing-nav-cta {
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.crevofyworks-pricing-nav-cta:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

/* ── HERO ── */
.crevofyworks-pricing-hero {
    padding: 160px 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.crevofyworks-pricing-hero::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.crevofyworks-pricing-hero-badge {
    display: inline-block;
    background: var(--orange-glow);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.crevofyworks-pricing-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.crevofyworks-pricing-hero-title span {
    color: var(--orange);
}

.crevofyworks-pricing-hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

/* ── TOGGLE ── */
.crevofyworks-pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 72px;
}

.crevofyworks-pricing-toggle-label {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}

.crevofyworks-pricing-toggle-label.active {
    color: var(--white);
}

.crevofyworks-pricing-toggle {
    width: 52px;
    height: 28px;
    background: var(--dark-card2);
    border: 1px solid var(--border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.crevofyworks-pricing-toggle.on {
    background: var(--orange);
}

.crevofyworks-pricing-toggle-dot {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.crevofyworks-pricing-toggle.on .crevofyworks-pricing-toggle-dot {
    transform: translateX(24px);
}

.crevofyworks-pricing-toggle-save {
    background: rgba(255, 107, 0, 0.15);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

/* ── CARDS GRID ── */
.crevofyworks-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto 100px;
    padding: 0 60px;
}

.crevofyworks-pricing-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.crevofyworks-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.crevofyworks-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.crevofyworks-pricing-card:hover::before {
    opacity: 1;
}

.crevofyworks-pricing-card.featured {
    background: var(--dark-card2);
    border: 1.5px solid var(--orange);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.12);
}

.crevofyworks-pricing-card.featured::before {
    opacity: 1;
    background: var(--orange);
    height: 3px;
}

.crevofyworks-pricing-card-badge {
    position: absolute;
    top: -1px;
    right: 28px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 0 0 10px 10px;
}

.crevofyworks-pricing-card-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-glow);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.crevofyworks-pricing-card-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.crevofyworks-pricing-card-tagline {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 28px;
    line-height: 1.5;
}

.crevofyworks-pricing-card-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
}

.crevofyworks-pricing-card-currency {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    align-self: flex-start;
    margin-top: 6px;
}

.crevofyworks-pricing-card-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.crevofyworks-pricing-card-period {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.crevofyworks-pricing-card-billing {
    color: var(--muted);
    font-size: 0.78rem;
    margin-bottom: 32px;
}

.crevofyworks-pricing-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.crevofyworks-pricing-card-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.crevofyworks-pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #C8CDD8;
    line-height: 1.4;
}

.crevofyworks-pricing-card-features li .check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.crevofyworks-pricing-card-features li .check svg {
    width: 10px;
    height: 10px;
}

.crevofyworks-pricing-card-features li.muted-feat {
    color: var(--muted);
}

.crevofyworks-pricing-card-features li.muted-feat .check {
    background: rgba(146, 153, 168, 0.1);
}

.crevofyworks-pricing-card-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.crevofyworks-pricing-card-btn.primary {
    background: var(--orange);
    color: var(--white);
}

.crevofyworks-pricing-card-btn.primary:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.crevofyworks-pricing-card-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.crevofyworks-pricing-card-btn.secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ── COMPARISON TABLE ── */
.crevofyworks-pricing-compare {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 60px;
}

.crevofyworks-pricing-compare-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.crevofyworks-pricing-compare-title span {
    color: var(--orange);
}

.crevofyworks-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.crevofyworks-pricing-table thead tr {
    background: var(--dark-card2);
}

.crevofyworks-pricing-table th {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.crevofyworks-pricing-table th:first-child {
    text-align: left;
    border-radius: 12px 0 0 0;
}

.crevofyworks-pricing-table th:last-child {
    border-radius: 0 12px 0 0;
}

.crevofyworks-pricing-table th.featured-col {
    color: var(--orange);
}

.crevofyworks-pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.15s;
}

.crevofyworks-pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.crevofyworks-pricing-table td {
    padding: 16px 24px;
    font-size: 0.88rem;
    color: #C8CDD8;
    text-align: center;
}

.crevofyworks-pricing-table td:first-child {
    text-align: left;
    color: var(--white);
    font-weight: 500;
}

.crevofyworks-pricing-table td.featured-col {
    background: rgba(255, 107, 0, 0.04);
}

.crevofyworks-pricing-table .check-yes {
    color: var(--orange);
    font-size: 1.1rem;
}

.crevofyworks-pricing-table .check-no {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

/* ── FAQ ── */
.crevofyworks-pricing-faq {
    max-width: 760px;
    margin: 0 auto 100px;
    padding: 0 60px;
}

.crevofyworks-pricing-faq-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.crevofyworks-pricing-faq-title span {
    color: var(--orange);
}

.crevofyworks-pricing-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.crevofyworks-pricing-faq-item.open {
    border-color: rgba(255, 107, 0, 0.3);
}

.crevofyworks-pricing-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    user-select: none;
}

.crevofyworks-pricing-faq-q:hover {
    color: var(--orange);
}

.crevofyworks-pricing-faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: var(--orange-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.open .crevofyworks-pricing-faq-icon {
    transform: rotate(45deg);
}

.crevofyworks-pricing-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    padding: 0 24px;
}

.open .crevofyworks-pricing-faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ── CTA BANNER ── */
.crevofyworks-pricing-cta-banner {
    max-width: 1060px;
    margin: 0 auto 100px;
    padding: 0 60px;
}

.crevofyworks-pricing-cta-inner {
    background: linear-gradient(135deg, #1A1C24 0%, #13161D 100%);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.crevofyworks-pricing-cta-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.09) 0%, transparent 70%);
}

.crevofyworks-pricing-cta-tag {
    display: inline-block;
    background: var(--orange-glow);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.crevofyworks-pricing-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.crevofyworks-pricing-cta-heading span {
    color: var(--orange);
}

.crevofyworks-pricing-cta-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.crevofyworks-pricing-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.crevofyworks-pricing-cta-btn-primary {
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 14px 36px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.2s;
}

.crevofyworks-pricing-cta-btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.3);
}

.crevofyworks-pricing-cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    padding: 14px 36px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.2s;
}

.crevofyworks-pricing-cta-btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ── FOOTER ── */
.crevofyworks-pricing-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.82rem;
}

.crevofyworks-pricing-footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.crevofyworks-pricing-footer-logo span {
    color: var(--orange);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crevofyworks-pricing-hero-badge {
    animation: fadeUp 0.5s ease both;
}

.crevofyworks-pricing-hero-title {
    animation: fadeUp 0.55s 0.1s ease both;
}

.crevofyworks-pricing-hero-sub {
    animation: fadeUp 0.55s 0.2s ease both;
}

.crevofyworks-pricing-toggle-wrap {
    animation: fadeUp 0.55s 0.3s ease both;
}

.crevofyworks-pricing-card {
    animation: fadeUp 0.6s ease both;
}

.crevofyworks-pricing-card:nth-child(1) {
    animation-delay: 0.35s;
}

.crevofyworks-pricing-card:nth-child(2) {
    animation-delay: 0.45s;
}

.crevofyworks-pricing-card:nth-child(3) {
    animation-delay: 0.55s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .crevofyworks-pricing-nav {
        padding: 18px 28px;
    }

    .crevofyworks-pricing-nav-links {
        display: none;
    }

    .crevofyworks-pricing-hero {
        padding: 130px 28px 60px;
    }

    .crevofyworks-pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 28px;
    }

    .crevofyworks-pricing-compare,
    .crevofyworks-pricing-faq,
    .crevofyworks-pricing-cta-banner {
        padding: 0 28px;
    }

    .crevofyworks-pricing-cta-inner {
        padding: 40px 28px;
    }

    .crevofyworks-pricing-footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 28px;
    }

    .crevofyworks-pricing-table th,
    .crevofyworks-pricing-table td {
        padding: 12px 10px;
        font-size: 0.78rem;
    }
}