/* =========================
   RESET + BASE
========================= */

#dc-demo-container * {
    box-sizing: border-box;
}

/* =========================
   HERO SECTION
========================= */

#dc-hero {
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

#dc-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color:#ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

#dc-hero p {
    color: #cbd5e1;
    font-size: 18px;
}

.dc-price {
    margin-top: 10px;
    font-size: 14px;
    color: #94a3b8;
}

/* =========================
   CTA BUTTON
========================= */

.dc-cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.dc-cta-btn.full {
    width: 100%;
    text-align: center;
}
/* SCROLL INDICATOR */
.dc-scroll-indicator {
    font-size: 28px;
    margin-top: 20px;
    animation: dc-bounce 1.5s infinite;
    opacity: 0.8;
}

/* BOUNCE ANIMATION */
@keyframes dc-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
/* =========================
   MAIN LAYOUT
========================= */

#dc-demo-container {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

/* =========================
   LEFT GRID SYSTEM
========================= */

.dc-demo-left {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =========================
   INFO CARDS
========================= */

.dc-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.dc-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* FULL WIDTH CARD */
.full-width {
    grid-column: span 2;
}

/* HEADINGS */

.dc-info-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #0f172a;
}

/* LISTS */
.dc-info-card ul,
.dc-info-card ol {
    padding: 0;
    margin: 0;
}

.dc-info-card li {
    list-style: none;
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #475569;
    font-size: 14px;
}

/* Custom bullet */
.dc-info-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* =========================
   CTA BOX (LEFT)
========================= */

.dc-cta-box {
    grid-column: span 2;
}

/* =========================
   RIGHT SIDE
========================= */

.dc-demo-right {
    flex: 1;
}

/* =========================
   DEMO CARD
========================= */

.dc-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* INPUTS */
.dc-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

/* BUTTON */
.dc-card button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: initial;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dc-card button:hover {
    transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.secondary {
    background: #f1f5f9 !important;
    color: #333 !important;
}

/* DEMO NOTE */
.dc-demo-note {
    font-size: 13px;
    color: #64748b;
    margin-top: 10px;
    margin-bottom: 14px;
}

/* =========================
   DELIVERY CHECKER BOX
========================= */


/* MAIN WRAPPER */
#dc-checker {
    max-width: 700px;
    width: 100%;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
}

.dc-card #dc-checker {
    margin: 20px auto;
}
.dc-demo-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* INPUT */
#dc-checker input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

/* BUTTON */
#dc-check-btn {
    width: 100%;
    padding: 14px;
    background: #0073aa;
    transition: all 0.2s ease;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

#dc-check-btn:hover {
    background: #005177;
}

/* RESULT */
#dc-result {
    margin-top: 20px;
    font-weight: 600;
    font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
    #dc-checker {
        margin: 30px 15px;
        padding: 20px;
    }
}

.dc-cta-box {
    grid-column: span 2;
}

.dc-cta-big {
    display: block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.dc-cta-big span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}

.dc-cta-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.dc-scroll-indicator {
    display: inline-block;
    margin-left: 8px;
    font-size: 44px;
    animation: dc-bounce 1.5s infinite;
    vertical-align: middle;
    margin-left: 6px;
    position: relative;
    top: 2px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    /* STACK MAIN LAYOUT */
    #dc-demo-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }

    /* DEMO FIRST */
    .dc-demo-right {
        order: -1;
    }

    /* LEFT GRID → SINGLE COLUMN */
    .dc-demo-left {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    /* CARDS FULL WIDTH */
    .dc-info-card {
        width: 100%;
        padding: 20px;
        border-radius: 14px;
    }

    /* REMOVE GRID SPAN */
    .full-width {
        grid-column: unset;
    }

    /* CTA BOX FIX */
    .dc-cta-box {
        width: 100%;
    }

    /* CTA BUTTON FULL WIDTH + CLEAN */
    .dc-cta-big {
        text-align: center;
        padding: 18px;
        border-radius: 14px;
    }

    /* HERO TEXT FIX */
    #dc-hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    #dc-hero p {
        font-size: 15px;
    }

    /* DEMO CARD SPACING */
    .dc-card {
        padding: 22px;
        border-radius: 16px;
    }

    /* INPUTS */
    .dc-card input {
        padding: 13px;
    }

    /* BUTTON */
    .dc-card button {
        padding: 13px;
        font-size: 15px;
    }

    /* SCROLL ICON SIZE */
    .dc-scroll-indicator {
        font-size: 28px;
    }

}