/* Contact Page Styles - Optimized for Performance */
/* Variables */
:root {
    --g:       #2ED06E;
    --g-dk:    #25A859;
    --g-lt:    #E8F9EE;
    --g-glow:  rgba(46,208,110,0.22);
    --dark:    #1A1A1A;
    --dark2:   #141b2d;
    --ink:     #1e2535;
    --mid:     #506070;
    --muted:   #8a9bb0;
    --border:  #E1E8ED;
    --white:   #ffffff;
    --off:     #F4F6F8;
    --r-sm:    10px;
    --r-md:    16px;
    --r-lg:    24px;
    --r-xl:    32px;
}

/* Reset */
.cp-root *, .cp-root *::before, .cp-root *::after { box-sizing: border-box; margin: 0; padding: 0; }
.cp-root { background: var(--off); }
.cp-root a { text-decoration: none; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Shared label */
.cp-label {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g);
    background: rgba(46,208,110,0.1);
    border: 1px solid rgba(46,208,110,0.22);
    padding: 5px 13px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* Pulse dot */
.cp-pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--g);
    position: relative;
    flex-shrink: 0;
}
.cp-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(46,208,110,0.35);
    animation: cpPing 1.8s ease-out infinite;
}
@keyframes cpPing {
    0%   { transform: scale(.7); opacity: 1; }
    100% { transform: scale(2);  opacity: 0; }
}
.cp-pulse--green { background: var(--g); }

/* HERO */
.cp-hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cp-hero__inner {
    display: flex;
    align-items: center;
    width: 100%;
}

/* subtle noise texture overlay */
.cp-hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.5;
}

/* large radial green glow bottom-left */
.cp-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,208,110,0.18) 0%, transparent 65%);
    bottom: -200px; left: -120px;
    pointer-events: none;
    z-index: 0;
}

/* top-right accent circle */
.cp-hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(46,208,110,0.1);
    top: -100px; right: -60px;
    pointer-events: none;
    z-index: 0;
}

/* Left side */
.cp-hero__left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 40px 100px 0;
    flex: 1;
}

.cp-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(46,208,110,0.08);
    border: 1px solid rgba(46,208,110,0.2);
    color: var(--g);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 32px;
    animation: cpFadeUp .6s ease both;
}

.cp-hero__h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 24px;
    animation: cpFadeUp .6s .1s ease both;
}

.cp-hero__h1-accent {
    color: var(--g);
    -webkit-text-stroke: 0;
    position: relative;
}

/* underline scribble */
.cp-hero__h1-accent::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px; right: 0;
    height: 4px;
    background: var(--g);
    border-radius: 2px;
    opacity: .5;
}

.cp-hero__sub {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 440px;
    margin-bottom: 52px;
    animation: cpFadeUp .6s .2s ease both;
}

/* Metrics */
.cp-hero__metrics {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: cpFadeUp .6s .3s ease both;
    flex-wrap: wrap;
}

.cp-metric { display: flex; flex-direction: column; gap: 4px; }
.cp-metric__num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
    letter-spacing: -1px;
}
.cp-metric__lbl {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.cp-metric__sep {
    width: 1px; height: 44px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* Right side */
.cp-hero__right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 60px 40px;
    flex: 1;
}

/* Form card */
.cp-form-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 44px;
    width: 100%;
    max-width: 480px;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.05),
        0 32px 80px rgba(0,0,0,0.35),
        0 0 0 1px rgba(46,208,110,0.08) inset;
    animation: cpFadeUp .7s .2s ease both;
    position: relative;
    overflow: hidden;
}

/* green shimmer top bar */
.cp-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--g), var(--g-dk), var(--g), transparent);
    background-size: 300% 100%;
    animation: cpShimmer 3s linear infinite;
}

