/* ==========================================
   Change Makers Landing Page Styles
   ========================================== */

/* CSS Variables */
:root {
    --cm-primary: #00ee65;
    --cm-primary-dark: #00da5d;
    --cm-primary-light: #00ff6d;
    --cm-black: #222222;
    --cm-white: #ffffff;
    --cm-gray-100: #f7f8f9;
    --cm-gray-200: #f6f8fa;
    --cm-gray-300: #f2f2f2;
    --cm-gray-400: #eeeeee;
    --cm-gray-500: #adadad;
    --cm-gray-600: #777777;
    --cm-gray-700: #666666;
    --cm-gray-800: #444444;
    --cm-blue-bg: #e9f2ff;
    --cm-dark-bg: #121212;
    --cm-font-pretendard: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    --cm-font-helvetica: 'Helvetica Neue', sans-serif;
    --cm-font-poppins: 'Poppins', sans-serif;
    --cm-font-nanum: 'Nanum Myeongjo', serif;
    --cm-max-width: 1200px;
}

/* ==========================================
   Directors Section (New Design from Figma)
   ========================================== */
.directors {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 20px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.director-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.director-card-inner {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    min-height: 400px;
}

.director-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.director-icon img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.director-icon .placeholder {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-icon .placeholder::before {
    content: '👤';
    font-size: 32px;
}

.director-content {
    flex: 1;
}

.director-role {
    font-family: var(--cm-font-helvetica);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3b82f6;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.director-name {
    font-family: var(--cm-font-pretendard);
    font-size: 28px;
    font-weight: 800;
    color: var(--cm-black);
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.director-desc {
    font-family: var(--cm-font-pretendard);
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.director-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-top: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.director-link .link-text {
    font-family: var(--cm-font-helvetica);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9ca3af;
    text-transform: uppercase;
}

.director-link .link-arrow {
    font-size: 18px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.director-card:hover .director-link .link-arrow {
    transform: translateX(4px);
}

.director-card:hover .director-link .link-text,
.director-card:hover .director-link .link-arrow {
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .directors-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .directors {
        padding: 32px 16px;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .director-card-inner {
        padding: 24px 20px;
        min-height: 350px;
    }
    
    .director-name {
        font-size: 24px;
    }
}

/* Base Styles */
* {
    box-sizing: border-box;
}

/* ==========================================
   Buttons
   ========================================== */
.cm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cm-btn--primary {
    background: var(--cm-primary);
    color: var(--cm-black);
}

.cm-btn--primary:hover {
    background: var(--cm-primary-dark);
}

.cm-btn--white {
    background: var(--cm-white);
    color: var(--cm-black);
    border: 1px solid rgba(238, 238, 238, 0.26);
}

.cm-btn--white:hover {
    background: var(--cm-gray-100);
}

.cm-btn--dark {
    background: var(--cm-black);
    color: var(--cm-white);
}

.cm-btn--dark:hover {
    background: #333;
}

.cm-btn--green {
    background: var(--cm-primary-light);
    color: var(--cm-black);
}

.cm-btn--green:hover {
    background: var(--cm-primary);
}

.cm-btn--rounded {
    border-radius: 100px;
}

.cm-btn--large {
    height: 62px;
    width: 100%;
}

/* ==========================================
   Hero Section
   ========================================== */
.cm-hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}


.cm-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;   
    width: 100%;
    height: 100%;
    background: url("../images/change-makers-main.webp") center/cover no-repeat;
}

.cm-hero__content {
    position: relative;
    z-index: 1;
    width: 540px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 max(20px, calc((100vw - var(--cm-max-width)) / 2)) 0 auto;
}

.cm-hero__title {
    font-family: var(--cm-font-pretendard);
    font-weight: 800;
    font-size: 50px;
    line-height: 1.26;
    color: var(--cm-white);
    margin: 0 0 24px;
}

.cm-hero__desc {
    margin-bottom: 24px;
}

.cm-hero__subtitle {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 20px;
    color: var(--cm-white);
    margin: 0 0 12px;
    letter-spacing: -0.4px;
}

.cm-hero__text {
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.43;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cm-hero__actions {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.cm-hero__actions .cm-btn {
    flex: 1;
    height: 62px;
}

.cm-hero__price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 10px;
    padding: 24px 28px;
}

.cm-hero__price-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cm-hero__earlybird {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 15px;
    color: var(--cm-primary);
    line-height: 1.4;
}

.cm-hero__original-price {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.cm-hero__strikethrough {
    font-family: var(--cm-font-pretendard);
    font-weight: 500;
    font-size: 15px;
    color: var(--cm-white);
    opacity: 0.5;
    text-decoration: line-through;
}

.cm-hero__badge {
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 12px;
    color: var(--cm-white);
    border: 0.4px solid var(--cm-white);
    border-radius: 4px;
    padding: 2px 6px;
}

.cm-hero__final-price {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 26px;
    color: var(--cm-white);
    line-height: 1.4;
}

/* ==========================================
   Why Fail Section
   ========================================== */
.cm-why-fail {
    background: var(--cm-primary-dark);
    padding: 100px 0;
}

.cm-why-fail__inner {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cm-why-fail__header {
    text-align: center;
    margin-bottom: 34px;
}

.cm-why-fail__title {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 45px;
    color: var(--cm-black);
    margin: 0 0 8px;
    line-height: 1.34;
}

.cm-why-fail__subtitle {
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 18px;
    color: var(--cm-black);
    margin: 0;
}

.cm-why-fail__cards {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.cm-fail-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 0 24px;
    border: 7px solid rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    text-align: center;
}

.cm-fail-card__label {
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 20px;
    color: var(--cm-black);
}

.cm-fail-card__x {
    font-family: var(--cm-font-poppins);
    font-weight: 700;
    font-size: 44px;
    color: var(--cm-black);
    line-height: 1;
}

.cm-why-fail__reason {
    position: relative;
    display: flex;
    justify-content: space-between;
    background: var(--cm-white);
    border-radius: 10px;
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.14);
    padding: 50px 79px;
}

.cm-why-fail__reason-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cm-why-fail__reason-label {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 18px;
    color: var(--cm-gray-500);
    margin: 0;
}

.cm-why-fail__reason-title {
    font-family: var(--cm-font-pretendard);
    font-weight: 800;
    font-size: 32px;
    color: var(--cm-black);
    line-height: 1.34;
    letter-spacing: -0.32px;
    margin: 0;
}

.cm-why-fail__reason-right {
    width: 515px;
}

.cm-why-fail__reason-sublabel {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 18px;
    color: var(--cm-gray-500);
    margin: 0 0 13px;
}

.cm-why-fail__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cm-why-fail__list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f7f7f7;
    padding: 24px 30px;
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 20px;
    color: var(--cm-black);
    letter-spacing: -0.4px;
}

.cm-why-fail__illustration {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 143px;
    height: 160px;
    object-fit: contain;
}

/* ==========================================
   Value Section
   ========================================== */
.cm-value {
    background: var(--cm-gray-100);
    padding: 100px 0;
}

.cm-value__inner {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cm-value__title {
    font-family: var(--cm-font-helvetica);
    font-weight: 700;
    font-size: 34px;
    color: #bcbcbc;
    text-align: center;
    line-height: 1.34;
    margin: 0 0 32px;
}

.cm-value__title strong {
    color: var(--cm-black);
}

.cm-value__box {
    background: var(--cm-white);
    border-radius: 10px;
    padding: 59px 80px;
}

.cm-value__content {
    max-width: 438px;
}

.cm-value__text {
    font-family: var(--cm-font-pretendard);
    font-weight: 300;
    font-size: 22px;
    color: var(--cm-gray-800);
    line-height: 1.34;
    letter-spacing: -0.22px;
    margin: 0 0 20px;
}

.cm-value__text strong {
    font-weight: 700;
}

.cm-value__content .cm-btn {
    width: 100%;
    height: 70px;
    margin-top: 10px;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.cm-testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cm-testimonials__title {
    position: relative;
    z-index: 2;
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 45px;
    color: var(--cm-black);
    text-align: center;
    margin: 0 0 32px;
    line-height: 1.34;
}

.cm-testimonials__bg-text {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Satoshi Variable', sans-serif;
    font-weight: 900;
    font-size: 160px;
    color: #ececec;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.cm-testimonials__grid {
    position: relative;
    z-index: 1;
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    min-height: 850px;
}

.cm-testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border: 0.938px solid #f3f4f6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 0.938px 2.813px rgba(0, 0, 0, 0.1), 0px 0.938px 1.875px -0.938px rgba(0, 0, 0, 0.1);
    height: 270px;
}

.cm-testimonial-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    background-image: url('../images/review-femail.png');
    background-size: cover;
    background-position: center;
}

.cm-testimonial-card__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.cm-testimonial-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 23px;
    height: 100%;
    justify-content: flex-end;
}

.cm-testimonial-card__title {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 24px;
    color: var(--cm-white);
    line-height: 1.29;
    margin: 0;
}

.cm-testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cm-testimonial-card__author {
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 15px;
    color: var(--cm-white);
}

.cm-testimonial-card__date {
    font-family: var(--cm-font-pretendard);
    font-weight: 500;
    font-size: 14px;
    color: var(--cm-primary-dark);
}

.cm-testimonial-card__date strong {
    font-weight: 900;
}

/* Testimonial card positions for masonry-like layout */
.cm-testimonial-card--pos1 { grid-column: 1; grid-row: 1 / span 1; }
.cm-testimonial-card--pos2 { grid-column: 2; grid-row: 1 / span 1; margin-top: 45px; }
.cm-testimonial-card--pos3 { grid-column: 3; grid-row: 1 / span 1; }
.cm-testimonial-card--pos4 { grid-column: 4; grid-row: 1 / span 1; margin-top: 45px; }
.cm-testimonial-card--pos5 { grid-column: 1; grid-row: 2; margin-top: 19px; }
.cm-testimonial-card--pos6 { grid-column: 2; grid-row: 2; margin-top: 64px; }
.cm-testimonial-card--pos7 { grid-column: 3; grid-row: 2; margin-top: 19px; }
.cm-testimonial-card--pos8 { grid-column: 4; grid-row: 2; margin-top: 64px; }

.cm-testimonials__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--cm-white) 100%);
    pointer-events: none;
}

/* ==========================================
   Directors Section
   ========================================== */
.cm-directors {
    background: var(--cm-blue-bg);
    padding: 100px 0;
    overflow: hidden;
}

.cm-directors__title {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 45px;
    color: var(--cm-black);
    text-align: center;
    margin: 0 0 57px;
    line-height: 1.34;
}

.cm-directors__slider {
    overflow: hidden;
}

.cm-directors__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: cm-directors-scroll 28s linear infinite;
}

.cm-director-card {
    flex-shrink: 0;
    width: 345px;
    height: 483px;
    background: var(--cm-white);
    border-radius: 10px;
    padding: 42px 34px;
}

@keyframes cm-directors-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.cm-director-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cm-director-card__subtitle {
    font-family: var(--cm-font-pretendard);
    font-weight: 500;
    font-size: 19px;
    color: var(--cm-gray-600);
    margin: 0 0 19px;
    line-height: 1.5;
}

.cm-director-card__text {
    font-family: var(--cm-font-pretendard);
    font-weight: 300;
    font-size: 24px;
    color: var(--cm-black);
    line-height: 1.625;
    margin: 0;
    flex: 1;
}

.cm-director-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cm-gray-300);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: var(--cm-font-helvetica);
    font-weight: 500;
    font-size: 14px;
    color: #002a19;
    text-decoration: none;
    width: fit-content;
    margin: 40px 0;
}

