/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary: #FFD100;
    --primary-dark: #e6bc00;
    --brand-blue: #0047AB;
    --brand-dark: #003580;
    --surface-light: #FFFFFF;
    --surface-gray: #F8F9FA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --text-main: #1F2937;
    --text-sub: #4B5563;
    --success: #10b981;
    --success-light: #ecfdf5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-mag: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --max-web-container: 1280px;
    --max-blog-container: 880px;
}

/* ========================================
   Reset & Base
   ======================================== */
.case-detail-magazine *,
.case-detail-magazine *::before,
.case-detail-magazine *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.case-detail-magazine {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-main);
    background: var(--surface-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.case-detail-magazine img {
    max-width: 100%;
    height: auto;
    display: block;
}

.case-detail-magazine a {
    text-decoration: none;
    color: inherit;
}

.case-detail-magazine ul,
.case-detail-magazine ol {
    list-style: none;
}

.case-detail-magazine button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.case-detail-magazine ::selection {
    background: var(--brand-blue);
    color: white;
}

/* ========================================
   Layout Containers
   ======================================== */
.cdm-container {
    max-width: var(--max-web-container);
    margin: 0 auto;
    padding: 0 20px;
}

.cdm-blog-container {
    max-width: var(--max-blog-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Hero Section
   ======================================== */
.cdm-hero {
    position: relative;
    padding: 60px 0 48px;
    overflow: hidden;
}

.cdm-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gray-50);
    z-index: -1;
    transform: skewY(-2deg);
    transform-origin: top left;
    height: 150%;
    margin-top: -50%;
}

.cdm-hero-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cdm-hero-tag {
    background: black;
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cdm-hero-tag-divider {
    height: 1px;
    width: 32px;
    background: var(--gray-300);
}

.cdm-hero-tag-sub {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cdm-hero-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 24px;
    word-break: keep-all;
}

.cdm-hero-title-highlight {
    display: inline-block;
    position: relative;
}

.cdm-hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 209, 0, 0.4);
    z-index: -1;
}

.cdm-hero-title-blue {
    color: var(--brand-blue);
}

.cdm-hero-lead {
    font-size: 16px;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
    max-width: 768px;
    margin-bottom: 32px;
    padding-left: 16px;
    border-left: 3px solid var(--brand-blue);
}

.cdm-hero-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

.cdm-hero-info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.cdm-hero-info-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .cdm-hero {
        padding: 80px 0 64px;
    }

    .cdm-hero-title {
        font-size: 40px;
    }

    .cdm-hero-lead {
        font-size: 18px;
    }

    .cdm-hero-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   Article
   ======================================== */
.cdm-article {
    padding: 40px 0 60px;
}

.cdm-article-sections {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

@media (min-width: 768px) {
    .cdm-article {
        padding: 60px 0 80px;
    }

    .cdm-article-sections {
        gap: 120px;
    }
}

/* ========================================
   Section Header
   ======================================== */
.cdm-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 32px;
}

.cdm-section-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: -24px;
    user-select: none;
}

.cdm-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    padding-left: 12px;
}

@media (min-width: 768px) {
    .cdm-section-header {
        flex-direction: row;
    }

    .cdm-section-number {
        font-size: 80px;
    }

    .cdm-section-title {
        font-size: 28px;
        padding-left: 0;
    }
}

/* ========================================
   Drop Cap
   ======================================== */
.cdm-drop-cap::first-letter {
    float: left;
    font-size: 48px;
    line-height: 0.8;
    font-weight: 900;
    margin-right: 10px;
    color: var(--brand-blue);
}

/* ========================================
   Magazine Quote
   ======================================== */
.cdm-magazine-quote {
    position: relative;
    margin: 40px 0;
    padding: 28px;
    background: var(--gray-50);
    border-radius: 0 32px 0 32px;
    box-shadow: var(--shadow-soft);
}

.cdm-magazine-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -8px;
    font-size: 64px;
    color: var(--gray-200);
    opacity: 0.5;
    z-index: -1;
}

.cdm-magazine-quote-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

.cdm-magazine-quote-author {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .cdm-magazine-quote {
        margin: 48px 32px;
        padding: 32px;
    }

    .cdm-magazine-quote-text {
        font-size: 20px;
    }
}

/* ========================================
   Prose Content
   ======================================== */
.cdm-prose {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.9;
}

.cdm-prose p {
    margin-bottom: 20px;
}

.cdm-prose strong {
    color: var(--brand-blue);
    font-weight: 700;
}

.cdm-prose-lg {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--gray-600);
}

.cdm-prose-lg strong {
    font-weight: 700;
    color: var(--brand-blue);
}