@keyframes cpShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.cp-form-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--g-dk);
    background: rgba(46,208,110,0.08);
    border: 1px solid rgba(46,208,110,0.18);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cp-form-card__title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.cp-form-card__hint {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* CF7 */
.cp-form-body .wpcf7 { max-width: 100%; }
.cp-form-body .wpcf7-form { display: flex; flex-direction: column; gap: 14px; }
.cp-form-body .wpcf7-form p { margin: 0; }
.cp-form-body .wpcf7-form label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 7px;
}
.cp-form-body .wpcf7-form input[type="text"],
.cp-form-body .wpcf7-form input[type="email"],
.cp-form-body .wpcf7-form input[type="tel"],
.cp-form-body .wpcf7-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 14.5px;
    font-family: inherit;
    color: var(--ink);
    background: var(--off);
    transition: border-color .2s, box-shadow .2s, background .2s;
    appearance: none;
}
.cp-form-body .wpcf7-form input:focus,
.cp-form-body .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--g);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(46,208,110,0.1);
}
.cp-form-body .wpcf7-form textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.cp-form-body .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 15px 28px;
    background: var(--g);
    color: var(--white);
    border: none;
    border-radius: var(--r-sm);
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    margin-top: 4px;
}
.cp-form-body .wpcf7-form input[type="submit"]:hover {
    background: var(--g-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46,208,110,0.38);
}
.cp-form-body .wpcf7-form input[type="submit"]:active { transform: translateY(0); }
.cp-form-body .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 12px 16px;
    border-radius: var(--r-sm);
    font-size: .88rem;
    border: none;
}
.cp-form-body .wpcf7-mail-sent-ok { background: rgba(46,208,110,0.1); color: #0a6633; border: 1px solid rgba(46,208,110,0.3); }
.cp-form-body .wpcf7-validation-errors { background: #fff0f0; color: #8b1a1a; border: 1px solid #fca5a5; }

/* REACH SECTION - REDESIGNED */
.cp-reach {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.cp-reach__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

/* Background content */
.cp-reach__background {
    position: relative;
    z-index: 1;
}

.cp-reach__header {
    max-width: 480px;
}

.cp-reach__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.cp-reach__title em {
    font-style: normal;
    color: var(--g);
    position: relative;
}

.cp-reach__title em::after {
    content: '';
    position: absolute;
    left: 0; bottom: 8px; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--g), var(--g-dk));
    border-radius: 3px;
    opacity: 0.3;
    z-index: -1;
}

.cp-reach__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mid);
    margin-top: 20px;
    max-width: 420px;
}

/* Floating cards grid */
.cp-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 10;
}

.cp-channel--floating {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-channel__inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow effect behind cards */
.cp-channel__glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--g), #3b82f6, #a855f7);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(20px);
}

.cp-channel--floating:hover .cp-channel__glow {
    opacity: 0.3;
}

/* Hover effects */
.cp-channel--floating:hover {
    transform: translateY(-8px) rotateX(2deg);
}

.cp-channel--floating:hover .cp-channel__inner {
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 20px 60px rgba(46, 208, 110, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(46, 208, 110, 0.2);
}

/* Icon */
.cp-channel__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(46, 208, 110, 0.1), rgba(46, 208, 110, 0.05));
    color: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 208, 110, 0.1);
    flex-shrink: 0;
}

.cp-channel--floating:hover .cp-channel__icon {
    background: linear-gradient(135deg, var(--g), var(--g-dk));
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 208, 110, 0.3);
}

/* Content */
.cp-channel__content {
    flex: 1;
}

.cp-channel__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.cp-channel__content p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.cp-channel--floating:hover .cp-channel__content h3 {
    color: var(--g);
}

.cp-channel--floating:hover .cp-channel__content p {
    color: var(--ink);
}

/* Arrow */
.cp-channel__arrow {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(46, 208, 110, 0.1);
    color: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.cp-channel--floating:hover .cp-channel__arrow {
    background: var(--g);
    color: white;
    opacity: 1;
    transform: translateX(4px);
}

/* Staggered animation on load */
.cp-channel--floating:nth-child(1) { animation: slideInRight 0.6s ease-out 0.1s both; }
.cp-channel--floating:nth-child(2) { animation: slideInRight 0.6s ease-out 0.2s both; }
.cp-channel--floating:nth-child(3) { animation: slideInRight 0.6s ease-out 0.3s both; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FAQ */
.cp-faq {
    background: var(--dark);
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

/* decorative circle */
.cp-faq::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,208,110,0.1) 0%, transparent 65%);
    right: -100px; top: -100px;
    pointer-events: none;
}

.cp-faq::after {
    content: '';
    position: absolute;
    width: 1px;
    top: 0; bottom: 0;
    left: calc(5% + 340px);
    background: rgba(255,255,255,0.06);
    display: none;
}

.cp-faq .container { position: relative; z-index: 2; }

.cp-faq__head {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}

.cp-faq__head-left { position: sticky; top: 100px; }

