:root {
    --cc-primary: #5856eb;
    --cc-primary-dark: #4745d9;
    --cc-primary-light: #6b69f0;
    --cc-dark: #08091a;
    --cc-dark-2: #0f1025;
    --cc-dark-3: #12132b;
    --cc-text: #1a1a2e;
    --cc-text-muted: #6b7280;
    --cc-text-light: rgba(255, 255, 255, 0.75);
    --cc-border: #e5e7eb;
    --cc-green: #22c55e;
    --cc-yellow: #f59e0b;
    --cc-red: #ef4444;
    --cc-radius: 12px;
    --cc-radius-lg: 16px;
    --cc-radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cc-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.cc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.cc-navbar {
    padding: 22px 0;
}

.cc-navbar-inner {
    position: relative;
}

/* Logo */
.cc-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.cc-brand-icon {
    width: 32px;
    height: 32px;
    background: var(--cc-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
}

/* Desktop layout: logo | menu center | actions right */
@media (min-width: 992px) {
    .cc-navbar-inner {
        display: flex;
        align-items: center;
    }

    .cc-navbar-menu {
        display: flex !important;
        flex: 1;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .cc-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 4px;
    }

    .cc-header-actions {
        margin-left: auto;
    }
}

/* Nav links */
.cc-menu .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 8px 20px !important;
    position: relative;
    transition: color 0.2s;
}

.cc-menu .nav-link:hover {
    color: #fff !important;
}

.cc-menu .nav-link.active {
    color: #fff !important;
}

.cc-menu .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background: var(--cc-primary);
    border-radius: 2px;
}

.cc-menu .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: 0.12em;
    font-size: 0.65rem;
    opacity: 0.7;
    border-width: 0.35em;
}

.cc-nav-dropdown {
    margin-top: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 6px;
    background: #12132b;
}

.cc-nav-dropdown .dropdown-item {
    border-radius: 6px;
    font-size: 0.875rem;
    padding: 8px 14px;
}

/* Actions */
.cc-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.cc-link-login {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cc-link-login:hover {
    color: #fff;
    opacity: 0.85;
}

.cc-btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cc-primary);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.2s;
}

.cc-btn-header i {
    font-size: 0.9rem;
}

.cc-btn-header:hover {
    background: var(--cc-primary-dark);
    color: #fff;
}

/* Mobile toggler */
.cc-toggler {
    border-color: rgba(255, 255, 255, 0.25);
    padding: 4px 8px;
    margin-left: auto;
}

.cc-toggler .navbar-toggler-icon {
    filter: invert(1);
    width: 1.2em;
    height: 1.2em;
}

/* Legacy button classes (used elsewhere) */
.cc-btn-ghost {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    transition: color 0.2s;
}

.cc-btn-ghost:hover {
    color: #fff;
}