.cm-director-card__link:hover {
    background: #e5e5e5;
}

.cm-director-card__profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cm-director-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 100px;
    object-fit: cover;
}

.cm-director-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cm-director-card__name {
    font-family: var(--cm-font-helvetica);
    font-weight: 500;
    font-size: 18px;
    color: var(--cm-black);
    letter-spacing: -0.2px;
}

.cm-director-card__role {
    font-family: var(--cm-font-helvetica);
    font-weight: 400;
    font-size: 14px;
    color: #555555;
}

/* ==========================================
   CTA Section
   ========================================== */
.cm-cta {
    background: var(--cm-dark-bg);
    padding: 80px 0;
}

.cm-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cm-cta__title {
    font-family: var(--cm-font-helvetica);
    font-weight: 700;
    font-size: 36px;
    color: var(--cm-white);
    line-height: 1.4;
    margin: 0 0 21px;
}

.cm-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cm-cta__price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(0, 255, 109, 0.1), rgba(0, 196, 255, 0.1));
    border: 1px solid var(--cm-primary-light);
    border-radius: 5px;
    padding: 34px 40px;
}

.cm-cta__price-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.cm-cta__earlybird {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 16px;
    color: var(--cm-primary-light);
    line-height: 1.4;
}

.cm-cta__original-price {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.cm-cta__strikethrough {
    font-family: var(--cm-font-pretendard);
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.5;
    text-decoration: line-through;
}

.cm-cta__badge {
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border: 0.4px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding: 2px 6px;
}

.cm-cta__final-price {
    font-family: var(--cm-font-pretendard);
    font-weight: 700;
    font-size: 26px;
    color: var(--cm-white);
    line-height: 1.4;
}

/* ==========================================
   Footer
   ========================================== */
.cm-footer {
    background: var(--cm-white);
    padding: 50px 0;
}

.cm-footer__inner {
    max-width: var(--cm-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cm-footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.cm-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 33px;
    width: 161px;
}

.cm-footer__logo {
    width: 32px;
    height: 26px;
}

.cm-footer__tagline {
    font-family: var(--cm-font-nanum);
    font-weight: 400;
    font-size: 16px;
    color: var(--cm-black);
    line-height: 1.5;
    margin: 0;
}

.cm-footer__links {
    display: flex;
    gap: 120px;
}

.cm-footer__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cm-footer__column a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: var(--cm-black);
    text-decoration: none;
    letter-spacing: -0.25px;
}

.cm-footer__column a:hover {
    text-decoration: underline;
}

.cm-footer__bottom {
    border-top: 1px solid rgba(34, 34, 34, 0.1);
    padding-top: 16px;
}

.cm-footer__copyright {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 11px;
    color: var(--cm-black);
}

/* ==========================================
   Header
   ========================================== */
.cm-header {
    background: #f6f8fa;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cm-header__inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 4px 50px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cm-header__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 890px;
}

.cm-header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    position: relative;
}

