/* ===== Education Industry Page ===== */

/* Scroll animations */
.ed-page [data-anim] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(80ms + var(--delay, 0ms));
    will-change: opacity, transform;
}
.ed-page [data-anim="fade-up"]    { transform: translateY(40px); }
.ed-page [data-anim="fade-left"]  { transform: translateX(48px); }
.ed-page [data-anim="fade-right"] { transform: translateX(-48px); }
.ed-page [data-anim="zoom-in"]    { transform: scale(0.94); }
.ed-page [data-anim].in-view { opacity: 1; transform: translate(0,0) scale(1); }
@media (prefers-reduced-motion: reduce) {
    .ed-page [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.ed-page {
    min-height: 100vh;
    background: #f8fafc;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem 0;
    overflow-x: clip;
    font-family: 'Inter', system-ui, sans-serif;
}

.ed-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}
.ed-glow--tl { top: -100px; left: -120px; width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(0,168,150,0.08) 0%, transparent 65%); }
.ed-glow--br { bottom: -80px; right: -100px; width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(0,168,150,0.06) 0%, transparent 65%); }

/* ── Hero ── */
.ed-hero {
    position: relative;
    width: 100%;
    min-height: calc(80vh - 6rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 3rem;
}

.ed-watermark {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(70px, 13vw, 170px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

@media (max-width: 600px) {
    .ed-watermark {
        top: 0;
        font-size: clamp(52px, 15vw, 64px);
    }
}

.ed-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ed-tag {
    display: inline-block;
    border: 1px solid rgba(0,168,150,0.4);
    color: #00A896;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(0,168,150,0.06);
}

.ed-title {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.ed-title-accent {
    color: #00A896;
}

.ed-sub {
    font-size: 1.02rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 660px;
}

/* three-pillar quick nav pills */
.ed-pillar-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.ed-pillar-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 9px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(15,23,42,0.05);
    transition: border-color 0.15s, color 0.15s, transform 0.15s;
}

.ed-pillar-pill svg {
    width: 15px;
    height: 15px;
    color: #00A896;
}

.ed-pillar-pill:hover {
    border-color: #00A896;
    color: #00A896;
    transform: translateY(-2px);
}

.ed-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.ed-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.ed-cta-btn svg { width: 16px; height: 16px; }

.ed-cta-btn--primary {
    background: linear-gradient(180deg, #00bfac 0%, #00A896 100%);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,168,150,0.35);
}
.ed-cta-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,168,150,0.5); }

.ed-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00A896;
    padding: 13px 10px;
    transition: color 0.15s;
}
.ed-cta-link svg { width: 20px; height: 20px; }
.ed-cta-link:hover { color: #007f71; }

/* ── Three Pillars ── */
.ed-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
}

.ed-pillars {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 4rem auto 0;
    scroll-margin-top: 110px;
}

.ed-pillars-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 3rem;
}

.ed-pillars-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ed-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.ed-pillar-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 12px 40px rgba(15,23,42,0.05);
    display: flex;
    flex-direction: column;
    scroll-margin-top: 110px;
}

.ed-pillar-card--dark {
    background: #2f3a48;
    border-color: rgba(255,255,255,0.08);
    padding-top: 44px;
}

.ed-pillar-live {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #062a26;
    background: linear-gradient(180deg, #2dd4bf 0%, #00A896 100%);
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,168,150,0.35);
}

.ed-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,168,150,0.1);
    color: #00A896;
    margin-bottom: 16px;
}
.ed-pillar-icon svg { width: 22px; height: 22px; }

.ed-pillar-card--dark .ed-pillar-icon {
    background: rgba(45,212,191,0.14);
    color: #2dd4bf;
}

.ed-pillar-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.ed-pillar-tag {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 16px;
}

.ed-pillar-card--dark .ed-pillar-name { color: #ffffff; }
.ed-pillar-card--dark .ed-pillar-tag { color: rgba(255,255,255,0.6); }

.ed-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ed-pillar-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
}

.ed-pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00A896;
}

