/* Contact Extractor page — hero + sections */

#contact-extractor-page.ce-page {
    --ce-green: #25d366;
    --ce-green-dark: #17b26a;
    --ce-forest: #071c15;
    --ce-surface: #0d2a20;
    --ce-glass: rgba(13, 42, 32, 0.72);
    --ce-border: rgba(37, 211, 102, 0.22);
    --ce-glow: rgba(37, 211, 102, 0.35);
}

.ce-hero {
    position: relative;
    overflow: visible;
    background:
        radial-gradient(ellipse 90% 70% at 78% 42%, rgba(37, 211, 102, 0.12) 0%, transparent 55%),
        linear-gradient(165deg, #020806 0%, #071c15 38%, #0a241c 72%, #061912 100%);
    color: #fff;
    padding: 2rem 0 3.5rem;
}

@media (min-width: 1024px) {
    .ce-hero {
        padding: 2.5rem 0 4.5rem;
        min-height: calc(100vh - 4rem);
        min-height: calc(100dvh - 4rem);
        display: flex;
        align-items: center;
    }
}

.ce-hero-bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ce-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
}

.ce-hero-glow--right {
    width: 28rem;
    height: 28rem;
    top: 8%;
    right: -4%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.18) 0%, transparent 70%);
}

.ce-hero-glow--left {
    width: 16rem;
    height: 16rem;
    bottom: 10%;
    left: -5%;
    background: radial-gradient(circle, rgba(23, 178, 106, 0.1) 0%, transparent 70%);
}

.ce-hero-orbit {
    position: absolute;
    border: 1px solid rgba(37, 211, 102, 0.08);
    border-radius: 50%;
}

.ce-hero-orbit--1 {
    width: 22rem;
    height: 22rem;
    top: 12%;
    right: 6%;
    opacity: 0.55;
}

.ce-hero-orbit--2 {
    width: 32rem;
    height: 32rem;
    top: 4%;
    right: -2%;
    opacity: 0.35;
}

.ce-hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(69, 240, 176, 0.65);
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
}

.ce-hero-particle--1 { top: 22%; right: 18%; }
.ce-hero-particle--2 { top: 38%; right: 28%; opacity: 0.7; }
.ce-hero-particle--3 { bottom: 28%; right: 12%; opacity: 0.5; }
.ce-hero-particle--4 { top: 55%; right: 8%; opacity: 0.45; }

.ce-container {
    width: min(100% - 2rem, 80rem);
    margin-inline: auto;
}

.ce-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ce-hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        gap: 2rem 3rem;
    }
}

/* ——— Left column ——— */

.ce-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--ce-border);
    background: rgba(37, 211, 102, 0.08);
    color: var(--ce-green);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.08);
}

.ce-badge-icon {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
}

.ce-title {
    font-family: Sora, sans-serif;
    font-size: clamp(2rem, 4.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.ce-title-line {
    display: block;
}

.ce-title-accent {
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.ce-lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    line-height: 1.65;
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.ce-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

@media (min-width: 560px) {
    .ce-actions {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
        gap: 0.85rem;
        max-width: 40rem;
    }

    .ce-actions .ce-btn {
        width: 100%;
        min-height: 3.05rem;
        padding-inline: 1.15rem;
    }
}

.ce-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.82rem 1.35rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.ce-btn:hover {
    transform: translateY(-2px);
}

.ce-btn-primary {
    background: linear-gradient(135deg, #25d366 0%, #17b26a 100%);
    color: #041610;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.ce-btn-primary:hover {
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.48);
}

.ce-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-color: rgba(37, 211, 102, 0.35);
    backdrop-filter: blur(8px);
}

.ce-btn-secondary:hover {
    border-color: rgba(37, 211, 102, 0.55);
    background: rgba(37, 211, 102, 0.08);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.1);
}

.ce-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.ce-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
}

.ce-btn-block {
    width: 100%;
}

.ce-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.ce-chrome-icon,
.ce-ext-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.ce-btn-primary .ce-ext-icon {
    width: 1.3rem;
    height: 1.3rem;
}

.ce-badge-icon.ce-ext-icon {
    width: 0.9rem;
    height: 0.9rem;
}

.ce-ext-panel-icon .ce-ext-icon {
    width: 1rem;
    height: 1rem;
}

.ce-btn-arrow {
    width: 1rem;
    height: 1rem;
    opacity: 0.85;
}

.ce-play-icon {
    display: inline-flex;
    width: 1.35rem;
    height: 1.35rem;
    color: var(--ce-green);
}

.ce-play-icon svg {
    width: 100%;
    height: 100%;
}

.ce-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
    width: 100%;
    max-width: 40rem;
}

@media (max-width: 559px) {
    .ce-feature-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: none;
        gap: 0.45rem;
    }
}

.ce-feature-card {
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    padding: 0.58rem 0.62rem;
    border-radius: 11px;
    border: 1px solid rgba(37, 211, 102, 0.22);
    background: rgba(7, 28, 21, 0.62);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.ce-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 211, 102, 0.42);
    background: rgba(10, 36, 28, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 28px rgba(37, 211, 102, 0.12);
}

@media (max-width: 559px) {
    .ce-feature-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.55rem 0.45rem;
        gap: 0.35rem;
    }
}

.ce-feature-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 559px) {
    .ce-feature-label {
        white-space: normal;
        font-size: 0.62rem;
        line-height: 1.15;
    }
}

.ce-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    background: rgba(37, 211, 102, 0.12);
    color: var(--ce-green);
}

.ce-feature-icon svg {
    width: 1rem;
    height: 1rem;
}

.ce-feature-icon--wa {
    background: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0;
}

.ce-feature-icon--wa img {
    display: block;
    object-fit: contain;
}

.ce-trust {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    max-width: 32rem;
}