.cm-header__logo-icon {
    width: 44px;
    height: 36px;
    flex-shrink: 0;
}

.cm-header__logo-text {
    font-family: 'Sedan SC', serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--cm-black);
    white-space: nowrap;
}

.cm-header__nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cm-header__nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    font-family: var(--cm-font-helvetica);
    font-weight: 400;
    font-size: 17px;
    color: var(--cm-black);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.cm-header__nav-link:hover {
    color: var(--cm-gray-700);
}

.cm-header__nav-link--active {
    font-weight: 700;
}

.cm-header__nav-link--instagram {
    gap: 8px;
}

.cm-header__instagram-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cm-header__right {
    display: flex;
    align-items: center;
    gap: 82px;
}

.cm-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 10px 24px;
    background: var(--cm-black);
    color: var(--cm-white);
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cm-header__btn:hover {
    background: #333;
}

.cm-header__utils {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cm-header__lang {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    cursor: pointer;
}

.cm-header__lang-text {
    font-family: var(--cm-font-helvetica);
    font-weight: 400;
    font-size: 14px;
    color: var(--cm-gray-700);
}

.cm-header__lang-arrow {
    width: 6px;
    height: 3px;
    flex-shrink: 0;
}

.cm-header__theme-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--cm-font-pretendard);
    font-weight: 400;
    font-size: 15px;
    color: var(--cm-gray-700);
    letter-spacing: -0.45px;
    transition: color 0.2s ease;
}

