.ccw-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--yellow);
    margin-bottom: 12px;
    display: block;
}
.ccw-section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
}
.ccw-section-heading span { color: var(--yellow); }
.ccw-section-sub {
    font-size: 0.9rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 0;
}


/* ============================================
   HERO
   ============================================ */
.ccw-hero {
    background: var(--bg-light-green);
    padding: 200px 0 90px;
    position: relative;
    overflow: hidden;
}
.ccw-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(58,124,146,0.12);
    pointer-events: none;
    animation: ccwPulse 4s ease-in-out infinite;
}
.ccw-pr-1 { width: 520px; height: 520px; top: -160px; right: -60px; animation-delay: 0s; }
.ccw-pr-2 { width: 360px; height: 360px; top: -80px; right: 80px; animation-delay: 1s; }
.ccw-pr-3 { width: 210px; height: 210px; top: 0px; right: 210px; animation-delay: 2s; }
@keyframes ccwPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

.ccw-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--green);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
}
.ccw-hero-heading span { color: var(--yellow); }
.ccw-hero-sub {
    font-size: 0.92rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.85;
    max-width: 490px;
}
.ccw-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.ccw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 5px 14px;
}
.ccw-badge i { color: var(--yellow); font-size: 0.8rem; }

/* Hero Visual */
.ccw-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
}

/* Writing Editor Card */
.ccw-writing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(58,124,146,0.15);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.ccw-editor-header {
    background: #f7f7f7;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}
.ccw-editor-dots {
    display: flex;
    gap: 6px;
}
.ccw-editor-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ccc;
}
.ccw-editor-dots span:nth-child(1) { background: #ff5f56; }
.ccw-editor-dots span:nth-child(2) { background: #ffbd2e; }
.ccw-editor-dots span:nth-child(3) { background: #27c93f; }
.ccw-editor-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    flex: 1;
}
.ccw-word-count {
    font-size: 0.7rem;
    color: #999;
    font-weight: 500;
}

.ccw-editor-body {
    padding: 28px 24px;
    min-height: 200px;
    position: relative;
}
.ccw-lines-group { margin-bottom: 18px; }
.ccw-line-title {
    height: 14px;
    background: var(--yellow);
    border-radius: 4px;
    width: 55%;
    opacity: 0.5;
    animation: ccwGlow 2s ease-in-out infinite;
}
@keyframes ccwGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}
.ccw-line {
    height: 8px;
    background: var(--green);
    border-radius: 4px;
    margin-bottom: 12px;
    animation: ccwTyping 2.8s ease-in-out infinite;
    opacity: 0.25;
}
.ccw-l-1 { width: 88%; animation-delay: 0s; }
.ccw-l-2 { width: 95%; animation-delay: 0.2s; }
.ccw-l-3 { width: 80%; animation-delay: 0.4s; }
.ccw-l-4 { width: 91%; animation-delay: 0.6s; }
.ccw-l-5 { width: 70%; animation-delay: 0.8s; }
.ccw-l-6 { width: 45%; animation-delay: 1s; }
@keyframes ccwTyping {
    0%, 100% { opacity: 0.15; transform: scaleX(0.97); }
    50% { opacity: 0.38; transform: scaleX(1); }
}
.ccw-typing-cursor {
    position: absolute;
    bottom: 28px;
    left: calc(45% + 24px);
    width: 2px;
    height: 18px;
    background: var(--yellow);
    animation: ccwBlink 1s step-end infinite;
}
@keyframes ccwBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.ccw-editor-footer {
    background: #f0f9f4;
    padding: 12px 20px;
    display: flex;
    gap: 20px;
    border-top: 1px solid #e0e0e0;
}
.ccw-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
}
.ccw-stat i { color: var(--yellow); font-size: 0.7rem; }