.ce-trust-icon {
    width: 1rem;
    height: 1rem;
    color: var(--ce-green);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ——— Right column product snapshot ——— */

.ce-hero-visual {
    position: relative;
    min-height: 24rem;
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
    perspective: 1100px;
    transform-style: preserve-3d;
    padding: 2rem 0.85rem 1.75rem 0;
    overflow: visible;
}

@media (min-width: 1024px) {
    .ce-hero-visual {
        min-height: 31rem;
        max-width: none;
        margin-inline: 0;
        padding: 2.5rem 1.35rem 2.25rem 0;
    }
}

.ce-mockup-glow {
    position: absolute;
    z-index: 0;
    inset: 8% 4% 10% 6%;
    border-radius: 22px;
    background: radial-gradient(ellipse at 55% 45%, rgba(37, 211, 102, 0.16) 0%, transparent 68%);
    filter: blur(8px);
    pointer-events: none;
    animation: ce-mockup-glow 7s ease-in-out infinite;
}

@keyframes ce-mockup-glow {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.03); }
}

.ce-browser {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    border: 1px solid var(--ce-border);
    background: linear-gradient(180deg, rgba(12, 38, 30, 0.95) 0%, rgba(6, 22, 17, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(37, 211, 102, 0.12);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.ce-browser-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.85rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ce-browser-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.ce-browser-dot--red { background: #ff5f57; }
.ce-browser-dot--yellow { background: #febc2e; }
.ce-browser-dot--green { background: #28c840; }

.ce-browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-left: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.65);
}

.ce-browser-url svg {
    width: 0.75rem;
    height: 0.75rem;
    opacity: 0.7;
}

.ce-browser-body {
    display: flex;
    min-height: 14.5rem;
}

.ce-wa-sidebar {
    width: 2.6rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 0.35rem;
    background: rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.ce-wa-sidebar-icon {
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.45);
}

.ce-wa-sidebar-icon--active:has(img) {
    background: transparent;
    box-shadow: none;
}

.ce-wa-sidebar-icon--active img {
    display: block;
    object-fit: contain;
}

.ce-wa-sidebar-icon--highlight {
    background: rgba(37, 211, 102, 0.22);
    color: var(--ce-green);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
}

.ce-wa-sidebar-icon--bottom {
    margin-top: auto;
}

.ce-wa-main {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.75rem 0.75rem;
}

.ce-wa-header {
    padding-bottom: 0.55rem;
    margin-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ce-wa-header strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.15rem;
}

.ce-wa-header span {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.45);
}

.ce-wa-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ce-wa-contact {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.25rem;
    border-radius: 8px;
}

.ce-wa-avatar {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    background: var(--avatar-color, #6366f1);
}

.ce-wa-contact-meta {
    flex: 1;
    min-width: 0;
}

.ce-wa-contact-meta strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ce-wa-contact-meta span {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.42);
}

.ce-wa-check svg {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
}

/* Extension floating panel */
.ce-ext-panel-wrap {
    position: absolute;
    z-index: 5;
    top: 0.35rem;
    right: 0.5rem;
    width: 14.25rem;
    transform-style: preserve-3d;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

@media (min-width: 1024px) {
    .ce-ext-panel-wrap {
        top: 0.15rem;
        right: 0.85rem;
        width: 14.5rem;
    }
}

@media (max-width: 640px) {
    .ce-ext-panel-wrap {
        top: 0.75rem;
        right: 0.35rem;
        width: 12.5rem;
    }
}

.ce-ext-panel {
    padding: 1.05rem 1.05rem 0.95rem;
    border-radius: 18px;
    border: 1.5px solid rgba(69, 240, 176, 0.48);
    background:
        linear-gradient(155deg, rgba(18, 52, 42, 0.94) 0%, rgba(8, 30, 24, 0.9) 100%);
    backdrop-filter: blur(20px);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.58),
        0 0 44px rgba(37, 211, 102, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(920px) rotateY(-12deg) rotateX(5deg) rotateZ(-1deg);
    transform-origin: 72% 42%;
}

.ce-panel-glow {
    animation: ce-panel-glow 5.5s ease-in-out infinite;
}

@keyframes ce-panel-glow {
    0%, 100% { box-shadow: 0 24px 56px rgba(0, 0, 0, 0.58), 0 0 36px rgba(37, 211, 102, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 24px 56px rgba(0, 0, 0, 0.58), 0 0 52px rgba(37, 211, 102, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

.ce-ext-panel-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ce-ext-panel-icon {
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 10px;
    background: rgba(37, 211, 102, 0.22);
    color: var(--ce-green);
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.3);
}

.ce-ext-panel-head strong {
    font-size: 0.86rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.ce-ext-status {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.2rem;
}

.ce-ext-found {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.ce-ext-count {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ce-green);
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
    letter-spacing: -0.01em;
    margin-bottom: 0.05rem;
}

.ce-ext-dot {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--ce-green);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.9);
    flex-shrink: 0;
    margin-top: 0.35rem;
}

.ce-ext-ready {
    margin: 0 0 0.7rem;
    padding-left: 0.95rem;
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.46);
}

.ce-ext-progress {
    height: 0.42rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.ce-ext-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: repeating-linear-gradient(
        -45deg,
        #25d366,
        #25d366 5px,
        #17b26a 5px,
        #17b26a 10px
    );
    transition: width 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}

#ce-hero.is-animated .ce-ext-progress span {
    width: 82%;
}

.ce-ext-export {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #25d366 0%, #17b26a 100%);
    color: #041610;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ce-ext-export:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* Floating file cards — separated composition */
.ce-file-cards {
    position: absolute;
    z-index: 4;
    bottom: 5%;
    right: 3%;
    width: 11.5rem;
    height: 9rem;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .ce-file-cards {
        bottom: 6%;
        right: 2.5%;
        width: 12rem;
        height: 9.25rem;
    }
}

.ce-file-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.42),
        0 0 24px rgba(37, 211, 102, 0.14);
}

.ce-file-top {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem 0.5rem 0.25rem;
}

.ce-file-type-icon {
    display: inline-flex;
    width: 1.65rem;
    height: 1.65rem;
}

.ce-file-type-icon svg {
    width: 100%;
    height: 100%;
}

.ce-file-grid-lines {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    width: 100%;
    padding-top: 0.1rem;
}

.ce-file-grid-lines span {
    display: block;
    height: 0.14rem;
    border-radius: 999px;
    background: rgba(18, 140, 85, 0.18);
}

.ce-file-grid-lines span:nth-child(2) { width: 78%; }
.ce-file-grid-lines span:nth-child(3) { width: 55%; }

.ce-file-meta {
    position: relative;
    z-index: 1;
    padding: 0 0.5rem 0.45rem;
}

.ce-file-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 1.15rem;
    height: 1.15rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.48) 50%, rgba(190, 225, 205, 0.58) 50%);
    border-bottom-left-radius: 5px;
    z-index: 2;
}

