 /* Layer Section */
.cf7s-section-layer {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.cf7s-section-layer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Layer Header */
.cf7s-layer-header {
    text-align: center;
    margin-bottom: 60px;
}

.cf7s-layer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.cf7s-layer-number {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cf7s-layer-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.cf7s-layer-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Problem & Solution Cards */
.cf7s-problem-card,
.cf7s-solution-card {
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf7s-problem-card {
    background: #fff5f5;
    border: 2px solid #ffebee;
}

.cf7s-solution-card {
    background: #f0f7ff;
    border: 2px solid #e3f2fd;
}

.cf7s-problem-card:hover,
.cf7s-solution-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cf7s-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cf7s-icon-problem {
    background: #ffebee;
    color: #d32f2f;
}

.cf7s-icon-solution {
    background: #e3f2fd;
    color: var(--primary-color, #0066cc);
}

.cf7s-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.cf7s-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* Section Background */
.cf7s-section-grey {
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
}

/* How It Works Card */
.cf7s-how-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-how-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cf7s-how-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cf7s-how-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf7s-step {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cf7s-step:hover {
    background: #f0f7ff;
}

.cf7s-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.cf7s-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cf7s-step-content strong {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.cf7s-step-content span {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Problem & Solution Grid */
.cf7s-ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.cf7s-problem-card-alt {
    background: #fff;
    border: 2px solid #ffebee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cf7s-solution-card-alt {
    background: #fff;
    border: 2px solid #e3f2fd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cf7s-highlight-time {
    color: #d32f2f;
    font-weight: 700;
    font-size: 18px;
}

/* Details Grid */
.cf7s-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cf7s-scenario {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
}

.cf7s-scenario-human {
    background: #f1f8f4;
    border: 2px solid #c8e6c9;
}

.cf7s-scenario-bot {
    background: #ffebee;
    border: 2px solid #ffcdd2;
}

.cf7s-scenario-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-scenario-human .cf7s-scenario-icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.cf7s-scenario-bot .cf7s-scenario-icon {
    background: #ffebee;
    color: #c62828;
}

.cf7s-scenario-content {
    flex: 1;
}

.cf7s-scenario-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cf7s-scenario-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 12px 0;
}

.cf7s-scenario-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.cf7s-badge-success {
    background: #c8e6c9;
    color: #2e7d32;
}

.cf7s-badge-danger {
    background: #ffcdd2;
    color: #c62828;
}

.cf7s-scenario-divider {
    height: 2px;
    background: #e0e0e0;
    margin: 20px 0;
}

/* Benefit Box */
.cf7s-benefit-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
}

.cf7s-benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf7s-benefit-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-benefit-content strong {
    font-weight: 700;
}

.cf7s-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.cf7s-feature-badge svg {
    color: #fff;
}

.cf7s-comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cf7s-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-card-header svg {
    color: #9c27b0;
}

.cf7s-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

@media (max-width: 768px) {
    .cf7s-section-layer {
        padding: 60px 0;
    }

    .cf7s-layer-title {
        font-size: 32px;
    }

    .cf7s-layer-subtitle {
        font-size: 16px;
    }

    .cf7s-problem-card,
    .cf7s-solution-card {
        padding: 20px;
    }
}

/* Story Section Container */
.cf7s-section-story {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.cf7s-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.cf7s-section-story .cf7s-story-header {
    text-align: center;
    margin-bottom: 60px;
}

.cf7s-section-story .cf7s-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color, #0066cc);
    margin-bottom: 12px;
}

.cf7s-section-story .cf7s-story-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cf7s-section-story .cf7s-story-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Timeline */
 .cf7s-section-story .cf7s-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

 .cf7s-section-story .cf7s-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color, #0066cc) 0%, #e0e0e0 100%);
}

 .cf7s-section-story .cf7s-timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

 .cf7s-section-story .cf7s-timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Marker */
.cf7s-section-story .cf7s-timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cf7s-section-story .cf7s-timeline-marker-primary {
    border-color: var(--primary-color, #0066cc);
    background: var(--primary-color, #0066cc);
}

.cf7s-section-story .cf7s-year {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-align: center;
}

.cf7s-section-story .cf7s-timeline-marker-primary .cf7s-year {
    color: #fff;
}

/* Timeline Content */
.cf7s-section-story .cf7s-timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf7s-section-story .cf7s-timeline-content:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cf7s-section-story .cf7s-timeline-accent {
    background: #f8f9fa;
    border-left: 4px solid #e0e0e0;
}

.cf7s-section-story .cf7s-timeline-primary {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-left: 4px solid var(--primary-color, #0066cc);
}

 .cf7s-section-story .cf7s-timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

 .cf7s-section-story .cf7s-timeline-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 16px 0;
}

 .cf7s-section-story .cf7s-timeline-text:last-child {
    margin-bottom: 0;
}

 .cf7s-section-story.cf7s-highlight {
    color: #d32f2f;
    font-weight: 600;
}

/* Stat Card */
.cf7s-section-story .cf7s-stat-card {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-color, #0066cc) 0%, #0052a3 100%);
    border-radius: 8px;
    text-align: center;
}

.cf7s-section-story .cf7s-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.cf7s-section-story .cf7s-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Breakthrough Box */
.cf7s-section-story .cf7s-breakthrough-box {
    margin-top: 24px;
    padding: 24px;
    background: #fff;
    border: 2px solid var(--primary-color, #0066cc);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cf7s-icon {
    flex-shrink: 0;
    color: var(--primary-color, #0066cc);
    margin-top: 2px;
}

.cf7s-section-story .cf7s-breakthrough-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Bottom CTA */
.cf7s-section-story .cf7s-story-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.cf7s-section-story .cf7s-cta-text {
    font-size: 20px;
    color: #666;
    margin: 0 0 24px 0;
}

.cf7s-section-story .cf7s-cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color, #0066cc);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cf7s-section-story .cf7s-cta-button:hover {
    background: #0052a3;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cf7s-section-story {
        padding: 60px 0;
    }

    .cf7s-section-story .cf7s-story-title {
        font-size: 32px;
    }

    .cf7s-section-story .cf7s-story-subtitle {
        font-size: 16px;
    }

    .cf7s-section-story .cf7s-timeline::before {
        left: 20px;
    }

    .cf7s-section-story .cf7s-timeline-item {
        padding-left: 60px;
    }

    .cf7s-section-story .cf7s-timeline-marker {
        width: 40px;
        height: 40px;
    }

    .cf7s-section-story .cf7s-year {
        font-size: 11px;
        text-align: center;
    }

    .cf7s-section-story .cf7s-timeline-content {
        padding: 20px;
    }

    .cf7s-section-story .cf7s-timeline-title {
        font-size: 20px;
    }

    .cf7s-section-story .cf7s-stat-number {
        font-size: 36px;
    }

    .cf7s-section-story .cf7s-breakthrough-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cf7s-section-story .cf7s-cta-text {
        font-size: 18px;
    }
}

.cf7s-layer-01 .cf7s-layer-badge {
    background: linear-gradient(135deg, var(--primary-color, #0066cc) 0%, #0052a3 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

/* Main Grid */
.cf7s-layer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Visual Concept */
.cf7s-layer-01 .cf7s-concept-visual {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 2px dashed #e0e0e0;
}

.cf7s-layer-01 .cf7s-visual-row {
    margin-bottom: 20px;
}

.cf7s-layer-01 .cf7s-visual-row:last-child {
    margin-bottom: 0;
}

.cf7s-layer-01 .cf7s-visual-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 12px;
}

.cf7s-layer-01 .cf7s-visual-label svg {
    color: #2e7d32;
}

.cf7s-layer-01 .cf7s-visual-label-bot {
    color: #d32f2f;
}

.cf7s-layer-01 .cf7s-visual-label-bot svg {
    color: #d32f2f;
}

.cf7s-layer-01 .cf7s-visual-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cf7s-layer-01 .cf7s-field-visible,
.cf7s-layer-01 .cf7s-field-trap {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Monaco', 'Courier New', monospace;
}

.cf7s-layer-01 .cf7s-field-visible {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
}

.cf7s-layer-01 .cf7s-field-trap {
    background: #ffebee;
    border: 2px dashed #ef5350;
    color: #d32f2f;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Features Card */
.cf7s-layer-01 .cf7s-features-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cf7s-layer-01 .cf7s-features-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cf7s-layer-01 .cf7s-features-icon {
    color: var(--primary-color, #0066cc);
}

.cf7s-layer-01 .cf7s-features-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Features List */
.cf7s-layer-01 .cf7s-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.cf7s-layer-01 .cf7s-feature-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cf7s-layer-01 .cf7s-feature-item:last-child {
    border-bottom: none;
}

.cf7s-layer-01 .cf7s-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-color, #0066cc);
}

.cf7s-layer-01 .cf7s-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cf7s-layer-01 .cf7s-feature-content strong {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.cf7s-layer-01 .cf7s-feature-content span {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Stats Badge */
.cf7s-layer-01 .cf7s-stats-badge {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-color, #0066cc) 0%, #0052a3 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    justify-content: center;
}

.cf7s-layer-01 .cf7s-stat {
    text-align: center;
}

.cf7s-layer-01 .cf7s-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.cf7s-layer-01 .cf7s-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cf7s-layer-01 .cf7s-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Features Note */
.cf7s-layer-01 .cf7s-features-note {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color, #0066cc);
    margin-top: auto;
}

.cf7s-layer-01 .cf7s-features-note svg {
    flex-shrink: 0;
    color: var(--primary-color, #0066cc);
    margin-top: 2px;
}

.cf7s-layer-01 .cf7s-features-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cf7s-layer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cf7s-layer-01 .cf7s-features-card {
        padding: 24px;
    }

    .cf7s-layer-01 .cf7s-stats-badge {
        flex-direction: column;
        gap: 16px;
    }

    .cf7s-layer-01 .cf7s-stat-divider {
        display: none;
    }

    .cf7s-layer-01 .cf7s-stat-value {
        font-size: 28px;
    }

    .cf7s-layer-01 .cf7s-visual-fields {
        flex-direction: column;
    }
}

/* Layer 02 Badge */
.cf7s-layer-02 .cf7s-layer-badge-02 {
    background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.3);
}

/* Speed Comparison */
.cf7s-layer-02 .cf7s-speed-comparison {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    max-width: 1000px;
    margin: 0 auto 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-02 .cf7s-speed-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-layer-02 .cf7s-speed-header svg {
    color: #7c4dff;
}

.cf7s-layer-02 .cf7s-speed-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cf7s-layer-02 .cf7s-speed-bars {
    margin-bottom: 24px;
}

.cf7s-layer-02 .cf7s-speed-row {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.cf7s-layer-02 .cf7s-speed-row:last-child {
    margin-bottom: 0;
}

.cf7s-layer-02 .cf7s-speed-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
}

.cf7s-layer-02 .cf7s-speed-label svg {
    color: #666;
}

.cf7s-layer-02 .cf7s-speed-bar-container {
    background: #f0f0f0;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.cf7s-layer-02 .cf7s-speed-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    position: relative;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    from { width: 0; }
}

.cf7s-layer-02 .cf7s-speed-bar-human {
    width: 100%;
    background: linear-gradient(90deg, #4caf50 0%, #66bb6a 100%);
}

.cf7s-layer-02 .cf7s-speed-bar-bot {
    width: 3%;
    background: linear-gradient(90deg, #f44336 0%, #ef5350 100%);
    animation: barPulse 2s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cf7s-layer-02 .cf7s-speed-time {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.cf7s-layer-02 .cf7s-speed-status {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.cf7s-layer-02 .cf7s-status-allowed {
    color: #4caf50;
}

.cf7s-layer-02 .cf7s-status-blocked {
    color: #f44336;
}

.cf7s-layer-02 .cf7s-speed-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 4px solid #7c4dff;
}

.cf7s-layer-02 .cf7s-speed-note svg {
    flex-shrink: 0;
    color: #7c4dff;
}

.cf7s-layer-02 .cf7s-speed-note span {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.cf7s-layer-02 .cf7s-how-header svg {
    color: #7c4dff;
}

.cf7s-layer-02 .cf7s-step-number {
    background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
}

/* Example Card */
.cf7s-layer-02 .cf7s-example-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-02 .cf7s-example-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cf7s-layer-02 .cf7s-example-header svg {
    color: #7c4dff;
}

.cf7s-layer-02 .cf7s-example-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Insight Box */
.cf7s-layer-02 .cf7s-insight-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(124, 77, 255, 0.3);
}

.cf7s-layer-02 .cf7s-insight-icon {
    flex-shrink: 0;
    color: #fff;
}

.cf7s-layer-02 .cf7s-insight-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-layer-02 .cf7s-insight-content strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cf7s-ps-grid,
    .cf7s-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-layer-02 .cf7s-speed-comparison {
        padding: 24px;
    }

    .cf7s-layer-02 .cf7s-speed-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cf7s-layer-02 .cf7s-speed-label {
        justify-content: center;
    }

    .cf7s-layer-02 .cf7s-speed-status {
        text-align: center;
    }

    .cf7s-layer-02 .cf7s-how-card,
    .cf7s-layer-02 .cf7s-example-card {
        padding: 24px;
    }

    .cf7s-layer-02 .cf7s-insight-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Layer 03 Badge */
.cf7s-layer-03 .cf7s-layer-badge-03 {
    background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.cf7s-layer-03 .cf7s-highlight-volume {
    color: #ff5722;
    font-weight: 700;
    font-size: 18px;
}

/* Attack Visual */
.cf7s-layer-03 .cf7s-attack-visual {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    max-width: 1000px;
    margin: 0 auto 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-03 .cf7s-attack-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-layer-03 .cf7s-attack-header svg {
    color: #ff6f00;
}

.cf7s-layer-03 .cf7s-attack-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Timeline */
.cf7s-layer-03 .cf7s-attack-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.cf7s-layer-03 .cf7s-timeline-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e0e0e0;
}

.cf7s-layer-03 .cf7s-timeline-blocked {
    background: #fff5f5;
    border-color: #ffcdd2;
}

.cf7s-layer-03 .cf7s-timeline-time {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cf7s-layer-03 .cf7s-attack-requests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.cf7s-layer-03 .cf7s-request {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.cf7s-layer-03 .cf7s-req-allowed {
    background: #c8e6c9;
    color: #2e7d32;
    border: 2px solid #81c784;
}

.cf7s-layer-03 .cf7s-req-blocked {
    background: #ffcdd2;
    color: #c62828;
    border: 2px solid #ef5350;
}

.cf7s-layer-03 .cf7s-more-indicator {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #ffebee;
    color: #d32f2f;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 2px dashed #ef5350;
}

/* Shield */
.cf7s-layer-03 .cf7s-attack-shield {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
}

.cf7s-layer-03 .cf7s-attack-shield svg {
    color: #d32f2f;
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.cf7s-layer-03 .cf7s-shield-text {
    font-size: 18px;
    font-weight: 800;
    color: #d32f2f;
    letter-spacing: 2px;
}

.cf7s-layer-03 .cf7s-timeline-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.cf7s-layer-03 .cf7s-status-label {
    color: #666;
    font-weight: 600;
}

.cf7s-layer-03 .cf7s-status-blocked-label {
    color: #d32f2f;
}

.cf7s-layer-03 .cf7s-status-separator {
    color: #ccc;
}

/* Attack Stats */
.cf7s-layer-03 .cf7s-attack-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cf7s-layer-03 .cf7s-attack-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.cf7s-layer-03 .cf7s-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-layer-03 .cf7s-stat-icon-danger {
    background: #ffebee;
    color: #d32f2f;
}

.cf7s-layer-03 .cf7s-stat-icon-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.cf7s-layer-03 .cf7s-stat-icon-info {
    background: #e3f2fd;
    color: #1976d2;
}

.cf7s-layer-03 .cf7s-stat-content {
    flex: 1;
}

.cf7s-layer-03 .cf7s-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.cf7s-layer-03 .cf7s-stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* How It Works - Updated for Layer 03 */
.cf7s-layer-03 .cf7s-how-card .cf7s-step-number {
    background: linear-gradient(135deg, #ff6f00 0%, #ff5722 100%);
}

.cf7s-layer-03 .cf7s-how-card .cf7s-how-header svg {
    color: #ff6f00;
}

/* Config Box */
.cf7s-layer-03 .cf7s-config-box {
    margin-top: 20px;
    padding: 16px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid #ff6f00;
}

.cf7s-layer-03 .cf7s-config-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 8px;
}

.cf7s-layer-03 .cf7s-config-header svg {
    color: #ff6f00;
}

.cf7s-layer-03 .cf7s-config-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Scenario Card */
.cf7s-layer-03 .cf7s-scenario-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-03 .cf7s-scenario-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cf7s-layer-03 .cf7s-scenario-header svg {
    color: #ff6f00;
}

.cf7s-layer-03 .cf7s-scenario-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cf7s-layer-03 .cf7s-scenario-steps {
    margin: 16px 0;
}

.cf7s-layer-03 .cf7s-scenario-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #444;
}

.cf7s-layer-03 .cf7s-step-badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.cf7s-layer-03 .cf7s-step-danger .cf7s-step-badge {
    background: #ffcdd2;
    color: #c62828;
    text-align: center;
}

.cf7s-layer-03 .cf7s-scenario-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

.cf7s-layer-03 .cf7s-result-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.cf7s-layer-03 .cf7s-result-danger {
    background: #ffebee;
    color: #c62828;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cf7s-details-grid {
        grid-template-columns: 1fr;
    }

    .cf7s-layer-03 .cf7s-attack-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-layer-03 .cf7s-attack-visual {
        padding: 24px;
    }

    .cf7s-layer-03 .cf7s-attack-requests {
        justify-content: center;
    }

    .cf7s-layer-03 .cf7s-scenario-card,
    .cf7s-layer-03 .cf7s-how-card {
        padding: 24px;
    }

    .cf7s-layer-03 .cf7s-benefit-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Layer 04 Badge */
.cf7s-layer-04 .cf7s-layer-badge-04 {
    background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.3);
}

.cf7s-layer-04 .cf7s-highlight-geo {
    color: #d32f2f;
    font-weight: 700;
    font-size: 18px;
}

/* Geo Visual */
.cf7s-layer-04 .cf7s-geo-visual {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    max-width: 1000px;
    margin: 0 auto 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-04 .cf7s-geo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-layer-04 .cf7s-geo-header svg {
    color: #00897b;
}

.cf7s-layer-04 .cf7s-geo-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* World Map */
.cf7s-layer-04 .cf7s-world-map {
    margin-bottom: 28px;
}

.cf7s-layer-04 .cf7s-map-svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.cf7s-layer-04 .cf7s-spam-country {
    fill: #ef5350;
    opacity: 0.7;
    animation: spamPulse 2s ease-in-out infinite;
}

@keyframes spamPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

.cf7s-layer-04 .cf7s-business-location {
    fill: #4caf50;
    stroke: #2e7d32;
    stroke-width: 3;
}

.cf7s-layer-04 .cf7s-map-label {
    fill: #fff;
    font-size: 14px;
    font-weight: 700;
    pointer-events: none;
}

.cf7s-layer-04 .cf7s-spam-arrow {
    stroke: #f44336;
    stroke-width: 2;
    stroke-dasharray: 5,5;
    opacity: 0.6;
    animation: arrowFlow 3s linear infinite;
}

@keyframes arrowFlow {
    to { stroke-dashoffset: -20; }
}

.cf7s-layer-04 .cf7s-map-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.cf7s-layer-04 .cf7s-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.cf7s-layer-04 .cf7s-legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.cf7s-layer-04 .cf7s-legend-business {
    background: #4caf50;
    border: 2px solid #2e7d32;
}

.cf7s-layer-04 .cf7s-legend-spam {
    background: #ef5350;
}

.cf7s-layer-04 .cf7s-legend-arrow {
    width: 30px;
    height: 2px;
    background: #f44336;
    position: relative;
}

.cf7s-layer-04 .cf7s-legend-arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 6px solid #f44336;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Geo Stats */
.cf7s-layer-04 .cf7s-geo-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cf7s-layer-04 .cf7s-geo-stat {
    text-align: center;
    padding: 16px 24px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.cf7s-layer-04 .cf7s-geo-stat-after {
    border-color: #4caf50;
    background: #f1f8f4;
}

.cf7s-layer-04 .cf7s-geo-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.cf7s-layer-04 .cf7s-geo-stat-after .cf7s-geo-stat-value {
    color: #2e7d32;
}

.cf7s-layer-04 .cf7s-geo-stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.cf7s-layer-04 .cf7s-geo-stat-arrow {
    font-size: 32px;
    color: #00897b;
    font-weight: 700;
}

/* How It Works - Layer 04 */
.cf7s-layer-04 .cf7s-how-card .cf7s-step-number {
    background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
}

.cf7s-layer-04 .cf7s-how-card .cf7s-how-header svg {
    color: #00897b;
}

/* Modes Box */
.cf7s-layer-04 .cf7s-modes-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.cf7s-layer-04 .cf7s-mode {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.cf7s-layer-04 .cf7s-mode-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-layer-04 .cf7s-mode-whitelist {
    background: #e8f5e9;
    color: #2e7d32;
}

.cf7s-layer-04 .cf7s-mode-blacklist {
    background: #ffebee;
    color: #c62828;
}

.cf7s-layer-04 .cf7s-mode-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cf7s-layer-04 .cf7s-mode-content strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.cf7s-layer-04 .cf7s-mode-content span {
    font-size: 12px;
    color: #666;
}

/* Examples Card */
.cf7s-layer-04 .cf7s-examples-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-04 .cf7s-examples-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cf7s-layer-04 .cf7s-examples-header svg {
    color: #00897b;
}

.cf7s-layer-04 .cf7s-examples-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Example Boxes */
.cf7s-layer-04 .cf7s-example-box {
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
}

.cf7s-layer-04 .cf7s-example-box:last-child {
    margin-bottom: 0;
}

.cf7s-layer-04 .cf7s-example-local {
    background: linear-gradient(135deg, #f1f8f4 0%, #fff 100%);
    border-color: #c8e6c9;
}

.cf7s-layer-04 .cf7s-example-global {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-color: #bbdefb;
}

.cf7s-layer-04 .cf7s-example-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #00897b;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cf7s-layer-04 .cf7s-example-badge svg {
    color: #fff;
}

.cf7s-layer-04 .cf7s-example-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.cf7s-layer-04 .cf7s-example-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* Configuration */
.cf7s-layer-04 .cf7s-example-config {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    margin-bottom: 16px;
}

.cf7s-layer-04 .cf7s-config-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-bottom: 6px;
}

.cf7s-layer-04 .cf7s-config-value {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cf7s-layer-04 .cf7s-config-mode {
    padding: 4px 10px;
    background: #4caf50;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.cf7s-layer-04 .cf7s-config-mode-blacklist {
    background: #f44336;
}

.cf7s-layer-04 .cf7s-config-sep {
    color: #ccc;
}

.cf7s-layer-04 .cf7s-config-country {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Results */
.cf7s-layer-04 .cf7s-example-results {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.cf7s-layer-04 .cf7s-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.cf7s-layer-04 .cf7s-result-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.cf7s-layer-04 .cf7s-result-value {
    font-size: 18px;
    font-weight: 800;
}

.cf7s-layer-04 .cf7s-value-bad {
    color: #d32f2f;
}

.cf7s-layer-04 .cf7s-value-good {
    color: #2e7d32;
}

.cf7s-layer-04 .cf7s-value-neutral {
    color: #1976d2;
}

.cf7s-layer-04 .cf7s-result-arrow {
    text-align: center;
    font-size: 24px;
    color: #00897b;
    padding: 4px 0;
}

.cf7s-layer-04 .cf7s-result-impact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f1f8f4;
    border-radius: 6px;
    margin-top: 12px;
    font-size: 13px;
    color: #2e7d32;
}

.cf7s-layer-04 .cf7s-result-impact svg {
    flex-shrink: 0;
    color: #2e7d32;
}

/* Benefit Box - Geo */
.cf7s-layer-04 .cf7s-benefit-geo {
    background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
    box-shadow: 0 8px 24px rgba(0, 137, 123, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cf7s-details-grid {
        grid-template-columns: 1fr;
    }

    .cf7s-layer-04 .cf7s-modes-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-layer-04 .cf7s-geo-visual {
        padding: 24px;
    }

    .cf7s-layer-04 .cf7s-geo-stats {
        flex-direction: column;
    }

    .cf7s-layer-04 .cf7s-geo-stat-arrow {
        transform: rotate(90deg);
    }

    .cf7s-layer-04 .cf7s-examples-card,
    .cf7s-layer-04 .cf7s-how-card {
        padding: 24px;
    }

    .cf7s-layer-04 .cf7s-example-box {
        padding: 20px;
    }
}

/* Layer 05 Badge */
.cf7s-layer-05 .cf7s-layer-badge-05 {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.cf7s-layer-05 .cf7s-highlight-ip {
    color: #e91e63;
    font-weight: 700;
}

/* Patterns Showcase */
.cf7s-layer-05 .cf7s-patterns-showcase {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    max-width: 1200px;
    margin: 0 auto 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-05 .cf7s-patterns-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-layer-05 .cf7s-patterns-header svg {
    color: #e91e63;
}

.cf7s-layer-05 .cf7s-patterns-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Patterns Grid */
.cf7s-layer-05 .cf7s-patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.cf7s-layer-05 .cf7s-pattern-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.cf7s-layer-05 .cf7s-pattern-card:hover {
    border-color: #e91e63;
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.15);
}

.cf7s-layer-05 .cf7s-pattern-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cf7s-layer-05 .cf7s-pattern-icon-exact {
    background: #e3f2fd;
    color: #1976d2;
}

.cf7s-layer-05 .cf7s-pattern-icon-wildcard {
    background: #fff3e0;
    color: #f57c00;
}

.cf7s-layer-05 .cf7s-pattern-icon-cidr {
    background: #f3e5f5;
    color: #7b1fa2;
}

.cf7s-layer-05 .cf7s-pattern-icon-range {
    background: #e8f5e9;
    color: #388e3c;
}

.cf7s-layer-05 .cf7s-pattern-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.cf7s-layer-05 .cf7s-pattern-example {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #e91e63;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #ffebee;
}

.cf7s-layer-05 .cf7s-pattern-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px 0;
}

.cf7s-layer-05 .cf7s-pattern-scope {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.cf7s-layer-05 .cf7s-scope-label {
    color: #999;
    font-weight: 600;
}

.cf7s-layer-05 .cf7s-scope-value {
    color: #1a1a1a;
    font-weight: 700;
}

.cf7s-layer-05 .cf7s-patterns-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.cf7s-layer-05 .cf7s-patterns-note svg {
    flex-shrink: 0;
    color: #e91e63;
}

.cf7s-layer-05 .cf7s-patterns-note span {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Scenarios Grid */
.cf7s-layer-05 .cf7s-scenarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cf7s-layer-05 .cf7s-scenario-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-layer-05 .cf7s-scenario-targeted {
    border-top: 4px solid #1976d2;
}

.cf7s-layer-05 .cf7s-scenario-botnet {
    border-top: 4px solid #f57c00;
}

.cf7s-layer-05 .cf7s-scenario-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e91e63;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cf7s-layer-05 .cf7s-scenario-badge svg {
    color: #fff;
}

.cf7s-layer-05 .cf7s-scenario-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.cf7s-layer-05 .cf7s-scenario-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* Attack Timeline */
.cf7s-layer-05 .cf7s-attack-timeline-ip {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.cf7s-layer-05 .cf7s-timeline-step {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.cf7s-layer-05 .cf7s-timeline-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-layer-05 .cf7s-timeline-icon-danger {
    background: #ffebee;
    color: #d32f2f;
}

.cf7s-layer-05 .cf7s-timeline-icon-action {
    background: #e3f2fd;
    color: #1976d2;
}

.cf7s-layer-05 .cf7s-timeline-icon-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.cf7s-layer-05 .cf7s-timeline-content {
    flex: 1;
}

.cf7s-layer-05 .cf7s-timeline-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cf7s-layer-05 .cf7s-timeline-detail {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.cf7s-layer-05 .cf7s-timeline-detail code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    color: #e91e63;
    font-weight: 600;
}

.cf7s-layer-05 .cf7s-timeline-success {
    color: #2e7d32;
    font-weight: 600;
}

.cf7s-layer-05 .cf7s-timeline-arrow {
    text-align: center;
    font-size: 24px;
    color: #e91e63;
    padding: 8px 0;
    font-weight: 700;
}

/* Code Block */
.cf7s-layer-05 .cf7s-code-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #e91e63;
}

.cf7s-layer-05 .cf7s-code-block code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #e91e63;
    flex: 1;
}

.cf7s-layer-05 .cf7s-code-label {
    padding: 4px 10px;
    background: #e91e63;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* IP Cluster */
.cf7s-layer-05 .cf7s-ip-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.cf7s-layer-05 .cf7s-ip-badge {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 11px;
    padding: 4px 8px;
    background: #ffebee;
    color: #d32f2f;
    border-radius: 4px;
    border: 1px solid #ef9a9a;
}

.cf7s-layer-05 .cf7s-ip-more {
    font-size: 11px;
    padding: 4px 8px;
    background: #f44336;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
}

/* Scenario Stats */
.cf7s-layer-05 .cf7s-scenario-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cf7s-layer-05 .cf7s-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.cf7s-layer-05 .cf7s-stat-label {
    color: #666;
    font-weight: 600;
}

.cf7s-layer-05 .cf7s-stat-value {
    color: #1a1a1a;
    font-weight: 700;
}

.cf7s-layer-05 .cf7s-stat-success {
    color: #2e7d32;
}

.cf7s-layer-05 .cf7s-stat-warning {
    color: #f57c00;
}

/* Power Tip */
.cf7s-layer-05 .cf7s-power-tip {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

.cf7s-layer-05 .cf7s-tip-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf7s-layer-05 .cf7s-tip-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-layer-05 .cf7s-tip-content strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cf7s-layer-05 .cf7s-scenarios-grid {
        grid-template-columns: 1fr;
    }

    .cf7s-layer-05 .cf7s-patterns-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .cf7s-layer-05 .cf7s-patterns-showcase {
        padding: 24px;
    }

    .cf7s-layer-05 .cf7s-scenario-box {
        padding: 24px;
    }

    .cf7s-layer-05 .cf7s-power-tip {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .cf7s-layer-05 .cf7s-patterns-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Styles */
.cf7s-section-data {
    padding: 80px 0;
}

/* Header */
.cf7s-section-data .cf7s-data-header {
    text-align: center;
    margin-bottom: 50px;
}

.cf7s-section-data .cf7s-data-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cf7s-section-data .cf7s-data-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Alert */
.cf7s-section-data .cf7s-problem-alert {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #fff5f5;
    border: 2px solid #ffcdd2;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
}

.cf7s-section-data .cf7s-alert-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #ffebee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d32f2f;
}

.cf7s-section-data .cf7s-alert-content {
    flex: 1;
}

.cf7s-section-data .cf7s-alert-title {
    font-size: 20px;
    font-weight: 700;
    color: #c62828;
    margin: 0 0 12px 0;
}

.cf7s-section-data .cf7s-alert-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.cf7s-section-data .cf7s-alert-highlight {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #9c27b0;
}

.cf7s-section-data .cf7s-alert-highlight svg {
    flex-shrink: 0;
    color: #9c27b0;
    margin-top: 2px;
}

.cf7s-section-data .cf7s-alert-highlight p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Comparison Box */
.cf7s-section-data .cf7s-comparison-box {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-data .cf7s-comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-section-data .cf7s-comparison-header svg {
    color: #9c27b0;
}

.cf7s-section-data .cf7s-comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cf7s-section-data .cf7s-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cf7s-section-data .cf7s-comparison-card {
    padding: 28px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.cf7s-section-data .cf7s-comparison-bad {
    background: #fff5f5;
    border-color: #ffcdd2;
}

.cf7s-section-data .cf7s-comparison-good {
    background: #f1f8f4;
    border-color: #c8e6c9;
}

.cf7s-section-data .cf7s-comparison-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cf7s-section-data .cf7s-icon-bad {
    background: #ffebee;
    color: #d32f2f;
}

.cf7s-section-data .cf7s-icon-good {
    background: #e8f5e9;
    color: #2e7d32;
}

.cf7s-section-data .cf7s-comparison-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.cf7s-section-data .cf7s-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf7s-section-data .cf7s-comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.cf7s-section-data .cf7s-list-bad svg {
    flex-shrink: 0;
    color: #d32f2f;
    margin-top: 2px;
}

.cf7s-section-data .cf7s-list-good svg {
    flex-shrink: 0;
    color: #2e7d32;
    margin-top: 2px;
}

/* Features Grid */
.cf7s-section-data .cf7s-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cf7s-section-data .cf7s-saved-data-card,
.cf7s-section-data .cf7s-export-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

/* Data Items */
.cf7s-section-data .cf7s-data-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cf7s-section-data .cf7s-data-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.cf7s-section-data .cf7s-data-item:hover {
    background: #f0f7ff;
}

.cf7s-section-data .cf7s-data-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e3f2fd;
    color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-section-data .cf7s-data-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.cf7s-section-data .cf7s-data-content strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.cf7s-section-data .cf7s-data-content span {
    font-size: 13px;
    color: #666;
}

/* Export Formats */
.cf7s-section-data .cf7s-export-formats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.cf7s-section-data .cf7s-format-card {
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cf7s-section-data .cf7s-format-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cf7s-section-data .cf7s-format-csv {
    background: #fff8e1;
    border-color: #fff176;
}

.cf7s-section-data .cf7s-format-csv:hover {
    border-color: #ffd54f;
}

.cf7s-section-data .cf7s-format-excel {
    background: #e8f5e9;
    border-color: #81c784;
}

.cf7s-section-data .cf7s-format-excel:hover {
    border-color: #66bb6a;
}

.cf7s-section-data .cf7s-format-json {
    background: #e3f2fd;
    border-color: #64b5f6;
}

.cf7s-section-data .cf7s-format-json:hover {
    border-color: #42a5f5;
}

.cf7s-section-data .cf7s-format-pdf {
    background: #ffebee;
    border-color: #ef9a9a;
}

.cf7s-section-data .cf7s-format-pdf:hover {
    border-color: #e57373;
}

.cf7s-section-data .cf7s-format-icon {
    margin: 0 auto 12px;
    color: #666;
}

.cf7s-section-data .cf7s-format-csv .cf7s-format-icon { color: #f57f17; }
.cf7s-section-data .cf7s-format-excel .cf7s-format-icon { color: #388e3c; }
.cf7s-section-data .cf7s-format-json .cf7s-format-icon { color: #1976d2; }
.cf7s-section-data .cf7s-format-pdf .cf7s-format-icon { color: #c62828; }

.cf7s-section-data .cf7s-format-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cf7s-section-data .cf7s-format-desc {
    font-size: 13px;
    color: #666;
}

.cf7s-section-data .cf7s-export-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cf7s-section-data .cf7s-export-note svg {
    flex-shrink: 0;
    color: #9c27b0;
}

.cf7s-section-data .cf7s-export-note p {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Value Box */
.cf7s-section-data .cf7s-value-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(156, 39, 176, 0.3);
}

.cf7s-section-data .cf7s-value-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf7s-section-data .cf7s-value-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-section-data .cf7s-value-content strong {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cf7s-section-data .cf7s-comparison-grid,
    .cf7s-section-data .cf7s-features-grid {
        grid-template-columns: 1fr;
    }

    .cf7s-section-data .cf7s-export-formats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-section-data .cf7s-section-data {
        padding: 60px 0;
    }

    .cf7s-section-data .cf7s-data-title {
        font-size: 32px;
    }

    .cf7s-section-data .cf7s-problem-alert {
        flex-direction: column;
        padding: 24px;
    }

    .cf7s-section-data .cf7s-comparison-box,
    .cf7s-section-data .cf7s-saved-data-card,
    .cf7s-section-data .cf7s-export-card {
        padding: 24px;
    }

    .cf7s-section-data .cf7s-value-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Webhooks Section */
.cf7s-section-webhooks {
    padding: 80px 0;
}

/* Header */
.cf7s-section-webhooks .cf7s-webhooks-header {
    text-align: center;
    margin-bottom: 50px;
}

.cf7s-section-webhooks .cf7s-badge-webhooks {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.cf7s-section-webhooks .cf7s-webhooks-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cf7s-section-webhooks .cf7s-webhooks-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.cf7s-section-webhooks .cf7s-highlight-webhook {
    color: #00bcd4;
    font-weight: 700;
}

/* Ecosystem Visual */
.cf7s-section-webhooks .cf7s-ecosystem-visual {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-webhooks .cf7s-ecosystem-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-section-webhooks .cf7s-ecosystem-header svg {
    color: #00bcd4;
}

.cf7s-section-webhooks .cf7s-ecosystem-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Ecosystem Diagram */
.cf7s-section-webhooks .cf7s-ecosystem-diagram {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 28px;
}

.cf7s-section-webhooks .cf7s-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cf7s-section-webhooks .cf7s-connection-line {
    stroke: #00bcd4;
    stroke-width: 2;
    opacity: 0.3;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -100; }
}

/* Center Node */
.cf7s-section-webhooks .cf7s-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.4);
    z-index: 10;
}

.cf7s-section-webhooks .cf7s-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #00bcd4;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cf7s-section-webhooks .cf7s-node-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    z-index: 2;
}

.cf7s-section-webhooks .cf7s-node-content span {
    font-size: 13px;
    font-weight: 700;
}

 /* App Nodes */
 .webhooks-app-node {
     position: absolute;
     width: 90px;
     height: 80px;
     background: #fff;
     border: 2px solid #00bcd4;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 8px;
     font-size: 11px;
     font-weight: 700;
     color: #00bcd4;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     cursor: pointer;
     will-change: box-shadow, background;
     backface-visibility: hidden;
 }

 .webhooks-app-node:hover {
     box-shadow: 0 8px 16px rgba(0, 188, 212, 0.3);
     background: #e0f7fa;
     border-color: #0097a7;
 }

 .webhooks-app-name {
     text-align: center;
     word-break: break-word;
     line-height: 1.2;
 }

 .webhooks-app-name {
     text-align: center;
 }

 /* Position nodes in circle - optimized with better spacing */
 .webhooks-node-1 { top: 8%; left: 50%; transform: translate(-50%, -50%); }
 .webhooks-node-2 { top: 22%; right: 8%; transform: translate(0, -50%); }
 .webhooks-node-3 { top: 50%; right: 2%; transform: translate(0, -50%); }
 .webhooks-node-4 { bottom: 22%; right: 8%; transform: translate(0, 50%); }
 .webhooks-node-5 { bottom: 8%; left: 50%; transform: translate(-50%, 50%); }
 .webhooks-node-6 { bottom: 22%; left: 8%; transform: translate(0, 50%); }
 .webhooks-node-7 { top: 50%; left: 2%; transform: translate(0, -50%); }
 .webhooks-node-8 { top: 22%; left: 8%; transform: translate(0, -50%); }

 .webhooks-ecosystem-note {
     padding: 16px 20px;
     background: #e0f7fa;
     border-radius: 8px;
     text-align: center;
     font-size: 14px;
     color: #00838f;
 }

 .webhooks-ecosystem-note strong {
     font-weight: 700;
 }

/* Integrations Grid */
.cf7s-section-webhooks .cf7s-integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cf7s-section-webhooks .cf7s-categories-card,
.cf7s-section-webhooks .cf7s-usecase-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

/* Categories */
.cf7s-section-webhooks .cf7s-category-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf7s-section-webhooks .cf7s-category-group {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cf7s-section-webhooks .cf7s-category-group:hover {
    background: #e0f7fa;
}

.cf7s-section-webhooks .cf7s-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-section-webhooks .cf7s-icon-automation { background: #e3f2fd; color: #1976d2; }
.cf7s-section-webhooks .cf7s-icon-crm { background: #f3e5f5; color: #7b1fa2; }
.cf7s-section-webhooks .cf7s-icon-communication { background: #e8f5e9; color: #388e3c; }
.cf7s-section-webhooks .cf7s-icon-data { background: #fff3e0; color: #f57c00; }

.cf7s-section-webhooks .cf7s-category-content {
    flex: 1;
}

.cf7s-section-webhooks .cf7s-category-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.cf7s-section-webhooks .cf7s-category-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Use Case */
.cf7s-section-webhooks .cf7s-usecase-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf7s-section-webhooks .cf7s-usecase-problem,
.cf7s-section-webhooks .cf7s-usecase-solution {
    padding: 20px;
    border-radius: 8px;
}

.cf7s-section-webhooks .cf7s-usecase-problem {
    background: #fff5f5;
    border: 2px solid #ffcdd2;
}

.cf7s-section-webhooks .cf7s-usecase-solution {
    background: #f0f7ff;
    border: 2px solid #bbdefb;
}

.cf7s-section-webhooks .cf7s-usecase-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cf7s-section-webhooks .cf7s-usecase-problem .cf7s-usecase-label svg { color: #d32f2f; }
.cf7s-section-webhooks .cf7s-usecase-solution .cf7s-usecase-label svg { color: #1976d2; }

.cf7s-section-webhooks .cf7s-usecase-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.cf7s-section-webhooks .cf7s-time-highlight {
    font-weight: 700;
    color: #d32f2f;
}

.cf7s-section-webhooks .cf7s-time-instant {
    font-weight: 700;
    color: #2e7d32;
}

.cf7s-section-webhooks .cf7s-usecase-arrow {
    text-align: center;
}

.cf7s-section-webhooks .cf7s-usecase-arrow svg {
    color: #00bcd4;
}

/* Workflow Steps */
.cf7s-section-webhooks .cf7s-workflow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cf7s-section-webhooks .cf7s-workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.cf7s-section-webhooks .cf7s-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00bcd4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.cf7s-section-webhooks .cf7s-step-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.cf7s-section-webhooks .cf7s-workflow-arrow {
    font-size: 24px;
    color: #00bcd4;
    font-weight: 700;
}

.cf7s-section-webhooks .cf7s-usecase-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 8px;
    border: 2px solid #c8e6c9;
}

.cf7s-section-webhooks .cf7s-usecase-result svg {
    flex-shrink: 0;
    color: #2e7d32;
}

.cf7s-section-webhooks .cf7s-result-content {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* CTA */
.cf7s-section-webhooks .cf7s-webhooks-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.3);
}

.cf7s-section-webhooks .cf7s-cta-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf7s-section-webhooks .cf7s-cta-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-section-webhooks .cf7s-cta-content strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .cf7s-section-webhooks .cf7s-integrations-grid {
        grid-template-columns: 1fr;
    }

    .cf7s-section-webhooks .cf7s-ecosystem-diagram {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .cf7s-section-webhooks {
        padding: 60px 0;
    }

    .cf7s-section-webhooks .cf7s-webhooks-title {
        font-size: 32px;
    }

    .cf7s-section-webhooks .cf7s-ecosystem-visual,
    .cf7s-section-webhooks .cf7s-categories-card,
    .cf7s-section-webhooks .cf7s-usecase-card {
        padding: 24px;
    }

    .cf7s-section-webhooks .cf7s-workflow-steps {
        flex-direction: column;
    }

    .cf7s-section-webhooks .cf7s-workflow-arrow {
        transform: rotate(90deg);
    }

    .cf7s-section-webhooks .cf7s-webhooks-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .cf7s-section-webhooks .cf7s-ecosystem-diagram {
        height: 600px;
    }
}

/* Recovery Section */
.cf7s-section-recovery {
    padding: 80px 0;
}

/* Header */
.cf7s-section-recovery .cf7s-recovery-header {
    text-align: center;
    margin-bottom: 50px;
}

.cf7s-section-recovery .cf7s-badge-recovery {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.cf7s-section-recovery .cf7s-recovery-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cf7s-section-recovery .cf7s-recovery-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.cf7s-section-recovery .cf7s-highlight-recovery {
    color: #ff9800;
    font-weight: 700;
    font-size: 18px;
}

/* Abandonment Visual */
.cf7s-section-recovery .cf7s-abandonment-visual {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-recovery .cf7s-visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-section-recovery .cf7s-visual-header svg {
    color: #ff9800;
}

.cf7s-section-recovery .cf7s-visual-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Funnel Diagram */
.cf7s-section-recovery .cf7s-funnel-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.cf7s-section-recovery .cf7s-funnel-stage {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf7s-section-recovery .cf7s-stage-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cf7s-section-recovery .cf7s-stage-start .cf7s-stage-bar {
    background: linear-gradient(90deg, #4caf50 0%, #66bb6a 100%);
    color: #fff;
}

.cf7s-section-recovery .cf7s-bar-abandon {
    background: linear-gradient(90deg, #f44336 0%, #ef5350 100%);
    color: #fff;
}

.cf7s-section-recovery .cf7s-bar-complete {
    background: linear-gradient(90deg, #2196f3 0%, #42a5f5 100%);
    color: #fff;
}

.cf7s-section-recovery .cf7s-stage-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cf7s-section-recovery .cf7s-stage-value {
    font-size: 18px;
    font-weight: 800;
}

/* Abandon Reasons */
.cf7s-section-recovery .cf7s-abandon-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 24px;
}

.cf7s-section-recovery .cf7s-reason-tag {
    padding: 6px 12px;
    background: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #c62828;
}

/* Stat Highlight */
.cf7s-section-recovery .cf7s-stat-highlight {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.cf7s-section-recovery .cf7s-stat-highlight svg {
    flex-shrink: 0;
    color: #ff9800;
    margin-top: 2px;
}

.cf7s-section-recovery .cf7s-stat-content {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* Recovery Grid */
.cf7s-section-recovery .cf7s-recovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cf7s-section-recovery .cf7s-how-works-card,
.cf7s-section-recovery .cf7s-usecase-card-recovery {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

/* Process Timeline */
.cf7s-section-recovery .cf7s-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.cf7s-section-recovery .cf7s-process-step {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cf7s-section-recovery .cf7s-process-step:hover {
    background: #fff8e1;
}

.cf7s-section-recovery .cf7s-process-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-section-recovery .cf7s-icon-active {
    background: #fff3e0;
    color: #ff9800;
}

.cf7s-section-recovery .cf7s-process-content {
    flex: 1;
}

.cf7s-section-recovery .cf7s-process-content strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cf7s-section-recovery .cf7s-process-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cf7s-section-recovery .cf7s-tech-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.cf7s-section-recovery .cf7s-tech-note svg {
    flex-shrink: 0;
    color: #4caf50;
}

.cf7s-section-recovery .cf7s-tech-note p {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Story Content */
.cf7s-section-recovery .cf7s-story-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cf7s-section-recovery .cf7s-story-company {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
    border: 2px solid #bbdefb;
}

.cf7s-section-recovery .cf7s-company-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e3f2fd;
    color: #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-section-recovery .cf7s-company-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cf7s-section-recovery .cf7s-company-info strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.cf7s-section-recovery .cf7s-company-info span {
    font-size: 13px;
    color: #666;
}

.cf7s-section-recovery .cf7s-story-problem,
.cf7s-section-recovery .cf7s-story-action {
    padding: 16px 20px;
    border-radius: 8px;
}

.cf7s-section-recovery .cf7s-story-problem {
    background: #fff5f5;
    border-left: 4px solid #f44336;
}

.cf7s-section-recovery .cf7s-story-action {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.cf7s-section-recovery .cf7s-story-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.cf7s-section-recovery .cf7s-story-problem .cf7s-story-label svg { color: #f44336; }
.cf7s-section-recovery .cf7s-story-action .cf7s-story-label svg { color: #2196f3; }

.cf7s-section-recovery .cf7s-story-problem p,
.cf7s-section-recovery .cf7s-story-action p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* Discovery Section */
.cf7s-section-recovery .cf7s-story-discovery {
    padding: 20px;
    background: #fff8e1;
    border-radius: 8px;
    border: 2px solid #ffecb3;
}

.cf7s-section-recovery .cf7s-discovery-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #f57c00;
    margin-bottom: 12px;
}

.cf7s-section-recovery .cf7s-discovery-header svg {
    color: #ff9800;
}

.cf7s-section-recovery .cf7s-story-discovery > p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* Form Mockup */
.cf7s-section-recovery .cf7s-form-mockup {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 2px solid #e0e0e0;
}

.cf7s-section-recovery .cf7s-form-field {
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
}

.cf7s-section-recovery .cf7s-form-field:last-child {
    margin-bottom: 0;
}

.cf7s-section-recovery .cf7s-field-filled {
    background: #f1f8f4;
    border: 2px solid #c8e6c9;
}

.cf7s-section-recovery .cf7s-field-abandon {
    background: #ffebee;
    border: 2px dashed #ef5350;
    animation: abandonPulse 2s ease-in-out infinite;
}

@keyframes abandonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cf7s-section-recovery .cf7s-form-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 6px;
}

.cf7s-section-recovery .cf7s-required {
    color: #f44336;
}

.cf7s-section-recovery .cf7s-field-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.cf7s-section-recovery .cf7s-field-empty {
    color: #d32f2f;
    font-style: italic;
}

/* Story Result */
.cf7s-section-recovery .cf7s-story-result {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 8px;
    border: 2px solid #c8e6c9;
}

.cf7s-section-recovery .cf7s-story-result > svg {
    flex-shrink: 0;
    color: #2e7d32;
}

.cf7s-section-recovery .cf7s-result-stats {
    flex: 1;
}

.cf7s-section-recovery .cf7s-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #c8e6c9;
}

.cf7s-section-recovery .cf7s-result-item:last-of-type {
    border-bottom: none;
    margin-bottom: 12px;
}

.cf7s-section-recovery .cf7s-result-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.cf7s-section-recovery .cf7s-result-value {
    font-size: 20px;
    font-weight: 800;
}

.cf7s-section-recovery .cf7s-value-improved {
    color: #2e7d32;
}

.cf7s-section-recovery .cf7s-result-impact {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    padding-top: 8px;
}

/* CTA */
.cf7s-section-recovery .cf7s-recovery-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3);
}

.cf7s-section-recovery .cf7s-cta-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf7s-section-recovery .cf7s-cta-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-section-recovery .cf7s-cta-content strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .cf7s-section-recovery .cf7s-recovery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-section-recovery {
        padding: 60px 0;
    }

    .cf7s-section-recovery .cf7s-recovery-title {
        font-size: 32px;
    }

    .cf7s-section-recovery .cf7s-abandonment-visual,
    .cf7s-section-recovery .cf7s-how-works-card,
    .cf7s-section-recovery .cf7s-usecase-card-recovery {
        padding: 24px;
    }

    .cf7s-section-recovery .cf7s-abandon-reasons {
        padding-left: 0;
    }

    .cf7s-section-recovery .cf7s-recovery-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Mailchimp Section */
.cf7s-section-mailchimp {
    padding: 80px 0;
}

/* Header */
.cf7s-section-mailchimp .cf7s-mailchimp-header {
    text-align: center;
    margin-bottom: 50px;
}

.cf7s-section-mailchimp .cf7s-badge-mailchimp {
    background: linear-gradient(135deg, #FFE01B 0%, #FFC000 100%);
    color: #241C15;
    box-shadow: 0 4px 12px rgba(255, 224, 27, 0.4);
}

.cf7s-section-mailchimp .cf7s-badge-mailchimp svg {
    color: #241C15;
}

.cf7s-section-mailchimp .cf7s-mailchimp-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cf7s-section-mailchimp .cf7s-mailchimp-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.cf7s-section-mailchimp .cf7s-highlight-mailchimp {
    color: #FFC000;
    font-weight: 700;
}

/* Workflow Comparison */
.cf7s-section-mailchimp .cf7s-workflow-comparison {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-mailchimp .cf7s-comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-section-mailchimp .cf7s-comparison-header svg {
    color: #FFC000;
}

.cf7s-section-mailchimp .cf7s-comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cf7s-section-mailchimp .cf7s-workflows-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cf7s-section-mailchimp .cf7s-workflow-card {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.cf7s-section-mailchimp .cf7s-workflow-manual {
    background: #fff5f5;
    border-color: #ffcdd2;
}

.cf7s-section-mailchimp .cf7s-workflow-auto {
    background: #f1f8f4;
    border-color: #c8e6c9;
}

.cf7s-section-mailchimp .cf7s-workflow-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.cf7s-section-mailchimp .cf7s-workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cf7s-section-mailchimp .cf7s-workflow-step {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.cf7s-section-mailchimp .cf7s-step-auto {
    border-color: #81c784;
    background: #fff;
}

.cf7s-section-mailchimp .cf7s-step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #666;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.cf7s-section-mailchimp .cf7s-step-auto .cf7s-step-number {
    background: #4caf50;
}

.cf7s-section-mailchimp .cf7s-step-text {
    font-size: 13px;
    color: #444;
    font-weight: 600;
}

.cf7s-section-mailchimp .cf7s-step-time {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    white-space: nowrap;
}

.cf7s-section-mailchimp .cf7s-step-auto .cf7s-step-time {
    color: #2e7d32;
}

.cf7s-section-mailchimp .cf7s-workflow-result {
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf7s-section-mailchimp .cf7s-result-bad {
    background: #ffebee;
    border: 2px solid #ef9a9a;
}

.cf7s-section-mailchimp .cf7s-result-good {
    background: #e8f5e9;
    border: 2px solid #a5d6a7;
}

.cf7s-section-mailchimp .cf7s-result-stat {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.cf7s-section-mailchimp .cf7s-stat-label {
    color: #666;
    font-weight: 600;
}

.cf7s-section-mailchimp .cf7s-stat-value {
    font-weight: 800;
    color: #1a1a1a;
}

.cf7s-section-mailchimp .cf7s-savings-badge {
    margin-top: 16px;
    padding: 12px 16px;
    background: #2e7d32;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cf7s-section-mailchimp .cf7s-savings-badge svg {
    color: #fff;
}

/* Mailchimp Grid */
.cf7s-section-mailchimp .cf7s-mailchimp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cf7s-section-mailchimp .cf7s-features-card-mc,
.cf7s-section-mailchimp .cf7s-usecase-card-mc {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

/* Features List */
.cf7s-section-mailchimp .cf7s-features-list-mc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.cf7s-section-mailchimp .cf7s-feature-item-mc {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cf7s-section-mailchimp .cf7s-feature-item-mc:hover {
    background: #fff8e1;
}

.cf7s-section-mailchimp .cf7s-feature-icon-mc {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-section-mailchimp .cf7s-icon-sync { background: #e3f2fd; color: #1976d2; }
.cf7s-section-mailchimp .cf7s-icon-feeds { background: #f3e5f5; color: #7b1fa2; }
.cf7s-section-mailchimp .cf7s-icon-mapping { background: #e8f5e9; color: #388e3c; }
.cf7s-section-mailchimp .cf7s-icon-tags { background: #fff3e0; color: #f57c00; }
.cf7s-section-mailchimp .cf7s-icon-optin { background: #fce4ec; color: #c2185b; }

.cf7s-section-mailchimp .cf7s-feature-content-mc {
    flex: 1;
}

.cf7s-section-mailchimp .cf7s-feature-content-mc strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cf7s-section-mailchimp .cf7s-feature-content-mc p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Mailchimp Logo Note */
.cf7s-section-mailchimp .cf7s-mc-logo-note {
    padding: 16px;
    background: #fff8e1;
    border-radius: 8px;
    text-align: center;
}

.cf7s-section-mailchimp .cf7s-mc-logo {
    margin-bottom: 12px;
}

.cf7s-section-mailchimp .cf7s-mc-logo-note p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Story */
.cf7s-section-mailchimp .cf7s-story-mc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf7s-section-mailchimp .cf7s-story-header-mc {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff8e1;
    border-radius: 8px;
}

.cf7s-section-mailchimp .cf7s-story-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFE01B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-section-mailchimp .cf7s-story-avatar svg {
    color: #241C15;
}

.cf7s-section-mailchimp .cf7s-story-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.cf7s-section-mailchimp .cf7s-story-info strong {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.cf7s-section-mailchimp .cf7s-story-info span {
    font-size: 13px;
    color: #666;
}

.cf7s-section-mailchimp .cf7s-story-problem-mc {
    padding: 16px 20px;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #f44336;
}

.cf7s-section-mailchimp .cf7s-problem-label,
.cf7s-section-mailchimp .cf7s-solution-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cf7s-section-mailchimp .cf7s-problem-label svg { color: #f44336; }
.cf7s-section-mailchimp .cf7s-solution-label svg { color: #4caf50; }

.cf7s-section-mailchimp .cf7s-problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf7s-section-mailchimp .cf7s-problem-list li {
    font-size: 14px;
    color: #444;
    padding-left: 20px;
    position: relative;
}

.cf7s-section-mailchimp .cf7s-problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700;
}

.cf7s-section-mailchimp .cf7s-story-arrow-mc {
    text-align: center;
}

.cf7s-section-mailchimp .cf7s-story-arrow-mc svg {
    color: #FFC000;
}

.cf7s-section-mailchimp .cf7s-story-solution-mc {
    padding: 20px;
    background: #f1f8f4;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.cf7s-section-mailchimp .cf7s-automation-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
    border-radius: 6px;
    margin: 16px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.cf7s-section-mailchimp .cf7s-flow-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cf7s-section-mailchimp .cf7s-flow-label {
    padding: 6px 12px;
    background: #4caf50;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.cf7s-section-mailchimp .cf7s-flow-arrow {
    color: #4caf50;
    font-size: 18px;
    font-weight: 700;
}

.cf7s-section-mailchimp .cf7s-solution-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.cf7s-section-mailchimp .cf7s-story-results-mc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cf7s-section-mailchimp .cf7s-result-card-mc {
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #4caf50;
    text-align: center;
}

.cf7s-section-mailchimp .cf7s-result-value-mc {
    font-size: 28px;
    font-weight: 800;
    color: #2e7d32;
    line-height: 1;
    margin-bottom: 6px;
}

.cf7s-section-mailchimp .cf7s-result-label-mc {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA */
.cf7s-section-mailchimp .cf7s-mailchimp-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #FFE01B 0%, #FFC000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(255, 224, 27, 0.4);
}

.cf7s-section-mailchimp .cf7s-cta-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(36, 28, 21, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #241C15;
}

.cf7s-section-mailchimp .cf7s-cta-content {
    font-size: 16px;
    line-height: 1.7;
    color: #241C15;
}

.cf7s-section-mailchimp .cf7s-cta-content strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .cf7s-section-mailchimp .cf7s-workflows-grid,
    .cf7s-section-mailchimp .cf7s-mailchimp-grid {
        grid-template-columns: 1fr;
    }

    .cf7s-section-mailchimp .cf7s-story-results-mc {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-section-mailchimp {
        padding: 60px 0;
    }

    .cf7s-section-mailchimp .cf7s-mailchimp-title {
        font-size: 32px;
    }

    .cf7s-section-mailchimp .cf7s-workflow-comparison,
    .cf7s-section-mailchimp .cf7s-features-card-mc,
    .cf7s-section-mailchimp .cf7s-usecase-card-mc {
        padding: 24px;
    }

    .cf7s-section-mailchimp .cf7s-automation-flow {
        flex-direction: column;
        align-items: flex-start;
    }

    .cf7s-section-mailchimp .cf7s-flow-arrow {
        transform: rotate(90deg);
    }

    .cf7s-section-mailchimp .cf7s-mailchimp-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Twilio Section */
.cf7s-section-twilio {
    padding: 80px 0;
}

/* Header */
.cf7s-section-twilio .cf7s-twilio-header {
    text-align: center;
    margin-bottom: 50px;
}

.cf7s-section-twilio .cf7s-badge-twilio {
    background: linear-gradient(135deg, #F22F46 0%, #D81B33 100%);
    box-shadow: 0 4px 12px rgba(242, 47, 70, 0.3);
}

.cf7s-section-twilio .cf7s-twilio-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cf7s-section-twilio .cf7s-twilio-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.cf7s-section-twilio .cf7s-highlight-twilio {
    color: #F22F46;
    font-weight: 700;
}

/* Speed Matters Visual */
.cf7s-section-twilio .cf7s-speed-matters {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-twilio .cf7s-speed-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-section-twilio .cf7s-speed-header svg {
    color: #F22F46;
}

.cf7s-section-twilio .cf7s-speed-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Response Timeline */
.cf7s-section-twilio .cf7s-response-timeline {
    margin-bottom: 28px;
}

.cf7s-section-twilio .cf7s-timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cf7s-section-twilio .cf7s-timeline-marker {
    padding: 20px 16px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.cf7s-section-twilio .cf7s-marker-instant {
    background: linear-gradient(135deg, #e8f5e9 0%, #fff 100%);
    border-color: #4caf50;
}

.cf7s-section-twilio .cf7s-marker-fast {
    background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
    border-color: #ffb300;
}

.cf7s-section-twilio .cf7s-marker-slow {
    background: linear-gradient(135deg, #fff3e0 0%, #fff 100%);
    border-color: #ff9800;
}

.cf7s-section-twilio .cf7s-marker-lost {
    background: linear-gradient(135deg, #ffebee 0%, #fff 100%);
    border-color: #f44336;
}

.cf7s-section-twilio .cf7s-marker-time {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cf7s-section-twilio .cf7s-marker-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
}

.cf7s-section-twilio .cf7s-marker-rate {
    font-size: 16px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-top: 8px;
}

.cf7s-section-twilio .cf7s-marker-instant .cf7s-marker-rate {
    background: #4caf50;
    color: #fff;
}

.cf7s-section-twilio .cf7s-marker-fast .cf7s-marker-rate {
    background: #ffb300;
    color: #fff;
}

.cf7s-section-twilio .cf7s-marker-slow .cf7s-marker-rate {
    background: #ff9800;
    color: #fff;
}

.cf7s-section-twilio .cf7s-marker-lost .cf7s-marker-rate {
    background: #f44336;
    color: #fff;
}

.cf7s-section-twilio .cf7s-speed-stat {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid #F22F46;
}

.cf7s-section-twilio .cf7s-speed-stat svg {
    flex-shrink: 0;
    color: #F22F46;
}

.cf7s-section-twilio .cf7s-speed-stat p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* Dual-Path Visual */
.cf7s-section-twilio .cf7s-dual-path-visual {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-twilio .cf7s-path-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-section-twilio .cf7s-path-header svg {
    color: #F22F46;
}

.cf7s-section-twilio .cf7s-path-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Paths Diagram */
.cf7s-section-twilio .cf7s-paths-diagram {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cf7s-section-twilio .cf7s-form-trigger {
    text-align: center;
    margin-bottom: 20px;
}

.cf7s-section-twilio .cf7s-trigger-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F22F46 0%, #D81B33 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(242, 47, 70, 0.3);
}

.cf7s-section-twilio .cf7s-trigger-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.cf7s-section-twilio .cf7s-paths-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cf7s-section-twilio .cf7s-sms-path {
    position: relative;
}

.cf7s-section-twilio .cf7s-path-arrow {
    text-align: center;
    margin-bottom: 16px;
}

.cf7s-section-twilio .cf7s-path-content {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.cf7s-section-twilio .cf7s-path-team .cf7s-path-content {
    background: #fff5f5;
    border-color: #ffcdd2;
}

.cf7s-section-twilio .cf7s-path-customer .cf7s-path-content {
    background: #f1f8f4;
    border-color: #c8e6c9;
}

.cf7s-section-twilio .cf7s-path-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cf7s-section-twilio .cf7s-badge-urgent {
    background: #f44336;
    color: #fff;
}

.cf7s-section-twilio .cf7s-badge-confirm {
    background: #4caf50;
    color: #fff;
}

.cf7s-section-twilio .cf7s-path-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.cf7s-section-twilio .cf7s-path-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
}

/* Phone Mockup */
.cf7s-section-twilio .cf7s-phone-mockup {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cf7s-section-twilio .cf7s-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: #fff;
    font-size: 12px;
}

.cf7s-section-twilio .cf7s-phone-signal {
    opacity: 0.8;
}

.cf7s-section-twilio .cf7s-sms-bubble {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}

.cf7s-section-twilio .cf7s-sms-contact {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    margin-bottom: 8px;
}

.cf7s-section-twilio .cf7s-sms-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cf7s-section-twilio .cf7s-sms-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: #f44336;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.cf7s-section-twilio .cf7s-sms-time {
    font-size: 11px;
    color: #999;
    text-align: right;
}

/* Twilio Grid */
.cf7s-section-twilio .cf7s-twilio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.cf7s-section-twilio .cf7s-capabilities-card,
.cf7s-section-twilio .cf7s-edge-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

/* Capabilities List */
.cf7s-section-twilio .cf7s-capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.cf7s-section-twilio .cf7s-capability-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cf7s-section-twilio .cf7s-capability-item:hover {
    background: #fff5f5;
}

.cf7s-section-twilio .cf7s-capability-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf7s-section-twilio .cf7s-icon-internal { background: #e3f2fd; color: #1976d2; }
.cf7s-section-twilio .cf7s-icon-customer { background: #f3e5f5; color: #7b1fa2; }
.cf7s-section-twilio .cf7s-icon-dynamic { background: #e8f5e9; color: #388e3c; }
.cf7s-section-twilio .cf7s-icon-global { background: #fff3e0; color: #f57c00; }
.cf7s-section-twilio .cf7s-icon-reliable { background: #fce4ec; color: #c2185b; }

.cf7s-section-twilio .cf7s-capability-content {
    flex: 1;
}

.cf7s-section-twilio .cf7s-capability-content strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cf7s-section-twilio .cf7s-capability-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Twilio Logo */
.cf7s-section-twilio .cf7s-twilio-logo {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cf7s-section-twilio .cf7s-twilio-logo svg {
    margin-bottom: 12px;
}

.cf7s-section-twilio .cf7s-twilio-logo p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Edge Content */
.cf7s-section-twilio .cf7s-edge-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 24px 0;
}

.cf7s-section-twilio .cf7s-edge-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.cf7s-section-twilio .cf7s-edge-stat {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.cf7s-section-twilio .cf7s-edge-number {
    font-size: 32px;
    font-weight: 800;
    color: #F22F46;
    line-height: 1;
    margin-bottom: 8px;
}

.cf7s-section-twilio .cf7s-edge-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cf7s-section-twilio .cf7s-edge-compare {
    font-size: 12px;
    color: #999;
}

.cf7s-section-twilio .cf7s-edge-scenarios {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf7s-section-twilio .cf7s-scenario-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cf7s-section-twilio .cf7s-scenario-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cf7s-section-twilio .cf7s-scenario-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* CTA */
.cf7s-section-twilio .cf7s-twilio-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #F22F46 0%, #D81B33 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(242, 47, 70, 0.3);
}

.cf7s-section-twilio .cf7s-cta-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf7s-section-twilio .cf7s-cta-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-section-twilio .cf7s-cta-content strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .cf7s-section-twilio .cf7s-timeline-track {
        grid-template-columns: 1fr 1fr;
    }

    .cf7s-section-twilio .cf7s-paths-container,
    .cf7s-section-twilio .cf7s-twilio-grid {
        grid-template-columns: 1fr;
    }

    .cf7s-section-twilio .cf7s-edge-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-section-twilio {
        padding: 60px 0;
    }

    .cf7s-section-twilio .cf7s-twilio-title {
        font-size: 32px;
    }

    .cf7s-section-twilio .cf7s-timeline-track {
        grid-template-columns: 1fr;
    }

    .cf7s-section-twilio .cf7s-speed-matters,
    .cf7s-section-twilio .cf7s-dual-path-visual,
    .cf7s-section-twilio .cf7s-capabilities-card,
    .cf7s-section-twilio .cf7s-edge-card {
        padding: 24px;
    }

    .cf7s-section-twilio .cf7s-twilio-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Logs Section */
.cf7s-section-logs {
    padding: 80px 0;
}

/* Header */
.cf7s-section-logs .cf7s-logs-header {
    text-align: center;
    margin-bottom: 50px;
}

.cf7s-section-logs .cf7s-badge-logs {
    background: linear-gradient(135deg, #673ab7 0%, #512da8 100%);
    box-shadow: 0 4px 12px rgba(103, 58, 183, 0.3);
}

.cf7s-section-logs .cf7s-logs-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cf7s-section-logs .cf7s-logs-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.cf7s-section-logs .cf7s-highlight-logs {
    color: #673ab7;
    font-weight: 700;
}

/* Debugging Comparison */
.cf7s-section-logs .cf7s-debugging-comparison {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-logs .cf7s-debug-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cf7s-section-logs .cf7s-debug-card {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.cf7s-section-logs .cf7s-debug-blind {
    background: #fff5f5;
    border-color: #ffcdd2;
}

.cf7s-section-logs .cf7s-debug-clear {
    background: #f1f8f4;
    border-color: #c8e6c9;
}

.cf7s-section-logs .cf7s-debug-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cf7s-section-logs .cf7s-debug-blind .cf7s-debug-icon {
    background: #ffebee;
    color: #f44336;
}

.cf7s-section-logs .cf7s-debug-clear .cf7s-debug-icon {
    background: #e8f5e9;
    color: #4caf50;
}

.cf7s-section-logs .cf7s-debug-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 24px 0;
}

.cf7s-section-logs .cf7s-debug-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cf7s-section-logs .cf7s-debug-step {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
}

.cf7s-section-logs .cf7s-step-solution {
    border-left: 3px solid #4caf50;
}

.cf7s-section-logs .cf7s-debug-time {
    font-weight: 700;
    color: #666;
    flex-shrink: 0;
}

.cf7s-section-logs .cf7s-debug-desc {
    color: #444;
    flex: 1;
}

.cf7s-section-logs .cf7s-debug-more {
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #999;
    background: #fff;
    border-radius: 6px;
}

.cf7s-section-logs .cf7s-debug-result {
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.cf7s-section-logs .cf7s-result-bad {
    background: #f44336;
    color: #fff;
}

.cf7s-section-logs .cf7s-result-good {
    background: #4caf50;
    color: #fff;
}

.cf7s-section-logs .cf7s-debug-result strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.cf7s-section-logs .cf7s-debug-result span {
    font-size: 13px;
    opacity: 0.9;
}

/* Logs Showcase */
.cf7s-section-logs .cf7s-logs-showcase {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.cf7s-section-logs .cf7s-showcase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cf7s-section-logs .cf7s-showcase-header svg {
    color: #673ab7;
}

.cf7s-section-logs .cf7s-showcase-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.cf7s-section-logs .cf7s-logs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Log Cards */
.cf7s-section-logs .cf7s-log-card {
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.cf7s-section-logs .cf7s-log-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cf7s-section-logs .cf7s-log-spam { border-top: 4px solid #4caf50; }
.cf7s-section-logs .cf7s-log-webhook { border-top: 4px solid #00bcd4; }
.cf7s-section-logs .cf7s-log-mailchimp { border-top: 4px solid #FFE01B; }
.cf7s-section-logs .cf7s-log-twilio { border-top: 4px solid #F22F46; }

.cf7s-section-logs .cf7s-log-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cf7s-section-logs .cf7s-log-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf7s-section-logs .cf7s-log-spam .cf7s-log-icon { background: #e8f5e9; color: #4caf50; }
.cf7s-section-logs .cf7s-log-webhook .cf7s-log-icon { background: #e0f7fa; color: #00bcd4; }
.cf7s-section-logs .cf7s-log-mailchimp .cf7s-log-icon { background: #fff8e1; color: #f57c00; }
.cf7s-section-logs .cf7s-log-twilio .cf7s-log-icon { background: #ffebee; color: #F22F46; }

.cf7s-section-logs .cf7s-log-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Log Preview */
.cf7s-section-logs .cf7s-log-preview {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    font-family: 'Monaco', 'Courier New', monospace;
}

.cf7s-section-logs .cf7s-log-entry {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 12px;
}

.cf7s-section-logs .cf7s-log-entry:last-child {
    margin-bottom: 0;
}

.cf7s-section-logs .cf7s-entry-blocked { background: #ffebee; }
.cf7s-section-logs .cf7s-entry-allowed { background: #e8f5e9; }
.cf7s-section-logs .cf7s-entry-success { background: #e8f5e9; }
.cf7s-section-logs .cf7s-entry-error { background: #ffebee; }
.cf7s-section-logs .cf7s-entry-warning { background: #fff8e1; }
.cf7s-section-logs .cf7s-entry-delivered { background: #e8f5e9; }

.cf7s-section-logs .cf7s-log-status {
    font-weight: 700;
    font-size: 11px;
}

.cf7s-section-logs .cf7s-log-reason {
    color: #666;
    font-size: 11px;
}

.cf7s-section-logs .cf7s-log-ip {
    color: #999;
    font-size: 10px;
}

.cf7s-section-logs .cf7s-log-info {
    font-size: 13px;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Impact Box */
.cf7s-section-logs .cf7s-impact-box {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: #f3e5f5;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #ce93d8;
}

.cf7s-section-logs .cf7s-impact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #673ab7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cf7s-section-logs .cf7s-impact-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 16px 0;
}

.cf7s-section-logs .cf7s-impact-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    text-align: center;
    margin: 0 0 24px 0;
}

.cf7s-section-logs .cf7s-impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf7s-section-logs .cf7s-impact-stat {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.cf7s-section-logs .cf7s-impact-number {
    font-size: 28px;
    font-weight: 800;
    color: #673ab7;
    margin-bottom: 8px;
}

.cf7s-section-logs .cf7s-impact-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* CTA */
.cf7s-section-logs .cf7s-logs-cta {
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, #673ab7 0%, #512da8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(103, 58, 183, 0.3);
}

.cf7s-section-logs .cf7s-cta-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf7s-section-logs .cf7s-cta-content {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.cf7s-section-logs .cf7s-cta-content strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .cf7s-section-logs .cf7s-debug-grid,
    .cf7s-section-logs .cf7s-logs-grid,
    .cf7s-section-logs .cf7s-impact-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cf7s-section-logs .cf7s-section-logs {
        padding: 60px 0;
    }

    .cf7s-section-logs .cf7s-logs-title {
        font-size: 32px;
    }

    .cf7s-section-logs .cf7s-debugging-comparison,
    .cf7s-section-logs .cf7s-logs-showcase,
    .cf7s-section-logs .cf7s-impact-box {
        padding: 24px;
    }

    .cf7s-section-logs .cf7s-logs-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Complete Section */
.cf7s-section-complete {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Header */
.cf7s-section-complete .cf7s-complete-header {
    text-align: center;
    margin-bottom: 50px;
}

.cf7s-section-complete .cf7s-complete-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.cf7s-section-complete .cf7s-complete-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Evolution Visual */
.cf7s-section-complete .cf7s-evolution-visual {
    max-width: 900px;
    margin: 0 auto 50px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cf7s-section-complete .cf7s-evolution-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cf7s-section-complete .cf7s-evolution-point {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease;
}

.cf7s-section-complete .cf7s-point-2015 {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff 100%);
    border: 2px solid #bbdefb;
}

.cf7s-section-complete .cf7s-point-2020 {
    background: linear-gradient(135deg, #f3e5f5 0%, #fff 100%);
    border: 2px solid #ce93d8;
}

.cf7s-section-complete .cf7s-point-2025 {
    background: linear-gradient(135deg, #e8f5e9 0%, #fff 100%);
    border: 2px solid #a5d6a7;
}

.cf7s-section-complete .cf7s-point-year {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.cf7s-section-complete .cf7s-point-label {
    font-size: 16px;
    font-weight: 700;
    color: #444;
    margin-bottom: 6px;
}

.cf7s-section-complete .cf7s-point-features {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

.cf7s-section-complete .cf7s-evolution-arrow {
    font-size: 32px;
    color: #0066cc;
    font-weight: 700;
    padding: 0 20px;
}

/* Comparison Container */
.cf7s-section-complete .cf7s-comparison-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Version Cards */
.cf7s-section-complete .cf7s-version-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.cf7s-section-complete .cf7s-free-card {
    border-top: 4px solid #9e9e9e;
}

.cf7s-section-complete .cf7s-pro-card {
    border-top: 4px solid #0066cc;
    position: relative;
}

/* PRO Badge */
.cf7s-section-complete .cf7s-pro-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cf7s-section-complete .cf7s-pro-badge svg {
    color: #fff;
}

/* Version Header */
.cf7s-section-complete .cf7s-version-header {
    text-align: center;
    margin-bottom: 28px;
}

.cf7s-section-complete .cf7s-version-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cf7s-section-complete .cf7s-icon-free {
    background: #f5f5f5;
    color: #757575;
}

.cf7s-section-complete .cf7s-icon-pro {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
}

.cf7s-section-complete .cf7s-version-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.cf7s-section-complete .cf7s-version-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Features Box */
.cf7s-section-complete .cf7s-features-box {
    flex: 1;
    margin-bottom: 24px;
}

.cf7s-section-complete .cf7s-feature-item-complete {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.cf7s-section-complete .cf7s-feature-item-complete svg {
    flex-shrink: 0;
    color: #0066cc;
    margin-top: 2px;
}

/* PRO Categories */
.cf7s-section-complete .cf7s-pro-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    margin-bottom: 24px;
}

.cf7s-section-complete .cf7s-category-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.cf7s-section-complete .cf7s-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.cf7s-section-complete .cf7s-category-title svg {
    color: #0066cc;
}

.cf7s-section-complete .cf7s-category-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf7s-category-features .cf7s-feature-item-complete {
    padding: 8px 0;
}

/* Version Stats */
.cf7s-section-complete .cf7s-version-stats {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.cf7s-section-complete .cf7s-stat-item-complete {
    text-align: center;
    flex: 1;
}

.cf7s-section-complete .cf7s-stat-value-complete {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    line-height: 1;
    margin-bottom: 6px;
}

.cf7s-section-complete .cf7s-stat-label-complete {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Version Buttons */
.cf7s-section-complete .cf7s-version-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cf7s-section-complete .cf7s-btn-free {
    background: #f5f5f5;
    color: #424242;
    border: 2px solid #e0e0e0;
}

.cf7s-section-complete .cf7s-btn-free:hover {
    background: #e0e0e0;
}

.cf7s-section-complete .cf7s-btn-pro {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.cf7s-section-complete .cf7s-btn-pro:hover {
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

/* Feature Comparison */
.cf7s-section-complete .cf7s-feature-comparison {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cf7s-section-complete .cf7s-comparison-item {
    flex: 1;
    text-align: center;
}

.cf7s-section-complete .cf7s-comparison-number {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.cf7s-section-complete .cf7s-comparison-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-bottom: 16px;
}

.cf7s-section-complete .cf7s-comparison-bar {
    height: 12px;
    border-radius: 6px;
    margin: 0 auto;
}

.cf7s-section-complete .cf7s-bar-free {
    width: 30%;
    background: #9e9e9e;
}

.cf7s-section-complete .cf7s-bar-pro {
    width: 100%;
    background: linear-gradient(90deg, #0066cc 0%, #0052a3 100%);
}

.cf7s-section-complete .cf7s-vs {
    font-size: 20px;
    font-weight: 800;
    color: #0066cc;
    flex-shrink: 0;
}

/* Complete Footer */
.cf7s-section-complete .cf7s-complete-footer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.cf7s-section-complete .cf7s-complete-footer svg {
    color: #fff;
    margin-bottom: 16px;
}

.cf7s-section-complete .cf7s-complete-footer p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .cf7s-section-complete .cf7s-comparison-container {
        grid-template-columns: 1fr;
    }

    .cf7s-section-complete .cf7s-evolution-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .cf7s-section-complete .cf7s-evolution-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .cf7s-section-complete {
        padding: 60px 0;
    }

    .cf7s-section-complete .cf7s-complete-title {
        font-size: 32px;
    }

    .cf7s-section-complete .cf7s-evolution-visual {
        padding: 24px;
    }

    .cf7s-section-complete .cf7s-version-card {
        padding: 24px;
    }

    .cf7s-section-complete .cf7s-feature-comparison {
        flex-direction: column;
        padding: 24px;
    }

    .cf7s-section-complete .cf7s-vs {
        transform: rotate(90deg);
    }

    .cf7s-section-complete .cf7s-complete-footer {
        padding: 24px;
    }
}