.cp-faq__head-left .cp-label {
    color: var(--g);
    background: rgba(46,208,110,0.1);
    border-color: rgba(46,208,110,0.2);
}

.cp-faq__title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cp-faq__title em {
    font-style: normal;
    color: var(--g);
}

.cp-faq__desc {
    font-size: .92rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 240px;
}

.cp-faq__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(46,208,110,0.08);
    border: 1px solid rgba(46,208,110,0.18);
    color: var(--g);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
}

/* FAQ list */
.cp-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cp-faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    transition: all .3s ease;
}

.cp-faq-item.is-open {
    border-color: rgba(46,208,110,0.3);
    background: rgba(46,208,110,0.05);
}

.cp-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: .97rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    transition: color .25s;
    line-height: 1.4;
}

.cp-faq-item.is-open .cp-faq-btn { color: var(--g); }

.cp-faq-btn__icon {
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: all .3s ease;
}

.cp-faq-item.is-open .cp-faq-btn__icon {
    border-color: var(--g);
    background: var(--g);
    color: var(--white);
    transform: rotate(180deg);
}

.cp-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
    padding: 0 26px;
}

.cp-faq-item.is-open .cp-faq-panel {
    max-height: 400px;
    padding: 0 26px 22px;
}

.cp-faq-panel p {
    font-size: .92rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* CTA Section */
.cta-section-modern {
    padding-top: 80px;
    background: #f8fbfa;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

/* ANIMATIONS */
@keyframes cpFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
/* 1200px - Desktop */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
    .cp-hero__left { padding: 100px 30px 100px 0; }
    .cp-hero__right { padding: 60px 0 60px 30px; }
}

/* 1100px - Large Tablet */
@media (max-width: 1100px) {
    .container { max-width: 100%; padding: 0 24px; }
    .cp-hero { 
        flex-direction: column; 
        min-height: auto; 
        padding: 0;
    }
    .cp-hero::after { display: none; }
    .cp-hero__left {
        padding: 80px 0 40px;
        text-align: center;
    }
    .cp-hero__right { 
        padding: 48px 0 80px; 
        justify-content: center; 
    }
    .cp-hero__h1 { font-size: 3.2rem; }

    .cp-reach__inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .cp-reach__background {
        text-align: center;
    }
    
    .cp-reach__header {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .cp-reach__subtitle {
        max-width: 100%;
        margin: 20px auto 0;
    }
    
    .cp-reach__decoration {
        display: none;
    }

    .cp-faq__head { grid-template-columns: 240px 1fr; gap: 48px; }
    .cp-faq::after { left: calc(5% + 280px); }
}

/* 900px - Tablet */
@media (max-width: 900px) {
    .container { padding: 0 20px; }
    
    .cp-reach {
        padding: 80px 0;
    }
    
    .cp-reach__inner {
        gap: 40px;
    }
    
    .cp-channel__inner {
        padding: 24px 28px;
        gap: 16px;
    }
    
    .cp-channel__icon {
        width: 48px;
        height: 48px;
    }
    
    .cp-channel__content h3 {
        font-size: 1.1rem;
    }
    
    .cp-channel__content p {
        font-size: 0.9rem;
    }

    .cp-faq__head { grid-template-columns: 1fr; gap: 40px; }
    .cp-faq__head-left { position: static; }
    .cp-faq__title { font-size: 2.2rem; }
    .cp-faq__desc { max-width: 100%; }
    .cp-faq::after { display: none; }
}

/* 768px - Small Tablet */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .cp-hero__left { padding: 60px 5% 36px; }
    .cp-hero__right { padding: 36px 5% 60px; }
    .cp-hero__h1 { font-size: 2.6rem; letter-spacing: -1px; }
    .cp-hero__sub { font-size: 1rem; margin-bottom: 36px; }
    .cp-hero__metrics { gap: 18px; }
    .cp-metric__num { font-size: 1.6rem; }
    .cp-metric__sep { height: 32px; }

    .cp-form-card { padding: 32px 28px; }

    .cp-reach { 
        padding: 60px 0;
    }
    
    .cp-reach__inner {
        gap: 30px;
    }
    
    .cp-channel__inner {
        padding: 20px 24px;
        gap: 16px;
    }
    
    .cp-channel__icon {
        width: 44px;
        height: 44px;
    }
    
    .cp-channel__content h3 {
        font-size: 1rem;
    }
    
    .cp-channel__content p {
        font-size: 0.85rem;
    }
    
    .cp-channel__arrow {
        width: 36px;
        height: 36px;
    }

    .cp-faq { padding: 72px 0 80px; }
    .cp-faq-btn { padding: 18px 20px; font-size: .93rem; }
    .cp-faq-item.is-open .cp-faq-panel { padding: 0 20px 18px; }
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* 480px - Mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .cp-hero {
        min-height: auto;
        padding: 60px 0;
    }
    .cp-hero__inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .cp-hero__left { 
        padding: 0;
        text-align: center;
        width: 100%;
    }
    .cp-hero__tag { 
        justify-content: center;
        margin: 0 auto 20px;
    }
    .cp-hero__right { 
        padding: 0;
        width: 100%;
        justify-content: center;
    }
    .cp-hero__h1 { font-size: 1.8rem; line-height: 1.1; }
    .cp-hero__sub { font-size: 0.95rem; margin-bottom: 24px; }
    .cp-hero__metrics { 
        display: flex; 
        align-items: center; 
        gap: 20px; 
        justify-content: center;
        flex-wrap: nowrap;
    }
    .cp-metric { 
        display: flex; 
        flex-direction: column; 
        gap: 4px; 
        align-items: center;
        text-align: center;
    }
    .cp-metric__num { font-size: 1.4rem; }
    .cp-metric__sep { 
        width: 1px; 
        height: 32px; 
        background: rgba(255,255,255,0.2);
    }

    .cp-form-card { 
        padding: 24px 20px; 
        border-radius: var(--r-lg); 
        margin: 0 auto;
    }
    .cp-form-card__title { font-size: 1.2rem; }

    .cp-reach { 
        padding: 48px 0;
    }
    
    .cp-reach__inner {
        gap: 24px;
    }
    
    .cp-channel__inner {
        padding: 18px 20px;
        gap: 14px;
        flex-direction: column;
        text-align: center;
    }
    
    .cp-channel__icon {
        width: 48px;
        height: 48px;
    }
    
    .cp-channel__content h3 {
        font-size: 1.05rem;
    }
    
    .cp-channel__content p {
        font-size: 0.9rem;
    }
    
    .cp-channel__arrow {
        width: 32px;
        height: 32px;
        margin-top: 8px;
    }

    .cp-faq { padding: 48px 0 56px; }
    .cp-faq__head { text-align: center; }
    .cp-faq__head-left { text-align: center; }
    .cp-faq__title { 
        font-size: 1.7rem; 
        text-align: center;
    }
    .cp-faq__desc { 
        text-align: center; 
        margin: 0 auto 28px;
        max-width: 100%;
    }
    .cp-faq-btn { 
        padding: 16px 18px; 
        font-size: 0.9rem; 
        gap: 12px;
    }
    .cp-faq-btn__icon {
        width: 28px; 
        height: 28px;
    }
    .cp-faq-item.is-open .cp-faq-panel { 
        padding: 0 18px 16px; 
    }
    .cp-faq-panel p {
        font-size: 0.85rem;
    }
}

/* 380px - Small Mobile */
@media (max-width: 380px) {
    .container { padding: 0 12px; }
    .cp-hero {
        min-height: auto;
        padding: 40px 0;
    }
    .cp-hero__inner {
        gap: 30px;
    }
    .cp-hero__h1 { font-size: 1.6rem; }
    .cp-hero__sub { font-size: 0.9rem; }
    
    .cp-form-card { 
        padding: 20px 16px; 
    }
    .cp-form-card__title { font-size: 1.1rem; }
    
    .cp-reach { 
        padding: 40px 0;
    }
    
    .cp-reach__inner {
        gap: 20px;
    }
    
    .cp-channel__inner {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .cp-channel__icon {
        width: 44px;
        height: 44px;
    }
    
    .cp-channel__content h3 {
        font-size: 1rem;
    }
    
    .cp-channel__content p {
        font-size: 0.85rem;
    }
    
    .cp-channel__arrow {
        width: 30px;
        height: 30px;
    }
    
    .cp-faq__title { font-size: 1.5rem; }
    .cp-faq-btn { 
        padding: 14px 16px; 
        font-size: 0.85rem; 
    }
    .cp-faq-btn__icon {
        width: 26px; 
        height: 26px;
    }
}