.ce-file-fold--csv {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.38) 50%, rgba(170, 210, 200, 0.5) 50%);
}

.ce-file-xlsx {
    top: 0;
    left: 0;
    width: 4.85rem;
    height: 5.85rem;
    z-index: 2;
    background: linear-gradient(165deg, #ffffff 0%, #f4fbf8 55%, #e9f7ef 100%);
    transform: perspective(800px) rotateY(-5deg) rotateX(4deg) rotateZ(-4deg);
    transform-origin: center center;
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.4),
        0 0 32px rgba(37, 211, 102, 0.26);
    animation: ce-float-file-xlsx 6.2s ease-in-out infinite;
}

.ce-file-footer {
    height: 1.25rem;
    background: linear-gradient(90deg, #17b26a 0%, #25d366 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.ce-file-csv {
    bottom: 0;
    right: 0;
    width: 4.1rem;
    height: 5rem;
    z-index: 1;
    background: linear-gradient(165deg, rgba(240, 250, 246, 0.95) 0%, rgba(210, 235, 225, 0.92) 100%);
    transform: perspective(800px) rotateY(5deg) rotateX(3deg) rotateZ(5deg);
    transform-origin: center center;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.32),
        0 0 20px rgba(15, 118, 110, 0.14);
    animation: ce-float-file-csv 6.8s ease-in-out 0.6s infinite;
}

@keyframes ce-float-file-xlsx {
    0%, 100% { transform: perspective(800px) rotateY(-5deg) rotateX(4deg) rotateZ(-4deg) translateY(0); }
    50% { transform: perspective(800px) rotateY(-5deg) rotateX(4deg) rotateZ(-4deg) translateY(-4px); }
}

@keyframes ce-float-file-csv {
    0%, 100% { transform: perspective(800px) rotateY(5deg) rotateX(3deg) rotateZ(5deg) translateY(0); }
    50% { transform: perspective(800px) rotateY(5deg) rotateX(3deg) rotateZ(5deg) translateY(-3px); }
}

.ce-file-badge {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #128c55;
    letter-spacing: 0.04em;
    line-height: 1;
}

.ce-file-badge--csv {
    font-size: 0.72rem;
    color: #0f766e;
}

.ce-file-label {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.52rem;
    font-weight: 600;
    color: #60736a;
}

.ce-file-label--csv {
    color: #5a7a72;
}

/* Privacy card */
.ce-privacy-card {
    position: absolute;
    z-index: 3;
    bottom: 7%;
    left: 2%;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    border: 1px solid var(--ce-border);
    background: var(--ce-glass);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.ce-privacy-icon {
    width: 1rem;
    height: 1rem;
    color: var(--ce-green);
    flex-shrink: 0;
}

.ce-privacy-card strong {
    display: block;
    font-size: 0.62rem;
    color: #fff;
    line-height: 1.2;
}

.ce-privacy-card span {
    display: block;
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.5);
}

.ce-connector {
    position: absolute;
    z-index: 2;
    bottom: 30%;
    right: 18%;
    width: 6rem;
    height: 3.5rem;
    opacity: 0.8;
    transform: rotate(-4deg);
    pointer-events: none;
}

/* Entrance + floating animations */
@keyframes ce-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.ce-float {
    animation: ce-float 5.5s ease-in-out infinite;
}

.ce-float-delay {
    animation: ce-float 6s ease-in-out 0.5s infinite;
}

@media (prefers-reduced-motion: reduce) {
    .ce-float,
    .ce-float-delay,
    .ce-float-delay-2,
    .ce-float-file-xlsx,
    .ce-float-file-csv,
    .ce-mockup-glow,
    .ce-panel-glow {
        animation: none;
    }

    .ce-connector-dot {
        display: none;
    }

    #ce-hero.is-animated .ce-ext-progress span {
        width: 82%;
        transition: none;
    }
}

#contact-extractor-page .ce-hero .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-hero .reveal.reveal-visual {
    transform: translateX(28px);
    opacity: 0;
}

#contact-extractor-page .ce-hero .reveal.is-visible,
html.motion-js #contact-extractor-page .ce-hero .reveal.is-visible {
    opacity: 1;
    transform: none;
}

#contact-extractor-page .ce-hero .reveal-delay-1 { transition-delay: 0.05s; }
#contact-extractor-page .ce-hero .reveal-delay-2 { transition-delay: 0.12s; }
#contact-extractor-page .ce-hero .reveal-delay-3 { transition-delay: 0.19s; }
#contact-extractor-page .ce-hero .reveal-delay-4 { transition-delay: 0.26s; }
#contact-extractor-page .ce-hero .reveal-delay-5 { transition-delay: 0.33s; }
#contact-extractor-page .ce-hero .reveal-delay-6 { transition-delay: 0.4s; }
#contact-extractor-page .ce-hero .reveal-visual { transition-delay: 0.38s; }

