
body {
    background: #f7f7fa;
    font-family: "Space Grotesk", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cad-header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.cad-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
}

.orb1 {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,214,57,0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.orb2 {
    position: fixed;
    bottom: -180px;
    left: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,27,27,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cad-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 940px;
}

.label-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 28px;
}

    .label-badge .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
    }

.cad-heading {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1b1b;
    line-height: 1.2;
    margin-bottom: 14px;
}

    .cad-heading .highlight {
        background: #e6d639;
        padding: 0 10px;
        border-radius: 8px;
        display: inline-block;
    }

.cad-sub {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 460px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #4b5563;
}

    .feature-chip i {
        color: #22c55e;
    }

.cad-footer {
    border-top: 1px solid #f0f0f0;
    background: white;
    padding: 18px 0;
    text-align: center;
}