.cc-btn-primary {
    background: var(--cc-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.cc-btn-primary:hover {
    background: var(--cc-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.cc-btn-primary-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 12px;
}

.cc-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.cc-btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.cc-btn-play {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.cc-btn-play:hover {
    color: #fff;
}

.cc-btn-play .play-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: border-color 0.2s, background 0.2s;
}

.cc-btn-play:hover .play-circle {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* ── Hero ── */
.cc-hero {
    background: var(--cc-dark);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.cc-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(84, 83, 232, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cc-hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(84, 83, 232, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(84, 83, 232, 0.12);
    border: 1px solid rgba(84, 83, 232, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.cc-badge-channels .bi-whatsapp {
    color: #25d366;
    font-size: 0.9rem;
}

.cc-badge-channels .bi-chat-dots-fill {
    color: var(--cc-primary-light);
    font-size: 0.85rem;
}

.cc-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cc-hero h1 .highlight-wa {
    color: #25d366;
}

.cc-hero h1 .highlight-sms {
    background: linear-gradient(135deg, #6366f1, #5856eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cc-btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.cc-btn-outline-hero:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.cc-btn-outline-hero i {
    font-size: 0.85rem;
}

.cc-trust-item .bi-whatsapp {
    color: #25d366 !important;
}

.cc-trust-item .bi-shield-check {
    color: var(--cc-primary-light) !important;
}

.cc-trust-item .bi-headset {
    color: var(--cc-primary-light) !important;
}

/* Hero visual: phone + side cards */
.cc-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.cc-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.cc-hero-cards::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    border-left: 2px dotted rgba(255, 255, 255, 0.15);
}

.cc-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(8px);
    min-width: 240px;
}

.cc-hero-card h6 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.cc-hero-card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

.cc-hero-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cc-hero-card-icon-wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.cc-hero-card-icon-purple {
    background: rgba(88, 86, 235, 0.2);
    color: var(--cc-primary-light);
}

.cc-hero-card-icon-orange {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.cc-hero-card-icon-blue {
    background: rgba(88, 86, 235, 0.15);
    color: var(--cc-primary-light);
}

.cc-phone-whatsapp {
    position: relative;
    flex-shrink: 0;
}

.cc-wa-verified {
    color: #25d366;
    font-size: 0.75rem;
}

.cc-wa-bubble-out {
    max-width: 100%;
}

.cc-wa-btn {
    display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 6px;
    cursor: default;
    text-align: center;
}

.cc-wa-btn-confirm {
    background: #25d366;
    color: #fff;
}

.cc-wa-btn-cancel {
    background: #fff;
    color: #333;
    border: 1px solid #e5e7eb;
}

.cc-wa-float-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 5;
}

.cc-hero h1 .highlight {
    color: var(--cc-primary-light);
}

.cc-hero .lead {
    color: var(--cc-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.cc-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cc-trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.cc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

.cc-trust-item i {
    color: var(--cc-primary-light);
    font-size: 1rem;
}

/* Phone Mockup */
.cc-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cc-phone {
    width: 260px;
    background: #1a1b35;
    border-radius: 32px;
    border: 3px solid #2a2b4a;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(84, 83, 232, 0.15);
    position: relative;
    z-index: 2;
}

.cc-phone-notch {
    width: 80px;
    height: 24px;
    background: #2a2b4a;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 8px;
}

.cc-phone-screen {
    background: #fff;
    border-radius: 20px;
    padding: 20px 16px;
    min-height: 380px;
}

.cc-phone-screen .order-header {
    text-align: center;
    margin-bottom: 16px;
}

.cc-phone-screen .order-header h6 {
    font-size: 0.75rem;
    color: var(--cc-text-muted);
    margin-bottom: 4px;
}

.cc-phone-screen .order-header .order-id {
    font-size: 0.7rem;
    color: var(--cc-text-muted);
}

.cc-phone-screen .product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 8px;
}

.cc-phone-screen .product-img {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 8px;
}

.cc-phone-screen .product-info h6 {
    font-size: 0.72rem;
    font-weight: 600;
    margin: 0;
}

.cc-phone-screen .product-info span {
    font-size: 0.65rem;
    color: var(--cc-text-muted);
}

.cc-phone-screen .total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 600;
}

.cc-phone-screen .confirm-btn {
    width: 100%;
    background: var(--cc-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 8px;
}

.cc-phone-screen .cancel-link {
    display: block;
    text-align: center;
    color: var(--cc-text-muted);
    font-size: 0.68rem;
    margin-top: 8px;
    text-decoration: none;
}

/* WhatsApp Phone Mockup */
.cc-phone-whatsapp .cc-wa-screen {
    background: #e5ddd5;
    padding: 0;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cc-wa-header {
    background: #075e54;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-wa-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cc-wa-header h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.cc-wa-header span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
}

.cc-wa-chat {
    padding: 16px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='%23e5ddd5'/%3E%3C/svg%3E");
}

.cc-wa-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    font-size: 0.72rem;
    line-height: 1.5;
}

.cc-wa-bubble p {
    margin: 0 0 4px;
}

.cc-wa-bubble p:last-of-type {
    margin-bottom: 0;
}

.cc-wa-bubble-out {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.cc-wa-bubble-in {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.cc-wa-bubble-success {
    background: #fff;
}

.cc-wa-time {
    display: block;
    text-align: right;
    font-size: 0.58rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 4px;
}

.cc-feature-icon-wa {
    background: rgba(37, 211, 102, 0.12) !important;
    color: #25d366 !important;
}

.cc-trust-item .bi-whatsapp {
    color: #25d366 !important;
}

.cc-status-dot.green .bi-whatsapp {
    color: #25d366;
}

/* Status Cards */
.cc-status-cards {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.cc-status-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    animation: floatCard 3s ease-in-out infinite;
}

.cc-status-card:nth-child(2) {
    animation-delay: 0.5s;
}

.cc-status-card:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.cc-status-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.cc-status-dot.green { background: rgba(34, 197, 94, 0.12); color: var(--cc-green); }
.cc-status-dot.yellow { background: rgba(245, 158, 11, 0.12); color: var(--cc-yellow); }
.cc-status-dot.red { background: rgba(239, 68, 68, 0.12); color: var(--cc-red); }

.cc-status-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cc-text);
}

/* ── Section Common ── */
.cc-section {
    padding: 100px 0;
}

.cc-section-label {
    display: inline-block;
    background: rgba(84, 83, 232, 0.08);
    color: var(--cc-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.cc-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cc-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cc-section-title .highlight {
    color: var(--cc-primary);
}

.cc-section-subtitle {
    color: var(--cc-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ── Features Grid ── */
.cc-features {
    background: #fff;
}

.cc-feature-card {
    padding: 28px;
    border-radius: var(--cc-radius-lg);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.cc-feature-card:hover {
    box-shadow: 0 8px 40px rgba(84, 83, 232, 0.08);
    transform: translateY(-2px);
}

.cc-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(84, 83, 232, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cc-primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.cc-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cc-text);
}

.cc-feature-card p {
    font-size: 0.88rem;
    color: var(--cc-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Dashboard Preview ── */
.cc-dashboard-section {
    background: #fff;
}

.cc-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.cc-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--cc-text);
}

.cc-check-list li i {
    color: var(--cc-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cc-link-arrow {
    color: var(--cc-primary);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.cc-link-arrow:hover {
    color: var(--cc-primary-dark);
    gap: 10px;
}

/* Dashboard Mockup */
.cc-dashboard-mockup {
    background: #f8f9fc;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cc-dash-sidebar {
    background: var(--cc-dark);
    width: 56px;
    min-height: 420px;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cc-dash-sidebar .dash-logo {
    width: 32px;
    height: 32px;
    background: var(--cc-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.cc-dash-sidebar i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.cc-dash-sidebar i.active {
    color: #fff;
    background: rgba(84, 83, 232, 0.3);
}

.cc-dash-content {
    flex: 1;
    padding: 20px;
}

.cc-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.cc-dash-stat {
    background: #fff;
    border: 1px solid var(--cc-border);
    border-radius: 10px;
    padding: 14px;
}

.cc-dash-stat .label {
    font-size: 0.68rem;
    color: var(--cc-text-muted);
    margin-bottom: 4px;
}

.cc-dash-stat .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cc-text);
}

.cc-dash-stat .change {
    font-size: 0.65rem;
    font-weight: 600;
}

.cc-dash-stat .change.up { color: var(--cc-green); }
.cc-dash-stat .change.down { color: var(--cc-red); }

.cc-dash-chart {
    background: #fff;
    border: 1px solid var(--cc-border);
    border-radius: 10px;
    padding: 16px;
}

.cc-dash-chart h6 {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cc-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 120px;
    padding-top: 10px;
}

.cc-chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--cc-primary), var(--cc-primary-light));
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.cc-chart-bar:hover {
    opacity: 1;
}

/* ── How It Works ── */
.cc-how-it-works {
    background: #fafbfc;
}

.cc-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 48px;
}

.cc-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--cc-border) 0, var(--cc-border) 8px, transparent 8px, transparent 16px);
}

.cc-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.cc-step-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border: 2px solid var(--cc-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--cc-primary);
    font-size: 1.3rem;
}

.cc-step-number {
    width: 28px;
    height: 28px;
    background: var(--cc-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 auto 14px;
}

.cc-step h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cc-step p {
    font-size: 0.82rem;
    color: var(--cc-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Integrations ── */
.cc-integrations {
    background: #fff;
}

.cc-integration-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 48px 0 32px;
}

.cc-integration-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.cc-integration-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.cc-integration-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cc-text);
}

.cc-integration-logo .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.logo-shopify { background: #96bf48; color: #fff; }
.logo-woo { background: #96588a; color: #fff; }
.logo-emag { background: #004b91; color: #fff; font-size: 0.7rem !important; }
.logo-presta { background: #df0067; color: #fff; }
.logo-api { background: var(--cc-primary); color: #fff; font-size: 0.65rem !important; }

/* ── Pricing ── */
.cc-pricing {
    background: #fafbfc;
}

.cc-pricing-card {
    background: #fff;
    border: 1.5px solid var(--cc-border);
    border-radius: var(--cc-radius-xl);
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.cc-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.cc-pricing-card.featured {
    border-color: var(--cc-primary);
    box-shadow: 0 12px 40px rgba(84, 83, 232, 0.12);
    transform: scale(1.03);
}

.cc-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cc-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.cc-pricing-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cc-pricing-card .price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--cc-text);
    line-height: 1;
    margin-bottom: 4px;
}

.cc-pricing-card .price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cc-text-muted);
}

.cc-pricing-card .price-desc {
    font-size: 0.82rem;
    color: var(--cc-text-muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--cc-border);
}

.cc-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.cc-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--cc-text);
}

.cc-pricing-features li i {
    color: var(--cc-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.cc-pricing-card.featured .cc-pricing-features li i {
    color: var(--cc-primary);
}

.cc-btn-pricing {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.cc-btn-pricing-outline {
    background: #fff;
    border: 1.5px solid var(--cc-border);
    color: var(--cc-text);
}

.cc-btn-pricing-outline:hover {
    border-color: var(--cc-primary);
    color: var(--cc-primary);
}

.cc-btn-pricing-filled {
    background: var(--cc-primary);
    border: 1.5px solid var(--cc-primary);
    color: #fff;
}

.cc-btn-pricing-filled:hover {
    background: var(--cc-primary-dark);
    color: #fff;
}

.cc-pricing-note {
    text-align: center;
    color: var(--cc-text-muted);
    font-size: 0.85rem;
    margin-top: 32px;
}

/* ── CTA Banner ── */
.cc-cta {
    padding: 80px 0;
    background: #fff;
}

.cc-cta-box {
    background: linear-gradient(135deg, var(--cc-primary) 0%, #6366f1 100%);
    border-radius: var(--cc-radius-xl);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cc-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cc-cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cc-cta-text h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cc-cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    margin: 0;
}

.cc-btn-cta-white {
    background: #fff;
    color: var(--cc-primary);
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.cc-btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--cc-primary-dark);
}

/* ── Footer ── */
.cc-footer {
    background: var(--cc-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.cc-footer-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: var(--cc-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.cc-footer-brand {
    margin-bottom: 20px;
}

.cc-footer-brand .brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cc-footer-brand .brand-row span {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.cc-footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

.cc-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.cc-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cc-social-links a:hover {
    background: rgba(84, 83, 232, 0.3);
    color: #fff;
}

.cc-footer h6 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-footer-links li {
    margin-bottom: 10px;
}

.cc-footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.cc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.cc-footer-bottom .heart {
    color: var(--cc-red);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .cc-hero h1 {
        font-size: 2.4rem;
    }

    .cc-hero {
        padding: 120px 0 80px;
    }

    .cc-phone-wrap,
    .cc-hero-visual {
        margin-top: 48px;
        flex-direction: column;
    }

    .cc-hero-cards {
        width: 100%;
        max-width: 360px;
    }

    .cc-hero-cards::before {
        display: none;
    }

    .cc-status-cards {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 24px;
    }

    .cc-section-title {
        font-size: 1.8rem;
    }

    .cc-steps {
        flex-direction: column;
        gap: 32px;
    }

    .cc-steps::before {
        display: none;
    }

    .cc-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .cc-pricing-card.featured {
        transform: none;
    }

    .cc-header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cc-btn-header {
        justify-content: center;
    }

    .cc-menu .nav-link.active::after {
        display: none;
    }

    .cc-navbar-menu {
        padding-top: 16px;
    }
}

@media (max-width: 767.98px) {
    .cc-hero h1 {
        font-size: 2rem;
    }

    .cc-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .cc-section {
        padding: 60px 0;
    }

    .cc-status-cards {
        flex-direction: column;
        align-items: center;
    }

    .cc-integration-logos {
        gap: 24px;
    }

    .cc-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