@media (max-width: 1023px) {
    .ce-hero-visual {
        margin-top: 0.5rem;
        padding: 1.85rem 0.75rem 1.65rem 0;
    }

    .ce-file-cards {
        bottom: 4%;
        right: 2%;
        width: 10.5rem;
        height: 8.25rem;
    }

    .ce-file-xlsx {
        width: 4.45rem;
        height: 5.35rem;
    }

    .ce-file-csv {
        width: 3.85rem;
        height: 4.65rem;
    }

    .ce-ext-panel-wrap {
        top: 0.5rem;
        right: 0.5rem;
    }

    .ce-privacy-card {
        left: 1%;
        bottom: 5%;
    }

    .ce-connector {
        bottom: 28%;
        right: 16%;
    }
}

@media (max-width: 640px) {
    .ce-actions {
        grid-template-columns: 1fr;
    }

    .ce-btn {
        width: 100%;
    }

    .ce-browser-body {
        min-height: 12rem;
    }

    .ce-wa-contact:nth-child(n+4) {
        display: none;
    }

    .ce-hero-visual {
        padding: 1.65rem 0.55rem 1.35rem 0;
    }

    .ce-ext-panel-wrap {
        top: 0.75rem;
        right: 0.35rem;
    }

    .ce-ext-panel {
        transform: perspective(800px) rotateY(-10deg) rotateX(4deg) rotateZ(-0.5deg);
        transform-origin: 72% 42%;
    }

    .ce-file-cards {
        bottom: 3%;
        right: 1.5%;
        width: 9.5rem;
        height: 7.5rem;
    }

    .ce-file-xlsx {
        width: 3.85rem;
        height: 4.65rem;
    }

    .ce-file-csv {
        width: 3.45rem;
        height: 4.15rem;
    }

    .ce-connector {
        display: none;
    }
}

/* ——— How It Works (reference-matched) ——— */

#contact-extractor-page .ce-how {
    position: relative;
    overflow: visible;
    padding: 5rem 0 1.75rem;
    background: linear-gradient(180deg, #f8fbf9 0%, #fff 48%, #f9fcfa 100%);
}

.ce-how-decor {
    pointer-events: none;
    position: absolute;
    inset: 0;
}

.ce-how-dots {
    position: absolute;
    width: 6rem;
    height: 6rem;
    background-image: radial-gradient(circle, rgba(23, 178, 106, 0.22) 1.5px, transparent 1.5px);
    background-size: 11px 11px;
    opacity: 0.45;
}

.ce-how-dots--left { top: 3.5rem; left: 1rem; }
.ce-how-dots--right { bottom: 3rem; right: 1rem; }

.ce-how-arc {
    position: absolute;
    border: 1px solid rgba(23, 178, 106, 0.12);
    border-radius: 50%;
}

.ce-how-arc--tr {
    width: 12rem;
    height: 12rem;
    top: 2rem;
    right: -2rem;
    border-color: rgba(23, 178, 106, 0.1);
}

.ce-how-arc--tl {
    width: 8rem;
    height: 8rem;
    top: 6rem;
    left: -2rem;
    opacity: 0.6;
}

.ce-how-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.ce-how-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.95rem;
    margin-bottom: 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 178, 106, 0.35);
    background: #fff;
    color: #17b26a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.08);
}

.ce-how-pill-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
}

.ce-how-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.ce-how-spark {
    display: none;
    color: #25d366;
    opacity: 0.85;
    flex-shrink: 0;
}

.ce-how-spark svg {
    width: 1.15rem;
    height: 1.15rem;
}

@media (min-width: 640px) {
    .ce-how-spark {
        display: block;
    }
}

.ce-how-title {
    font-family: Sora, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.ce-how-title-dark {
    color: #0f1f18;
}

.ce-how-title-green {
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ce-how-lead {
    margin: 0 auto;
    max-width: 34rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.65;
}

.ce-how-steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    margin-bottom: 0;
}

@media (min-width: 960px) {
    .ce-how-steps {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 0.35rem;
        align-items: stretch;
    }

    .ce-how-link {
        align-self: center;
    }
}

.ce-how-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 18.5rem;
    padding: 1.35rem 1.25rem 2.75rem;
    background: #fff;
    border: 1.5px solid #128c55;
    border-radius: 20px;
    box-shadow:
        0 4px 24px rgba(15, 31, 24, 0.05),
        0 0 0 1px rgba(18, 140, 85, 0.06);
    overflow: hidden;
}

.ce-how-step-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #17b26a 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.ce-how-icon-stage {
    position: relative;
    width: 5.75rem;
    height: 5.75rem;
    margin: 0.85rem 0 1.35rem;
    flex-shrink: 0;
}

.ce-how-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #f0fbf5 0%, #e2f5eb 55%, #d8f0e4 100%);
    box-shadow: inset 0 0 0 1px rgba(23, 178, 106, 0.08);
}

.ce-how-icon-main {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #17b26a;
}

.ce-how-icon-main svg {
    width: 2.35rem;
    height: 2.35rem;
}

.ce-how-icon-main--puzzle img {
    width: 2.85rem;
    height: 2.85rem;
    filter: drop-shadow(0 3px 8px rgba(18, 140, 85, 0.28));
    object-fit: contain;
    display: block;
}

.ce-how-icon-main--wa img {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
    display: block;
}

.ce-how-icon-sub {
    position: absolute;
    bottom: 0.1rem;
    right: 0.05rem;
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(23, 178, 106, 0.22);
    color: #17b26a;
    box-shadow: 0 4px 14px rgba(7, 28, 21, 0.1);
}

.ce-how-icon-sub svg {
    width: 0.9rem;
    height: 0.9rem;
}

.ce-how-icon-sub--chrome {
    padding: 0.08rem;
    overflow: hidden;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    box-shadow: none;
}

.ce-how-icon-sub--chrome img {
    width: 1.85rem;
    height: 1.85rem;
    object-fit: contain;
    display: block;
}