.cm-header__theme-toggle:hover {
    color: var(--cm-black);
}

.cm-header__theme-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cm-header__theme-text {
    white-space: nowrap;
}

/* ==========================================
   Header Instagram Icon (Legacy Support)
   ========================================== */
.sc-header-instagram svg,
.sc-header-instagram .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sc-header-instagram {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1280px) {
    .cm-header__inner {
        padding: 4px 30px;
    }
    
    .cm-header__left {
        width: auto;
        gap: 30px;
    }
    
    .cm-header__nav {
        gap: 30px;
    }
    
    .cm-header__right {
        gap: 40px;
    }
    
    .cm-hero__content {
        margin-right: 50px;
    }
    
    .cm-directors__track {
        padding-left: 20px;
    }
}

@media (max-width: 1024px) {
    .cm-header__inner {
        padding: 4px 20px;
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
    }
    
    .cm-header__left {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
    }
    
    .cm-header__nav {
        gap: 20px;
    }
    
    .cm-header__nav-link {
        padding: 12px;
        font-size: 15px;
    }
    
    .cm-header__right {
        width: 100%;
        justify-content: space-between;
        gap: 20px;
        margin-top: 10px;
    }
    
    .cm-header__btn {
        height: 40px;
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .cm-header__theme-text {
        display: none;
    }
    
    .cm-hero {
        height: auto;
        min-height: 600px;
        padding: 60px 20px;
        justify-content: center;
    }
    
    .cm-hero__content {
        margin-right: 0;
    }
    
    .cm-hero__title {
        font-size: 36px;
    }
    
    .cm-hero__actions {
        flex-direction: column;
    }
    
    .cm-why-fail__reason {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
    }
    
    .cm-why-fail__reason-right {
        width: 100%;
    }
    
    .cm-why-fail__illustration {
        display: none;
    }
    
    .cm-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        min-height: auto;
    }
    
    .cm-testimonial-card--pos1,
    .cm-testimonial-card--pos2,
    .cm-testimonial-card--pos3,
    .cm-testimonial-card--pos4,
    .cm-testimonial-card--pos5,
    .cm-testimonial-card--pos6,
    .cm-testimonial-card--pos7,
    .cm-testimonial-card--pos8 {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
    }
    
    .cm-footer__top {
        flex-direction: column;
        gap: 40px;
    }
    
    .cm-footer__links {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .cm-header__inner {
        padding: 8px 16px;
        height: auto;
    }
    
    .cm-header__left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .cm-header__logo {
        height: auto;
    }
    
    .cm-header__nav {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .cm-header__nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .cm-header__right {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 0;
    }
    
    .cm-header__utils {
        gap: 12px;
    }
    
    .cm-header__lang {
        padding: 0 12px;
    }
    
    .cm-header__theme-toggle {
        padding: 2px 12px;
    }
    
    .cm-hero__title {
        font-size: 28px;
    }
    
    .cm-hero__subtitle {
        font-size: 16px;
    }
    
    .cm-why-fail__title,
    .cm-testimonials__title,
    .cm-directors__title {
        font-size: 28px;
    }
    
    .cm-why-fail__cards {
        flex-direction: column;
    }
    
    .cm-why-fail__reason-title {
        font-size: 24px;
    }
    
    .cm-value__title {
        font-size: 24px;
    }
    
    .cm-value__box {
        padding: 30px 20px;
    }
    
    .cm-value__text {
        font-size: 18px;
    }
    
    .cm-testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .cm-testimonials__bg-text {
        font-size: 60px;
    }
    
    .cm-directors__track {
        padding-left: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .cm-director-card {
        scroll-snap-align: start;
        width: 300px;
    }
    
    .cm-cta__title {
        font-size: 24px;
    }
    
    .cm-cta__price-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cm-cta__price-left {
        text-align: center;
        align-items: center;
    }
    
    .cm-footer__links {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .cm-header__logo-text {
        font-size: 14px;
    }
    
    .cm-header__nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .cm-header__btn {
        height: 36px;
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .cm-header__lang-text {
        font-size: 12px;
    }
    
    .cm-header__theme-icon {
        width: 20px;
        height: 20px;
    }
    
    .cm-hero {
        padding: 40px 16px;
    }
    
    .cm-hero__title {
        font-size: 24px;
    }
    
    .cm-hero__price-box {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cm-hero__price-left {
        align-items: center;
    }
    
    .cm-why-fail,
    .cm-value,
    .cm-testimonials,
    .cm-directors,
    .cm-cta {
        padding: 60px 0;
    }
    
    .cm-why-fail__list-item {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .cm-director-card {
        width: 280px;
        height: auto;
        padding: 30px 24px;
    }
    
    .cm-director-card__text {
        font-size: 20px;
    }
}