/* ========================================
   Single Image with Caption
   ======================================== */
.cdm-single-image {
    margin: 24px 0;
}

.cdm-single-image img {
    width: 100%;
    /* max-height: 320px */;
    object-fit: cover;
        object-position: bottom;  /* 아래쪽 기준으로 crop */
    border-radius: 8px;
    box-shadow: var(--shadow-mag);
}

.cdm-single-image.img-auto img {
    max-height: none;
    object-fit: contain;
}

.cdm-single-image.img-sm img {
    max-height: 240px;
}

.cdm-single-image.img-center img {
    max-width: 500px;
    margin: 0 auto;
}

.cdm-single-image figcaption {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cdm-single-image figcaption::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gray-400);
}

/* ========================================
   Image Grid
   ======================================== */
.cdm-image-grid {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.cdm-image-grid figure {
    position: relative;
}

.cdm-image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: bottom;  /* 아래쪽 기준으로 crop */
    border-radius: 8px;
    box-shadow: var(--shadow-mag);
    transition: transform 0.5s ease;
}

.cdm-image-grid img:hover {
    transform: scale(1.02);
}

.cdm-image-grid figcaption {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    text-align: center;
}

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

    .cdm-image-grid img {
        height: 200px;
    }
}

/* ========================================
   Alert Boxes
   ======================================== */
.cdm-alert-box {
    padding: 20px;
    border-radius: 0 12px 12px 0;
    border-left: 4px solid;
    margin: 24px 0;
}

.cdm-alert-box-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cdm-alert-box-icon {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cdm-alert-box-title {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 15px;
    margin-bottom: 6px;
}

.cdm-alert-box-content {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 14px;
}

.cdm-alert-box-content p {
    margin-bottom: 8px;
}

.cdm-alert-box-content p:last-child {
    margin-bottom: 0;
}

.cdm-alert-box.danger {
    background: var(--danger-light);
    border-color: var(--danger);
}

.cdm-alert-box.danger .cdm-alert-box-icon {
    color: var(--danger);
}

.cdm-alert-box.success {
    background: var(--success-light);
    border-color: var(--success);
}

.cdm-alert-box.success .cdm-alert-box-icon {
    color: var(--success);
}

.cdm-alert-box.warning {
    background: #fef3c7;
    border-color: var(--warning);
}

.cdm-alert-box.warning .cdm-alert-box-icon {
    color: var(--warning);
}

.cdm-alert-box.info {
    background: #ebf8ff;
    border-color: var(--brand-blue);
}

.cdm-alert-box.info .cdm-alert-box-icon {
    color: var(--brand-blue);
}

/* ========================================
   Check List
   ======================================== */
.cdm-check-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cdm-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

.cdm-check-list .check-icon {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.cdm-check-list .x-icon {
    color: var(--danger);
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   Dark Card
   ======================================== */
.cdm-dark-card {
    background: var(--gray-900);
    color: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
    margin: 32px 0;
}

.cdm-dark-card-blur-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(0, 71, 171, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    margin-right: -100px;
    margin-top: -100px;
    pointer-events: none;
}

.cdm-dark-card-blur-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 209, 0, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    margin-left: -60px;
    margin-bottom: -60px;
    pointer-events: none;
}

.cdm-dark-card-inner {
    position: relative;
    z-index: 1;
}

.cdm-dark-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.cdm-dark-card-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
}

.cdm-dark-card-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.cdm-dark-card-header-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.2);
}

.cdm-dark-card-content {
    color: var(--gray-300);
    font-size: 14px;
    line-height: 1.8;
}

.cdm-dark-card-content strong {
    color: var(--primary);
}

@media (min-width: 768px) {
    .cdm-dark-card {
        padding: 32px;
    }

    .cdm-dark-card-title {
        font-size: 20px;
    }
}

/* ========================================
   Step Layout
   ======================================== */
.cdm-steps-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cdm-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-200);
}

.cdm-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cdm-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.cdm-step-number-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.cdm-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.cdm-step-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.cdm-step-content p:last-child {
    margin-bottom: 0;
}

.cdm-step-content p strong {
    color: var(--brand-blue);
    font-weight: 700;
}

.cdm-step-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-mag);
}

.cdm-step-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cdm-step-image:hover img {
    transform: scale(1.03);
}

.cdm-step-caption {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cdm-step-caption::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gray-400);
}

@media (min-width: 768px) {
    .cdm-step-image img {
        height: 280px;
    }
}

/* ========================================
   Before After Grid
   ======================================== */
.cdm-before-after-grid {
    display: grid;
    gap: 16px;
    margin: 32px 0;
}