.ce-how-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f1f18;
    margin: 0 0 0.55rem;
    line-height: 1.3;
}

.ce-how-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 15rem;
}

.ce-how-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(232, 247, 239, 0.55) 100%);
    clip-path: ellipse(85% 100% at 50% 100%);
    opacity: 0.9;
}

.ce-how-accent {
    position: absolute;
    bottom: 1.15rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.75rem;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #25d366 0%, #17b26a 100%);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.35);
}

.ce-how-link {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex-shrink: 0;
    pointer-events: none;
    width: 100%;
    height: 4.75rem;
    padding: 0.15rem 0;
}

@media (min-width: 960px) {
    .ce-how-link {
        width: 5.75rem;
        height: 3.25rem;
        padding: 0.35rem 0;
    }
}

.ce-how-link-svg {
    overflow: visible;
    flex-shrink: 0;
}

.ce-how-link-svg--desk {
    display: none;
    width: 100%;
    height: 100%;
}

.ce-how-link-svg--mob {
    display: block;
    width: 3rem;
    height: 100%;
}

@media (min-width: 960px) {
    .ce-how-link-svg--desk {
        display: block;
    }

    .ce-how-link-svg--mob {
        display: none;
    }
}

.ce-how-path {
    fill: none;
    stroke: rgba(23, 178, 106, 0.38);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 4 7;
    vector-effect: non-scaling-stroke;
}

.ce-how-link-dot {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .ce-how-link-dot {
        display: none;
    }
}

@media (max-width: 959px) {
    .ce-how-card {
        min-height: auto;
        padding-bottom: 2.5rem;
        margin-bottom: 0;
    }

    .ce-how-card + .ce-how-link {
        margin: 0.15rem 0;
    }
}

@media (max-width: 639px) {
    #contact-extractor-page .ce-how {
        padding: 3.5rem 0 1.5rem;
    }

    .ce-how-head {
        margin-bottom: 2rem;
    }
}

#contact-extractor-page .ce-how .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-how .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Key Features section ── */
#contact-extractor-page .ce-feat {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 0 1.5rem;
    background: linear-gradient(180deg, #fff 0%, #f9fcfa 55%, #fff 100%);
}

.ce-feat-decor {
    pointer-events: none;
    position: absolute;
    inset: 0;
}

.ce-feat-arc {
    position: absolute;
    border: 1px solid rgba(23, 178, 106, 0.14);
    border-radius: 50%;
}

.ce-feat-arc--tl {
    width: 14rem;
    height: 14rem;
    top: -4rem;
    left: -3rem;
    border-color: rgba(23, 178, 106, 0.1);
}

.ce-feat-dots {
    position: absolute;
    background-image: radial-gradient(circle, rgba(23, 178, 106, 0.28) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.55;
}

.ce-feat-dots--tr {
    width: 4.5rem;
    height: 4.5rem;
    top: 2.5rem;
    right: 2rem;
}

.ce-feat-spark {
    position: absolute;
    color: #25d366;
    opacity: 0.75;
}

.ce-feat-spark svg {
    width: 1rem;
    height: 1rem;
}

.ce-feat-spark--bl {
    bottom: 2.5rem;
    left: 1.5rem;
}

.ce-feat-spark--br {
    bottom: 3rem;
    right: 2.5rem;
}

.ce-feat-spark--br2 {
    bottom: 1.75rem;
    right: 4rem;
    opacity: 0.5;
    transform: scale(0.75);
}

.ce-feat-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2rem;
}

.ce-feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.95rem;
    margin-bottom: 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 178, 106, 0.35);
    background: #fff;
    color: #17b26a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.08);
}

.ce-feat-pill-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
}

.ce-feat-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.ce-feat-spark-head {
    display: none;
    color: #25d366;
    opacity: 0.85;
    flex-shrink: 0;
}

.ce-feat-spark-head svg {
    width: 1.15rem;
    height: 1.15rem;
}

@media (min-width: 640px) {
    .ce-feat-spark-head {
        display: block;
    }
}

.ce-feat-title {
    font-family: Sora, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.ce-feat-title-dark {
    color: #0f1f18;
}

.ce-feat-title-green {
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ce-feat-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.15rem;
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .ce-feat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .ce-feat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.ce-feat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 9.5rem;
    padding: 1.35rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(23, 178, 106, 0.18);
    border-radius: 18px;
    box-shadow: 0 4px 22px rgba(7, 28, 21, 0.04);
    overflow: hidden;
}

.ce-feat-card--featured {
    border: 1.5px solid #17b26a;
    box-shadow:
        0 6px 28px rgba(37, 211, 102, 0.1),
        0 0 0 1px rgba(23, 178, 106, 0.08);
    overflow: visible;
}

.ce-feat-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(23, 178, 106, 0.35);
    color: #17b26a;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.1);
    z-index: 2;
}

.ce-feat-featured-badge svg {
    width: 0.65rem;
    height: 0.65rem;
    color: #25d366;
}

.ce-feat-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: grid;
    place-items: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #17b26a 100%);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    z-index: 1;
}

.ce-feat-card-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.85rem;
}

.ce-feat-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #f0fbf5 0%, #e2f5eb 55%, #d8f0e4 100%);
    box-shadow: inset 0 0 0 1px rgba(23, 178, 106, 0.08);
}

.ce-feat-icon svg {
    width: 2.65rem;
    height: 2.65rem;
}

.ce-feat-copy {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.ce-feat-copy h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f1f18;
    line-height: 1.35;
    margin: 0 0 0.4rem;
}

.ce-feat-copy p {
    margin: 0;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.55;
}

.ce-feat-corner-dots {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    width: 2.75rem;
    height: 2.75rem;
    background-image: radial-gradient(circle, rgba(23, 178, 106, 0.22) 1.2px, transparent 1.2px);
    background-size: 7px 7px;
    opacity: 0.65;
    pointer-events: none;
}