.ed-pillar-card--dark .ed-pillar-list li { color: rgba(255,255,255,0.72); }
.ed-pillar-card--dark .ed-pillar-list li::before { background: #2dd4bf; }

@media (max-width: 900px) {
    .ed-pillars-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .ed-pillar-card--dark { padding-top: 40px; }
    .ed-pillar-live { white-space: normal; text-align: center; width: max-content; max-width: 90%; }
}

/* ── The Problem ── */
.ed-problem {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 5rem auto 0;
}

.ed-problem-card {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.ed-problem-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.ed-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ed-prob-col {
    display: flex;
    flex-direction: column;
    padding: 0 clamp(0.9rem, 2vw, 1.5rem);
    border-left: 1px dashed #e2e8f0;
}
.ed-prob-col:first-child { border-left: none; padding-left: 0; }
.ed-prob-col:last-child { padding-right: 0; }

.ed-prob-chip {
    display: inline-block;
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 600;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.ed-prob-chip--dark {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.ed-prob-body {
    border-top: 1px dashed #e2e8f0;
    padding-top: 18px;
    flex: 1;
}

.ed-prob-heading {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.ed-prob-text {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}

.ed-prob-art {
    margin-top: 20px;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ed-prob-art svg {
    width: 100%;
    max-width: 230px;
    height: auto;
}

@media (max-width: 900px) {
    .ed-problem-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.25rem;
    }
    .ed-prob-col:nth-child(odd) { border-left: none; padding-left: 0; }
    .ed-prob-col:nth-child(even) { padding-right: 0; }
}

@media (max-width: 560px) {
    .ed-problem-grid { grid-template-columns: 1fr; }
    .ed-prob-col { border-left: none; padding: 0; }
}

/* ── Pillar deep-dives ── */
.ed-deep {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 6rem auto 3rem;
    scroll-margin-top: 110px;
}

/* full-bleed white band variant */
.ed-deep--band {
    max-width: none;
    width: 100vw;
    margin: 3rem 0 0 calc(50% - 50vw);
    background: #ffffff;
    padding: 4.5rem max(2rem, calc((100vw - 1160px) / 2)) 4.5rem;
}

.ed-deep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.ed-deep-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.ed-deep-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ed-deep-sub {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
}

.ed-deep-points {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ed-deep-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
}

.ed-deep-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(0,168,150,0.12);
    color: #00A896;
}
.ed-deep-check svg { width: 12px; height: 12px; }

/* call transcript mockup */
.ed-call {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(15,23,42,0.1);
    padding: 20px;
}

.ed-call-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #e2e8f0;
}

.ed-call-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0f172a;
}

.ed-call-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: ed-pulse 1.6s ease-in-out infinite;
}

@keyframes ed-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    55%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.ed-call-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ed-call-tags span {
    font-size: 0.66rem;
    font-weight: 600;
    color: #00796b;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.2);
    padding: 3px 9px;
    border-radius: 999px;
}

.ed-call-msgs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ed-call-msg {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 14px;
}

.ed-call-msg .ed-call-who {
    display: block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.ed-call-msg p {
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0;
}

.ed-call-msg--agent {
    align-self: flex-start;
    background: rgba(0,168,150,0.07);
    border: 1px solid rgba(0,168,150,0.16);
    border-bottom-left-radius: 4px;
}
.ed-call-msg--agent .ed-call-who { color: #00A896; }
.ed-call-msg--agent p { color: #134e4a; }

.ed-call-msg--caller {
    align-self: flex-end;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-bottom-right-radius: 4px;
}
.ed-call-msg--caller .ed-call-who { color: #64748b; }
.ed-call-msg--caller p { color: #334155; }

.ed-call-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
}

.ed-call-foot-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #10b981;
}
.ed-call-foot-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FAQ ── */
.ed-faq {
    position: relative;
    z-index: 1;
    width: 100vw;
    margin: 6rem 0 0 calc(50% - 50vw);
    background: #ffffff;
    padding: 5rem max(2rem, calc((100vw - 1160px) / 2)) 5rem;
}

.ed-faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.ed-faq-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: sticky;
    top: 110px;
}

.ed-faq-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.ed-faq-accent { color: #00A896; }

.ed-faq-sub {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 380px;
}

.ed-faq-sub a {
    color: #00A896;
    font-weight: 600;
    text-decoration: none;
}
.ed-faq-sub a:hover { text-decoration: underline; }

.ed-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ed-faq-item {
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.ed-faq-item[open] { background: #ffffff; }

.ed-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
}
.ed-faq-item summary::-webkit-details-marker { display: none; }

.ed-faq-chev {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #00A896;
    color: #ffffff;
    transition: transform 0.25s ease;
}
.ed-faq-chev svg { width: 11px; height: 8px; }

.ed-faq-item[open] .ed-faq-chev { transform: rotate(180deg); }

.ed-faq-item > p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 92%;
}

.ed-faq-item > p a {
    color: #00A896;
    font-weight: 600;
    text-decoration: none;
}
.ed-faq-item > p a:hover { text-decoration: underline; }

@media (max-width: 820px) {
    .ed-faq-grid { grid-template-columns: 1fr; }
    .ed-faq-intro {
        position: static;
        align-items: center;
        text-align: center;
    }
}

/* ── CTA ── */
.ed-cta-band {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    background: #f8fafc;
    padding: 4rem 2rem 6rem;
    display: flex;
    justify-content: center;
}

.ed-cta-card {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(160deg, #062a26 0%, #0f3933 55%, #0a2521 100%);
    border-radius: 24px;
    padding: 44px 56px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(0,168,150,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 28px 60px rgba(0,168,150,0.18);
}

.ed-cta-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px; height: 320px;
    background: radial-gradient(ellipse, rgba(0,191,172,0.35) 0%, transparent 65%);
    pointer-events: none;
}

.ed-cta-tag {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(0,191,172,0.45);
    color: #5eead4;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(0,191,172,0.08);
    margin-bottom: 12px;
}

.ed-cta-title {
    position: relative;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ed-cta-sub {
    position: relative;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 20px;
}

.ed-cta-actions {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.ed-cta-btn--dark-ghost {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-color: rgba(255,255,255,0.2);
}
.ed-cta-btn--dark-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .ed-cta-card { padding: 32px 22px; border-radius: 20px; }
}

/* ── Comparison ── */
.ed-cmp {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1060px;
    margin: 6rem auto 0;
}

.ed-cmp-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 3rem;
}

.ed-cmp-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ed-cmp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 4px;
}

.ed-cmp-table {
    display: grid;
    grid-template-columns: 1fr 1.35fr 0.9fr;
    min-width: 680px;
}

.ed-cmp-cell {
    padding: 18px 22px;
    border-bottom: 1px solid #e8edf3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ed-cmp-cell--label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    padding-left: 0;
}

.ed-cmp-cell--z {
    background: #ffffff;
    box-shadow: 18px 0 28px -22px rgba(15,23,42,0.14),
                -18px 0 28px -22px rgba(15,23,42,0.14);
}

.ed-cmp-cell--z-top {
    border-radius: 16px 16px 0 0;
    justify-content: center;
    padding: 22px;
    box-shadow: 18px 0 28px -22px rgba(15,23,42,0.14),
                -18px 0 28px -22px rgba(15,23,42,0.14),
                0 -18px 28px -22px rgba(15,23,42,0.14);
}

.ed-cmp-cell--z-bottom {
    border-radius: 0 0 16px 16px;
    border-bottom: none;
    box-shadow: 18px 0 28px -22px rgba(15,23,42,0.14),
                -18px 0 28px -22px rgba(15,23,42,0.14),
                0 18px 28px -22px rgba(15,23,42,0.14);
}

.ed-cmp-logo { height: 26px; width: auto; }

.ed-cmp-cell--z p {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.ed-cmp-cell--t {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.ed-cmp-cell--t-head {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.ed-cmp-cell--t small {
    font-size: 0.72rem;
    color: #94a3b8;
}

.ed-cmp-yes {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(0,168,150,0.12);
    color: #00A896;
}
.ed-cmp-yes svg { width: 14px; height: 14px; }

.ed-cmp-no {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}
.ed-cmp-no svg { width: 16px; height: 16px; }

.ed-cmp-meh {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 720px) {
    .ed-cmp-cell { padding: 14px 14px; }
    .ed-cmp-cell--label { font-size: 0.82rem; }
}

/* ── How It Works ── */
.ed-how {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 6rem auto 0;
}

.ed-how-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.ed-how-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ed-how-dot { color: #00A896; }

.ed-how-wave {
    position: relative;
    width: 100%;
    height: 420px;
}

.ed-how-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* passes over the ghost numbers, under the text */
    filter: drop-shadow(0 16px 16px rgba(0,168,150,0.18));
}

.ed-how-line path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.ed-how-wave.in-view .ed-how-line path {
    animation: ed-draw 1.8s cubic-bezier(0.45, 0, 0.25, 1) 0.2s forwards;
}

@keyframes ed-draw {
    to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .ed-how-line path { stroke-dashoffset: 0; }
    .ed-how-wave.in-view .ed-how-line path { animation: none; }
}

.ed-how-badge {
    position: absolute;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 18px rgba(15,23,42,0.16));
    z-index: 2;
}

.ed-how-badge-hex {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #00A896;
    clip-path: polygon(25% 3%, 75% 3%, 98% 50%, 75% 97%, 25% 97%, 2% 50%);
}
.ed-how-badge-hex svg { width: 24px; height: 24px; }

.ed-how-step {
    position: absolute;
    width: 25%;
}

.ed-how-step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.ed-how-step p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.ed-how-num {
    position: absolute;
    top: -0.32em;
    right: -0.45em;
    font-size: 170px;
    font-weight: 900;
    line-height: 1;
    color: rgba(15,23,42,0.05);
    pointer-events: none;
    user-select: none;
}

.ed-how-step--1 { left: 3%;    top: 16%; }
.ed-how-step--2 { left: 36.5%; top: 58%; }
.ed-how-step--3 { left: 71.5%; top: 6%; }

@media (max-width: 820px) {
    .ed-how-wave {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding-top: 1rem;
    }
    .ed-how-line,
    .ed-how-badge { display: none; }
    .ed-how-step {
        position: static;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        text-align: center;
        padding-top: 8px;
        border-top: 2px solid rgba(0,168,150,0.25);
    }
    .ed-how-num {
        position: static;
        display: block;
        font-size: 64px;
        color: rgba(0,168,150,0.18);
        margin-bottom: 2px;
    }
}

/* "try it" nudge under the points */
.ed-deep-try {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #00A896;
}
.ed-deep-try svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Website Agent browser mockup ── */
.ed-web {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(15,23,42,0.1);
    overflow: hidden;
}

.ed-web-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e8edf3;
}

.ed-web-bar > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e2e8f0;
}

.ed-web-url {
    flex: 1;
    margin-left: 10px;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.72rem;
    color: #64748b;
}

.ed-web-body {
    position: relative;
    padding: 22px;
    min-height: 340px;
}

.ed-web-toast {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #062a26;
    background: linear-gradient(180deg, #2dd4bf 0%, #00A896 100%);
    padding: 7px 13px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,168,150,0.35);
}
.ed-web-toast svg { width: 13px; height: 13px; }

.ed-web-line {
    height: 10px;
    border-radius: 5px;
    background: #f1f5f9;
    margin-bottom: 10px;
    width: 70%;
}
.ed-web-line--title {
    height: 16px;
    width: 45%;
    background: #e2e8f0;
    margin-bottom: 14px;
}
.ed-web-line--short { width: 52%; }

.ed-web-rows {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 55%;
}

.ed-web-row {
    height: 30px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}

.ed-web-widget {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: min(250px, 78%);
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(15,23,42,0.18);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ed-web-msg {
    font-size: 0.78rem;
    line-height: 1.45;
    padding: 8px 11px;
    border-radius: 11px;
    max-width: 92%;
}

.ed-web-msg--user {
    align-self: flex-end;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    border-bottom-right-radius: 4px;
}

.ed-web-msg--agent {
    align-self: flex-start;
    background: rgba(0,168,150,0.07);
    border: 1px solid rgba(0,168,150,0.16);
    color: #134e4a;
    border-bottom-left-radius: 4px;
}

.ed-web-mic {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

.ed-web-mic-ic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(180deg, #00bfac 0%, #00A896 100%);
    color: #ffffff;
}
.ed-web-mic-ic svg { width: 13px; height: 13px; }

.ed-web-eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.ed-web-eq i {
    width: 3px;
    border-radius: 2px;
    background: #00A896;
    animation: ed-eq 1s ease-in-out infinite;
}
.ed-web-eq i:nth-child(1) { height: 6px;  animation-delay: 0s; }
.ed-web-eq i:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.ed-web-eq i:nth-child(3) { height: 16px; animation-delay: 0.3s; }
.ed-web-eq i:nth-child(4) { height: 10px; animation-delay: 0.45s; }
.ed-web-eq i:nth-child(5) { height: 7px;  animation-delay: 0.6s; }

@keyframes ed-eq {
    0%, 100% { transform: scaleY(0.5); }
    50%      { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .ed-web-eq i { animation: none; }
}

.ed-web-mic-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 820px) {
    .ed-deep-grid { grid-template-columns: 1fr; }
    .ed-deep-copy { align-items: center; text-align: center; }
    .ed-deep-points li { text-align: left; }
    .ed-deep-demo { max-width: 520px; margin: 0 auto; width: 100%; }
    /* on mobile, copy reads first even in flipped sections */
    .ed-deep-grid--flip .ed-deep-copy { order: -1; }
    .ed-deep-try { justify-content: center; text-align: left; }
}