.cdm-before-after-item {
    position: relative;
}

.cdm-before-after-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.cdm-before-after-label.before {
    background: var(--danger);
    color: white;
}

.cdm-before-after-label.after {
    background: var(--brand-blue);
    color: white;
}

.cdm-before-after-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-mag);
}

.cdm-before-after-caption {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gray-500);
}

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

    .cdm-before-after-item img {
        height: 220px;
    }
}

/* ========================================
   Table Styled
   ======================================== */
.cdm-table-wrap {
    margin: 24px 0;
    overflow-x: auto;
}

.cdm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.cdm-table th {
    background: var(--brand-blue);
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    border: 1px solid var(--brand-dark);
    font-size: 12px;
}

.cdm-table td {
    padding: 12px;
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--gray-700);
}

.cdm-table tr:nth-child(even) td {
    background: var(--gray-50);
}

.cdm-table td strong {
    color: var(--gray-900);
}

/* ========================================
   Info Card
   ======================================== */
.cdm-info-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-100);
    margin: 24px 0;
}

.cdm-info-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cdm-info-card-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-700);
}

.cdm-info-card-content strong {
    color: var(--gray-900);
}

/* ========================================
   Highlight Box
   ======================================== */
.cdm-highlight-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    text-align: center;
    margin: 32px 0;
}

.cdm-highlight-box-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.cdm-highlight-box-sub {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========================================
   FAQ Section
   ======================================== */
.cdm-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cdm-faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.cdm-faq-question {
    padding: 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.cdm-faq-question h4 {
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cdm-faq-question-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.cdm-faq-answer {
    padding: 16px;
}

.cdm-faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.cdm-faq-answer p strong {
    color: var(--brand-blue);
}

/* ========================================
   Ending Message
   ======================================== */
.cdm-ending-message {
    position: relative;
    margin: 40px 0;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 0 32px 0 32px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.cdm-ending-message p {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.5;
    margin: 0;
}

.cdm-ending-message p strong {
    color: var(--brand-blue);
}

/* ========================================
   Summary Card
   ======================================== */
.cdm-summary-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-mag);
    border: 1px solid var(--gray-100);
    margin: 32px 0;
}

.cdm-summary-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-blue);
}

.cdm-summary-card-grid {
    display: grid;
    gap: 12px;
}

.cdm-summary-card-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 13px;
}

.cdm-summary-card-row:last-child {
    border-bottom: none;
}

.cdm-summary-card-label {
    font-weight: 700;
    color: var(--brand-blue);
}

.cdm-summary-card-value {
    color: var(--gray-700);
}

/* ========================================
   Related Section
   ======================================== */
.cdm-related-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.cdm-related-header {
    text-align: center;
    margin-bottom: 32px;
}

.cdm-related-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.cdm-related-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.cdm-related-subtitle {
    color: var(--gray-600);
    font-size: 14px;
}

.cdm-related-grid {
    display: grid;
    gap: 20px;
}

.cdm-related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.cdm-related-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--brand-blue);
}

.cdm-related-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.cdm-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cdm-related-card:hover .cdm-related-card-image img {
    transform: scale(1.05);
}

.cdm-related-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-blue);
    color: white;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9999px;
}

.cdm-related-card-content {
    padding: 16px;
}

.cdm-related-card-title {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 15px;
    margin-bottom: 4px;
}

.cdm-related-card-desc {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 12px;
}

.cdm-related-card-link {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cdm-related-card-link .icon {
    font-size: 16px;
}

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

/* ========================================
   CTA Section
   ======================================== */
.cdm-cta-section {
    background: var(--gray-900);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cdm-cta-blur-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: var(--brand-blue);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.cdm-cta-blur-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}

.cdm-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cdm-cta-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cdm-cta-title span {
    color: var(--primary);
}

.cdm-cta-desc {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cdm-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.cdm-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.cdm-cta-btn:active {
    transform: scale(0.95);
}

.cdm-cta-btn.primary {
    background: var(--primary);
    color: var(--gray-900);
    box-shadow: 0 8px 24px rgba(255, 209, 0, 0.3);
}

.cdm-cta-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cdm-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.cdm-cta-btn.secondary:hover {
    background: white;
    color: var(--brand-blue);
    border-color: white;
}

.cdm-cta-btn .icon {
    font-size: 20px;
}

.cdm-cta-note {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 300;
}

@media (min-width: 640px) {
    .cdm-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .cdm-cta-section {
        padding: 100px 20px;
    }

    .cdm-cta-title {
        font-size: 36px;
    }

    .cdm-cta-desc {
        font-size: 17px;
    }
}