.ce-feat-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(232, 247, 239, 0.65) 100%);
    clip-path: ellipse(80% 100% at 50% 100%);
    opacity: 0.95;
    pointer-events: none;
}

@media (max-width: 639px) {
    #contact-extractor-page .ce-feat {
        padding: 1.25rem 0 2.5rem;
    }

    .ce-feat-head {
        margin-bottom: 2rem;
    }

    .ce-feat-icon {
        width: 3.75rem;
        height: 3.75rem;
    }

    .ce-feat-icon svg {
        width: 2.35rem;
        height: 2.35rem;
    }
}

#contact-extractor-page .ce-feat .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-feat .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.ce-section {
    padding: 4rem 0;
}

.ce-section-muted {
    background: #f7faf8;
}

.ce-section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.ce-eyebrow {
    display: inline-block;
    color: #17b26a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.ce-section-head h2,
.ce-privacy h2 {
    font-family: Sora, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #10231b;
    margin-bottom: 0.75rem;
}

.ce-section-head p,
.ce-feature p,
.ce-step p,
.ce-privacy p {
    color: #60736a;
    line-height: 1.6;
}

.ce-steps,
.ce-features {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ce-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ce-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ce-step,
.ce-feature,
.ce-privacy {
    background: #fff;
    border: 1px solid #d8e7de;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 24px rgba(7, 28, 21, 0.04);
}

.ce-step-num {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eaf8f1;
    color: #17b26a;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ce-step h3,
.ce-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #10231b;
    margin-bottom: 0.5rem;
}

.ce-privacy {
    max-width: 48rem;
    margin: 0 auto;
}

.ce-cta {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0 4.75rem;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 55% at 50% 45%, rgba(18, 140, 85, 0.22) 0%, transparent 68%),
        radial-gradient(ellipse 45% 35% at 15% 20%, rgba(37, 211, 102, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 85% 80%, rgba(37, 211, 102, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, #020807 0%, #041610 38%, #071c15 72%, #020807 100%);
}

.ce-cta-decor {
    pointer-events: none;
    position: absolute;
    inset: 0;
}

.ce-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
}

.ce-cta-glow--tl {
    width: 16rem;
    height: 16rem;
    top: -4rem;
    left: -4rem;
    background: rgba(37, 211, 102, 0.14);
}

.ce-cta-glow--br {
    width: 18rem;
    height: 18rem;
    bottom: -5rem;
    right: -4rem;
    background: rgba(37, 211, 102, 0.12);
}

.ce-cta-dots {
    position: absolute;
    background-image: radial-gradient(circle, rgba(37, 211, 102, 0.35) 1.5px, transparent 1.5px);
    background-size: 11px 11px;
    opacity: 0.45;
}

.ce-cta-dots--tl {
    width: 5.5rem;
    height: 5.5rem;
    top: 2.5rem;
    left: 2rem;
}

.ce-cta-dots--br {
    width: 5.5rem;
    height: 5.5rem;
    bottom: 2.5rem;
    right: 2rem;
}

.ce-cta-arc {
    position: absolute;
    border: 1px solid rgba(37, 211, 102, 0.14);
    border-radius: 50%;
}

.ce-cta-arc--tr {
    width: 11rem;
    height: 11rem;
    top: 1.5rem;
    right: -2rem;
}

.ce-cta-arc--bl {
    width: 9rem;
    height: 9rem;
    bottom: 1.5rem;
    left: -2rem;
    opacity: 0.7;
}

.ce-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.ce-cta-icon-area {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.35rem;
}

.ce-cta-icon-ring {
    position: absolute;
    inset: 0.65rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, 0.45);
    background: rgba(7, 28, 21, 0.55);
    color: #25d366;
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.08),
        0 0 28px rgba(37, 211, 102, 0.28);
}

.ce-cta-icon-ring svg {
    width: 1.15rem;
    height: 1.15rem;
}

.ce-cta-spark {
    position: absolute;
    color: #25d366;
    opacity: 0.85;
}

.ce-cta-spark svg {
    width: 0.75rem;
    height: 0.75rem;
}

.ce-cta-spark--1 { top: 0.1rem; left: 0.85rem; }
.ce-cta-spark--2 { top: 0.35rem; right: 0.65rem; opacity: 0.65; transform: scale(0.85); }
.ce-cta-spark--3 { bottom: 0.55rem; left: 0.35rem; opacity: 0.55; transform: scale(0.75); }
.ce-cta-spark--4 { bottom: 0.25rem; right: 0.95rem; opacity: 0.7; }

.ce-cta-label {
    display: block;
    color: #25d366;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.ce-cta-title {
    font-family: Sora, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 0.75rem;
}

.ce-cta-accent {
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ce-cta-lead {
    margin: 0 auto 2rem;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.98rem;
    line-height: 1.65;
}

.ce-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.85rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #17b26a 100%);
    color: #041610;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.35),
        0 10px 36px rgba(37, 211, 102, 0.42),
        0 0 48px rgba(37, 211, 102, 0.22);
}

.ce-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.45),
        0 16px 44px rgba(37, 211, 102, 0.52),
        0 0 56px rgba(37, 211, 102, 0.28);
}

.ce-cta-btn-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.ce-cta-btn-arrow {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    stroke: #041610;
}

.ce-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 2.35rem;
}

.ce-cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 500;
}

.ce-cta-trust-item + .ce-cta-trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.ce-cta-trust-icon {
    display: grid;
    place-items: center;
    color: #25d366;
    flex-shrink: 0;
}

.ce-cta-trust-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

@media (max-width: 639px) {
    .ce-cta {
        padding: 1.25rem 0 3.5rem;
    }

    .ce-cta-lead {
        font-size: 0.92rem;
        margin-bottom: 1.75rem;
    }

    .ce-cta-btn {
        width: 100%;
        max-width: 20rem;
    }

    .ce-cta-trust {
        flex-direction: column;
        gap: 0.65rem;
        margin-top: 2rem;
    }

    .ce-cta-trust-item {
        padding: 0;
        border-left: none !important;
    }

    .ce-cta-dots--tl,
    .ce-cta-dots--br {
        opacity: 0.3;
    }
}