/* Floating stat cards */
.ccw-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(58,124,146,0.15);
    z-index: 3;
    white-space: nowrap;
    animation: ccwCardFloat 3.5s ease-in-out infinite;
}
.ccw-fc-1 { left: -20px; top: 25%; animation-delay: 0s; }
.ccw-fc-2 { right: -20px; top: 18%; animation-delay: 0.7s; }
.ccw-fc-3 { right: 10px; bottom: 0; animation-delay: 1.4s; }
@keyframes ccwCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.ccw-fc-icon {
    width: 34px; height: 34px;
    background: var(--bg-light-yellow);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow); font-size: 0.85rem; flex-shrink: 0;
}
.ccw-fc-num {
    font-family: var(--font-heading);
    font-size: 0.95rem; font-weight: 700;
    color: var(--green); line-height: 1;
}
.ccw-fc-lbl { font-size: 0.66rem; color: #999; font-weight: 500; margin-top: 2px; }


/* ============================================
   SERVICES
   ============================================ */
.ccw-services-section {
    padding: 90px 0;
    background: var(--bg-light-yellow);
}
.ccw-service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.ccw-service-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(255,196,12,0.12);
    transform: translateY(-5px);
}
.ccw-service-featured {
    background: var(--green);
    border-color: var(--green);
}
.ccw-service-featured:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 36px rgba(58,124,146,0.2);
}
.ccw-service-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--yellow);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}
.ccw-service-icon {
    width: 52px; height: 52px;
    background: var(--bg-light-yellow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.ccw-service-featured .ccw-service-icon {
    background: rgba(255,196,12,0.15);
    color: var(--yellow);
}
.ccw-service-card:hover .ccw-service-icon,
.ccw-service-featured:hover .ccw-service-icon {
    background: var(--yellow);
    color: var(--white);
}
.ccw-service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}
.ccw-service-featured .ccw-service-title { color: var(--white); }
.ccw-service-desc {
    font-size: 0.85rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.85;
}
.ccw-service-featured .ccw-service-desc { color: rgba(255,255,255,0.72); opacity: 1; }
.ccw-service-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.ccw-service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-paragraph);
}
.ccw-service-featured .ccw-service-list li { color: rgba(255,255,255,0.8); }
.ccw-service-list li i { color: var(--yellow); font-size: 0.7rem; flex-shrink: 0; }


/* ============================================
   CONTENT TYPES / INDUSTRIES
   ============================================ */
.ccw-types-section {
    padding: 90px 0;
    background: var(--white);
}
.ccw-type-card {
    background: var(--bg-light-green);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: default;
}
.ccw-type-card:hover {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 8px 24px rgba(58,124,146,0.15);
    transform: translateY(-4px);
}
.ccw-type-icon {
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 10px;
    transition: all 0.3s;
}
.ccw-type-card:hover .ccw-type-icon { color: var(--white); }
.ccw-type-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    transition: color 0.3s;
}
.ccw-type-card:hover .ccw-type-name { color: var(--white); }


/* ============================================
   PROCESS
   ============================================ */
.ccw-process-section {
    padding: 90px 0;
    background: var(--bg-light-yellow);
}
.ccw-process-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}
.ccw-process-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255,196,12,0.1);
    transform: translateY(-5px);
}
.ccw-process-featured {
    background: var(--green);
    border-color: var(--green);
}
.ccw-process-featured:hover { border-color: var(--yellow); }
.ccw-process-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(255,196,12,0.12);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
}
.ccw-process-featured .ccw-process-num { color: rgba(255,255,255,0.1); }
.ccw-process-icon {
    width: 60px; height: 60px;
    background: var(--bg-light-yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.3rem;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}
.ccw-process-featured .ccw-process-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.ccw-process-card:hover .ccw-process-icon {
    background: var(--yellow);
    color: var(--white);
}
.ccw-process-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}
.ccw-process-featured .ccw-process-title { color: var(--white); }
.ccw-process-desc {
    font-size: 0.83rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    opacity: 0.82;
    margin: 0;
}
.ccw-process-featured .ccw-process-desc { color: rgba(255,255,255,0.7); opacity: 1; }


/* ============================================
   WHY CHOOSE US
   ============================================ */