#contact-extractor-page .ce-cta .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-cta .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.ce-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ce-modal.is-open {
    display: flex;
}

.ce-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 28, 21, 0.65);
}

.ce-modal-panel {
    position: relative;
    width: min(100%, 28rem);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(7, 28, 21, 0.25);
}

.ce-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 0;
}

.ce-modal-header h2 {
    font-family: Sora, sans-serif;
    font-size: 1.25rem;
    color: #10231b;
}

.ce-modal-close {
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: #60736a;
    cursor: pointer;
}

.ce-modal-body {
    padding: 1rem 1.25rem 1.25rem;
}

.ce-modal-intro {
    color: #60736a;
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.ce-field {
    margin-bottom: 0.85rem;
}

.ce-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #10231b;
    margin-bottom: 0.35rem;
}

.ce-field input {
    width: 100%;
    border: 1px solid #d8e7de;
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font: inherit;
    color: #10231b;
    background: #fff;
}

.ce-field input:focus {
    outline: none;
    border-color: #17b26a;
    box-shadow: 0 0 0 3px rgba(23, 178, 106, 0.15);
}

.ce-message-area .message {
    margin-top: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    font-size: 0.88rem;
}

.ce-message-area .message.success {
    background: #eaf8f1;
    color: #128c55;
}

.ce-message-area .message.error {
    background: #fef2f2;
    color: #b91c1c;
}

.ce-message-area .message.info {
    background: #eff6ff;
    color: #1d4ed8;
}

.ce-success-box {
    background: #eaf8f1;
    border: 1px solid #d8e7de;
    border-radius: 10px;
    padding: 0.85rem;
    margin-bottom: 0.85rem;
}

.ce-success-box strong {
    display: block;
    color: #10231b;
    margin-bottom: 0.25rem;
}

.ce-success-box span {
    color: #60736a;
    font-size: 0.88rem;
}

.ce-success-actions {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ce-install-steps {
    margin: 0;
    padding-left: 1.1rem;
    color: #60736a;
    font-size: 0.85rem;
    line-height: 1.5;
}

.ce-install-steps li + li {
    margin-top: 0.35rem;
}

#contact-extractor-page .hidden {
    display: none !important;
}

/* ——— Contact Extractor page animations ——— */

@keyframes ce-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ce-fade-right {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ce-pop-in {
    from {
        opacity: 0;
        transform: scale(0.72);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ce-cta-glow-breathe {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(37, 211, 102, 0.35),
            0 10px 36px rgba(37, 211, 102, 0.38),
            0 0 42px rgba(37, 211, 102, 0.16);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(37, 211, 102, 0.45),
            0 14px 42px rgba(37, 211, 102, 0.48),
            0 0 56px rgba(37, 211, 102, 0.24);
    }
}

@keyframes ce-border-glow-soft {
    0%, 100% {
        box-shadow:
            0 6px 28px rgba(37, 211, 102, 0.1),
            0 0 0 1px rgba(23, 178, 106, 0.08);
    }
    50% {
        box-shadow:
            0 8px 34px rgba(37, 211, 102, 0.16),
            0 0 0 1px rgba(23, 178, 106, 0.2),
            0 0 22px rgba(37, 211, 102, 0.1);
    }
}

@keyframes ce-cta-glow-drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(8px, -6px); opacity: 0.75; }
}

@keyframes ce-cta-arc-drift {
    0%, 100% { transform: rotate(0deg); opacity: 0.55; }
    50% { transform: rotate(4deg); opacity: 0.85; }
}

@keyframes ce-icon-sweep {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

#contact-extractor-page .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--ce-reveal-delay, 0ms);
    will-change: opacity, transform;
}

#contact-extractor-page .reveal.is-visible {
    opacity: 1;
    transform: none;
}

#contact-extractor-page .ce-hero .reveal.reveal-visual {
    transform: translateX(26px);
}

#contact-extractor-page .ce-hero .reveal.reveal-visual.is-visible {
    transform: none;
}

#contact-extractor-page .ce-title.reveal {
    opacity: 1;
    transform: none;
}

#contact-extractor-page .ce-title.reveal .ce-title-line {
    display: block;
    opacity: 0;
    transform: translateY(14px);
}

#contact-extractor-page .ce-title.reveal.is-visible .ce-title-line {
    animation: ce-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#contact-extractor-page .ce-title.reveal.is-visible .ce-title-line:nth-child(1) {
    animation-delay: 0.06s;
}

#contact-extractor-page .ce-title.reveal.is-visible .ce-title-line:nth-child(2) {
    animation-delay: 0.16s;
}

#contact-extractor-page .ce-hero-mini-card {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

#contact-extractor-page .ce-hero-mini-card.is-entered {
    opacity: 1;
    transform: translateY(0);
}

#contact-extractor-page .ce-wa-contact {
    opacity: 0;
    transform: translateX(-10px);
}

#contact-extractor-page .ce-wa-contact.is-entered {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-wa-check {
    opacity: 0;
    transform: scale(0.65);
}

#contact-extractor-page .ce-wa-contact.is-entered .ce-wa-check {
    animation: ce-pop-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.18s;
}

#contact-extractor-page .ce-mockup-enter {
    opacity: 0;
    transform: translateY(14px);
}

#contact-extractor-page .ce-mockup-enter.is-entered {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-browser.ce-mockup-enter.is-entered {
    animation: ce-fade-right 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 1;
    transform: none;
}

#contact-extractor-page .ce-feat-card.reveal:not(.is-visible) .ce-feat-featured-badge {
    opacity: 0;
}

#contact-extractor-page .ce-how-card.reveal:not(.is-visible) .ce-how-wave,
#contact-extractor-page .ce-how-card.reveal:not(.is-visible) .ce-how-accent {
    opacity: 0;
}

#contact-extractor-page .ce-how-card.reveal.is-visible .ce-how-wave,
#contact-extractor-page .ce-how-card.reveal.is-visible .ce-how-accent {
    opacity: 1;
    transition: opacity 0.65s ease calc(var(--ce-reveal-delay, 0ms) + 220ms);
}

#contact-extractor-page .ce-how-card.reveal:not(.is-visible) .ce-how-step-num,
#contact-extractor-page .ce-feat-card.reveal:not(.is-visible) .ce-feat-num {
    opacity: 0;
}

#contact-extractor-page .ce-how-card.reveal.is-visible .ce-how-step-num,
#contact-extractor-page .ce-feat-card.reveal.is-visible .ce-feat-num {
    animation: ce-pop-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--ce-reveal-delay, 0ms) + 120ms);
}

#contact-extractor-page .ce-how-card.reveal.is-visible .ce-how-icon-main,
#contact-extractor-page .ce-how-card.reveal.is-visible .ce-how-icon-main img,
#contact-extractor-page .ce-feat-card.reveal.is-visible .ce-feat-icon {
    animation: ce-pop-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--ce-reveal-delay, 0ms) + 180ms);
}

#contact-extractor-page .ce-how-card,
#contact-extractor-page .ce-feat-card {
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

#contact-extractor-page .ce-how-card:hover {
    transform: translateY(-4px);
    border-color: #17b26a;
    box-shadow:
        0 10px 32px rgba(18, 140, 85, 0.12),
        0 0 0 1px rgba(23, 178, 106, 0.12),
        0 0 24px rgba(37, 211, 102, 0.08);
}

#contact-extractor-page .ce-how-card:hover .ce-how-icon-main {
    transform: translateY(-3px);
}

#contact-extractor-page .ce-how-card:hover .ce-how-icon-sub {
    transform: scale(1.06);
}

#contact-extractor-page .ce-how-icon-main,
#contact-extractor-page .ce-how-icon-sub {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 178, 106, 0.42);
    box-shadow:
        0 10px 30px rgba(18, 140, 85, 0.1),
        0 0 22px rgba(37, 211, 102, 0.07);
}

#contact-extractor-page .ce-feat-card:hover .ce-feat-icon {
    transform: scale(1.04);
}

#contact-extractor-page .ce-feat-icon {
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-feat-card:hover .ce-feat-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    animation: ce-icon-sweep 0.75s ease-out forwards;
}

#contact-extractor-page .ce-feat-card--featured {
    animation: ce-border-glow-soft 4.5s ease-in-out infinite;
}

#contact-extractor-page .ce-feat-card.reveal.is-visible .ce-feat-featured-badge {
    animation: ce-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--ce-reveal-delay, 0ms) + 80ms);
    opacity: 0;
}

#contact-extractor-page .ce-btn-primary,
#contact-extractor-page .ce-cta-btn {
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease;
}

#contact-extractor-page .ce-btn-primary:hover,
#contact-extractor-page .ce-cta-btn:hover {
    transform: translateY(-2px);
}

#contact-extractor-page .ce-btn-primary:active,
#contact-extractor-page .ce-cta-btn:active {
    transform: translateY(0) scale(0.98);
}

#contact-extractor-page .ce-btn-primary:hover .ce-btn-arrow,
#contact-extractor-page .ce-cta-btn:hover .ce-cta-btn-arrow {
    transform: translateX(3px);
}

#contact-extractor-page .ce-btn-primary:hover .ce-ext-icon,
#contact-extractor-page .ce-cta-btn:hover .ce-cta-btn-icon {
    transform: translateX(-2px);
}

#contact-extractor-page .ce-btn-arrow,
#contact-extractor-page .ce-cta-btn-arrow,
#contact-extractor-page .ce-btn-primary .ce-ext-icon,
#contact-extractor-page .ce-cta-btn-icon {
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-cta-btn {
    animation: ce-cta-glow-breathe 3.8s ease-in-out infinite;
}

#contact-extractor-page .ce-cta-glow {
    animation: ce-cta-glow-drift 9s ease-in-out infinite;
}

#contact-extractor-page .ce-cta-glow--br {
    animation-delay: 1.5s;
}

#contact-extractor-page .ce-cta-arc {
    animation: ce-cta-arc-drift 12s ease-in-out infinite;
}

#contact-extractor-page .ce-cta-arc--bl {
    animation-delay: 2s;
}

#contact-extractor-page .ce-cta-trust-stagger {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

#contact-extractor-page .ce-cta-trust-stagger.is-visible {
    opacity: 1;
    transform: none;
}

#contact-extractor-page .ce-cta-icon-area.reveal.is-visible .ce-cta-icon-ring {
    animation: ce-pop-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#contact-extractor-page a[href="#how-it-works"].is-section-active {
    border-color: rgba(37, 211, 102, 0.55);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    #contact-extractor-page .reveal,
    #contact-extractor-page .ce-hero-mini-card,
    #contact-extractor-page .ce-wa-contact,
    #contact-extractor-page .ce-mockup-enter,
    #contact-extractor-page .ce-cta-trust-stagger {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    #contact-extractor-page .ce-title.reveal .ce-title-line,
    #contact-extractor-page .ce-wa-check,
    #contact-extractor-page .ce-feat-card--featured {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    #contact-extractor-page .ce-cta-btn,
    #contact-extractor-page .ce-cta-glow,
    #contact-extractor-page .ce-cta-arc,
    #contact-extractor-page .ce-feat-card--featured {
        animation: none !important;
    }

    #contact-extractor-page .ce-how-card:hover,
    #contact-extractor-page .ce-feat-card:hover,
    #contact-extractor-page .ce-btn-primary:hover,
    #contact-extractor-page .ce-cta-btn:hover {
        transform: none;
    }
}