.ccw-why-section {
    padding: 90px 0;
    background: var(--bg-light-green);
}
.ccw-why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.ccw-why-item { display: flex; gap: 16px; align-items: flex-start; }
.ccw-why-icon {
    width: 46px; height: 46px;
    background: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.ccw-why-item:hover .ccw-why-icon { background: var(--yellow); color: var(--white); }
.ccw-why-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 5px;
}
.ccw-why-desc {
    font-size: 0.83rem;
    color: var(--text-paragraph);
    line-height: 1.7;
    opacity: 0.82;
    margin: 0;
}
.ccw-testimonial-stack { display: flex; flex-direction: column; gap: 18px; }
.ccw-testi-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 26px;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s ease;
}
.ccw-testi-card:hover {
    box-shadow: 0 10px 30px rgba(58,124,146,0.08);
    transform: translateY(-3px);
}
.ccw-testi-featured { background: var(--green); border-color: var(--green); }
.ccw-testi-stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.ccw-testi-text {
    font-size: 0.86rem;
    color: var(--text-paragraph);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
    opacity: 0.85;
}
.ccw-testi-featured .ccw-testi-text { color: rgba(255,255,255,0.8); opacity: 1; }
.ccw-testi-author { display: flex; align-items: center; gap: 12px; }
.ccw-testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ccw-testi-name { font-weight: 600; font-size: 0.86rem; color: var(--green); line-height: 1; }
.ccw-testi-featured .ccw-testi-name { color: var(--white); }
.ccw-testi-role { font-size: 0.74rem; color: #999; margin-top: 3px; }
.ccw-testi-featured .ccw-testi-role { color: rgba(255,255,255,0.5); }


/* ============================================
   PRICING
   ============================================ */
.ccw-pricing-section {
    padding: 90px 0;
    background: var(--white);
}
.ccw-price-card {
    background: var(--bg-light-green);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1.5px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.ccw-price-card:hover {
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(58,124,146,0.12);
    transform: translateY(-5px);
}
.ccw-price-featured {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-8px);
}
.ccw-price-featured:hover {
    border-color: var(--yellow);
    transform: translateY(-14px);
    box-shadow: 0 20px 50px rgba(58,124,146,0.25);
}
.ccw-price-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
}
.ccw-price-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 12px;
    margin-top: 14px;
}
.ccw-price-featured .ccw-price-tag { color: rgba(255,255,255,0.55); }
.ccw-price-val {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}
.ccw-price-featured .ccw-price-val { color: var(--white); }
.ccw-price-val span { font-size: 2.8rem; }
.ccw-price-note { font-size: 0.78rem; color: #999; margin-bottom: 24px; }
.ccw-price-featured .ccw-price-note { color: rgba(255,255,255,0.45); }
.ccw-price-list {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.ccw-price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-paragraph);
    font-weight: 500;
}
.ccw-price-featured .ccw-price-list li { color: rgba(255,255,255,0.8); }
.ccw-price-list li i { font-size: 0.7rem; color: var(--yellow); flex-shrink: 0; }
.ccw-price-list li i.fa-xmark { color: rgba(0,0,0,0.25); }
.ccw-price-featured .ccw-price-list li i.fa-xmark { color: rgba(255,255,255,0.2); }
.ccw-price-list-off { opacity: 0.45; }
.ccw-pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.86rem;
    color: var(--text-paragraph);
    opacity: 0.7;
}
.ccw-pricing-note a { color: var(--green); font-weight: 600; text-decoration: underline; }
.ccw-pricing-note i { color: var(--yellow); margin-right: 4px; }


/* ============================================
   FAQ
   ============================================ */
.ccw-faq-section {
    padding: 90px 0;
    background: var(--bg-light-yellow);
}
.ccw-accordion { display: flex; flex-direction: column; gap: 14px; }
.ccw-acc-item {
    border: 1.5px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: var(--white);
}
.ccw-acc-btn {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    background: var(--white);
    padding: 18px 22px;
    box-shadow: none !important;
}
.ccw-acc-btn:not(.collapsed) {
    background: var(--green);
    color: var(--white);
}
.ccw-acc-btn:not(.collapsed)::after { filter: brightness(0) invert(1); }
.ccw-acc-body {
    font-size: 0.87rem;
    color: var(--text-paragraph);
    line-height: 1.8;
    padding: 16px 22px 20px;
    opacity: 0.85;
    border-top: 1px solid var(--border-color);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .ccw-hero { padding: 120px 0 60px; }
    .ccw-fc-1, .ccw-fc-2, .ccw-fc-3 { display: none; }
    .ccw-price-featured { transform: none; }
    .ccw-price-featured:hover { transform: translateY(-5px); }
}
@media (max-width: 767.98px) {
    .ccw-services-section,
    .ccw-types-section,
    .ccw-process-section,
    .ccw-why-section,
    .ccw-pricing-section,
    .ccw-faq-section { padding: 60px 0; }
    .ccw-writing-card { max-width: 100%; }
}