/* EduDigitize Landing — premium SaaS */
:root {
    --ed-teal: #0d9488;
    --ed-teal-dark: #0f766e;
    --ed-teal-light: #14b8a6;
    --ed-teal-50: #f0fdfa;
    --ed-teal-100: #ccfbf1;
    --ed-slate-900: #0f172a;
    --ed-slate-700: #334155;
    --ed-slate-500: #64748b;
    --ed-slate-200: #e2e8f0;
    --ed-slate-50: #f8fafc;
    --ed-white: #ffffff;
    --ed-radius: 12px;
    --ed-radius-lg: 16px;
    --ed-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --ed-shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --ed-nav-h: 72px;
    --ed-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.ed-landing {
    margin: 0;
    font-family: var(--ed-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ed-slate-700);
    background: var(--ed-white);
    -webkit-font-smoothing: antialiased;
}

.ed-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* —— Nav —— */
.ed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--ed-nav-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ed-slate-200);
    transition: box-shadow 0.2s ease;
}

.ed-nav.is-scrolled { box-shadow: var(--ed-shadow); }

.ed-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--ed-nav-h);
}

.ed-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ed-slate-900);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.ed-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.ed-logo-text {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ed-logo--footer .ed-logo-img {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 4px;
}

.ed-logo--footer .ed-logo-text {
    color: #fff;
}

.ed-nav-links {
    display: none;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ed-nav-links a {
    text-decoration: none;
    color: var(--ed-slate-500);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.15s;
}

.ed-nav-links a:hover { color: var(--ed-teal-dark); }

.ed-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ed-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
}

.ed-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ed-slate-900);
    border-radius: 1px;
}

.ed-mobile-menu {
    display: none;
    position: fixed;
    top: var(--ed-nav-h);
    left: 0;
    right: 0;
    background: var(--ed-white);
    border-bottom: 1px solid var(--ed-slate-200);
    padding: 16px 24px 24px;
    box-shadow: var(--ed-shadow);
    z-index: 999;
}

.ed-mobile-menu.is-open { display: block; }

.ed-mobile-menu ul {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.ed-mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--ed-slate-700);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--ed-slate-200);
}

@media (min-width: 992px) {
    .ed-nav-links { display: flex; }
    .ed-nav-toggle { display: none; }
    .ed-mobile-menu { display: none !important; }
}

/* —— Buttons —— */
.ed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.ed-btn:active { transform: translateY(1px); }

.ed-btn-primary {
    background: linear-gradient(180deg, var(--ed-teal-light), var(--ed-teal));
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.ed-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
    color: #fff;
}

.ed-btn-ghost {
    background: var(--ed-white);
    color: var(--ed-slate-900) !important;
    border: 1px solid var(--ed-slate-200);
}

.ed-btn-ghost:hover {
    border-color: var(--ed-teal);
    color: var(--ed-teal-dark) !important;
}

.ed-btn-lg { padding: 14px 28px; font-size: 1rem; }

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

/* —— Sections —— */
.ed-section {
    padding: 96px 0;
}

.ed-section-sm { padding: 64px 0; }

.ed-section-alt { background: var(--ed-slate-50); }

.ed-section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.ed-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ed-slate-900);
}

.ed-section-head p {
    margin: 0;
    color: var(--ed-slate-500);
    font-size: 1.05rem;
}

.ed-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--ed-teal-50);
    color: var(--ed-teal-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

/* —— Hero —— */
.ed-hero {
    padding: calc(var(--ed-nav-h) + 64px) 0 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20, 184, 166, 0.12), transparent),
        var(--ed-white);
}

.ed-hero-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.ed-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: var(--ed-slate-900);
}

.ed-hero h1 span {
    background: linear-gradient(135deg, var(--ed-teal), var(--ed-teal-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ed-hero-sub {
    margin: 0 auto 32px;
    max-width: 540px;
    font-size: 1.125rem;
    color: var(--ed-slate-500);
    line-height: 1.65;
}

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

.ed-hero-visual {
    max-width: 960px;
    margin: 0 auto;
}

/* —— Stats —— */
.ed-stats {
    padding: 32px 0;
    background: var(--ed-slate-900);
    color: #fff;
}

.ed-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.ed-stat strong {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ed-teal-light);
}

.ed-stat span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

@media (max-width: 480px) {
    .ed-stat span { font-size: 0.72rem; }
}

@media (min-width: 768px) {
    .ed-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* —— Customer logos —— */
.ed-customers {
    padding: 40px 0 44px;
    background: var(--ed-white);
    border-top: 1px solid var(--ed-slate-200);
    border-bottom: 1px solid var(--ed-slate-200);
}

.ed-customers-inner {
    text-align: center;
}

.ed-customers-eyebrow {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ed-teal-dark);
}

.ed-customers-title {
    margin: 0 0 28px;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 600;
    color: var(--ed-slate-500);
    letter-spacing: -0.01em;
}

.ed-customers-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

.ed-customers-logos li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 14px 18px;
    background: var(--ed-slate-50);
    border: 1px solid var(--ed-slate-200);
    border-radius: var(--ed-radius);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ed-customers-logos li:hover {
    border-color: var(--ed-teal-100);
    box-shadow: var(--ed-shadow);
}

.ed-customers-logos img {
    display: block;
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (min-width: 640px) {
    .ed-customers-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .ed-customers {
        padding: 48px 0;
    }

    .ed-customers-logos {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .ed-customers-logos li {
        flex: 1 1 0;
        min-width: 0;
        max-width: 180px;
        min-height: 80px;
    }

    .ed-customers-logos img {
        max-height: 56px;
    }
}

/* —— Features grid —— */
.ed-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .ed-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .ed-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.ed-feature-card {
    padding: 28px;
    background: var(--ed-white);
    border: 1px solid var(--ed-slate-200);
    border-radius: var(--ed-radius-lg);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ed-feature-card:hover {
    border-color: var(--ed-teal-100);
    box-shadow: var(--ed-shadow);
    transform: translateY(-2px);
}

.ed-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ed-teal-50);
    color: var(--ed-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.ed-feature-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ed-slate-900);
}

.ed-feature-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ed-slate-500);
    line-height: 1.5;
}

/* —— Browser frame —— */
.ed-browser {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--ed-shadow-lg);
    border: 1px solid var(--ed-slate-200);
    background: #1e293b;
}

.ed-browser-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #334155;
}

.ed-browser-dots {
    display: flex;
    gap: 6px;
}

.ed-browser-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.ed-browser-dots i:nth-child(1) { background: #f87171; }
.ed-browser-dots i:nth-child(2) { background: #fbbf24; }
.ed-browser-dots i:nth-child(3) { background: #4ade80; }

.ed-browser-url {
    flex: 1;
    padding: 6px 14px;
    background: #1e293b;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

.ed-browser-body {
    background: #f1f5f9;
    min-height: 280px;
    position: relative;
}

.ed-browser-body--screenshot {
    min-height: 0;
    background: #0f172a;
    line-height: 0;
}

.ed-browser-body--screenshot img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

/* —— Dashboard mock UI —— */
.ed-mock { padding: 16px; font-size: 11px; }

.ed-mock-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 56px;
    background: #0f172a;
    padding: 12px 8px;
}

.ed-mock-sidebar span {
    display: block;
    height: 8px;
    background: #334155;
    border-radius: 4px;
    margin-bottom: 8px;
}

.ed-mock-sidebar span.is-active { background: var(--ed-teal); }

.ed-mock-main {
    margin-left: 56px;
    padding: 12px 16px 16px;
}

.ed-mock-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.ed-mock-topbar h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.ed-mock-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.ed-mock-stat {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #e2e8f0;
}

.ed-mock-stat b {
    display: block;
    font-size: 14px;
    color: var(--ed-teal);
    margin-bottom: 2px;
}

.ed-mock-stat small { color: #64748b; }

.ed-mock-chart {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    height: 100px;
    padding: 10px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.ed-mock-chart span {
    flex: 1;
    background: linear-gradient(180deg, var(--ed-teal-light), var(--ed-teal));
    border-radius: 4px 4px 0 0;
    opacity: 0.85;
}

.ed-mock-chart span:nth-child(2) { height: 55%; }
.ed-mock-chart span:nth-child(3) { height: 80%; }
.ed-mock-chart span:nth-child(4) { height: 45%; }
.ed-mock-chart span:nth-child(5) { height: 70%; }
.ed-mock-chart span:nth-child(6) { height: 90%; }
.ed-mock-chart span:nth-child(1) { height: 40%; }

.ed-mock-table {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.ed-mock-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8px;
    padding: 8px 10px;
    border-bottom: 1px solid #f1f5f9;
}

.ed-mock-row.head {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
}

.ed-mock-row .pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 600;
}

.ed-mock-row .pill.ok { background: #d1fae5; color: #065f46; }
.ed-mock-row .pill.warn { background: #fef3c7; color: #92400e; }

.ed-mock-panel[hidden] { display: none !important; }

#demo-preview .ed-browser { margin: 0 auto; max-width: 900px; }

@media (max-width: 640px) {
    .ed-mock-stats { grid-template-columns: repeat(2, 1fr); }
}

/* —— Demo tabs —— */
.ed-demo-tabs-wrap {
    margin-bottom: 24px;
}

.ed-demo-tabs-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 0.8rem;
    color: var(--ed-slate-500);
}

.ed-demo-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 2px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--ed-teal-100) transparent;
}

.ed-demo-tabs::-webkit-scrollbar {
    height: 6px;
}

.ed-demo-tabs::-webkit-scrollbar-thumb {
    background: var(--ed-teal-100);
    border-radius: 999px;
}

.ed-demo-tab {
    flex-shrink: 0;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--ed-slate-200);
    background: var(--ed-white);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ed-slate-500);
    cursor: pointer;
    transition: all 0.15s;
}

.ed-demo-tab.is-active,
.ed-demo-tab:hover {
    background: var(--ed-teal);
    border-color: var(--ed-teal);
    color: #fff;
}

.ed-demo-actions {
    text-align: center;
    margin-top: 32px;
}

/* —— Pricing —— */
.ed-pricing-toggle-wrap {
    text-align: center;
    margin-bottom: 36px;
}

.ed-pricing-toggle {
    display: inline-flex;
    padding: 4px;
    background: var(--ed-slate-50);
    border: 1px solid var(--ed-slate-200);
    border-radius: 999px;
    gap: 4px;
}

.ed-pricing-toggle button {
    border: none;
    background: transparent;
    color: var(--ed-slate-500);
    font-family: var(--ed-font);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ed-pricing-toggle button.is-active {
    background: var(--ed-white);
    color: var(--ed-slate-900);
    box-shadow: var(--ed-shadow);
}

.ed-pricing-save {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ed-teal);
    background: rgba(13, 148, 136, 0.12);
    border-radius: 999px;
    vertical-align: middle;
}

.ed-pricing-toggle-note {
    margin: 14px 0 0;
    font-size: 0.875rem;
    color: var(--ed-slate-500);
}

.ed-pricing-toggle-note i {
    color: var(--ed-teal);
    margin-right: 6px;
}

.ed-pricing-panel[hidden] {
    display: none !important;
}

.ed-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
    padding-top: 14px;
}

@media (min-width: 640px) {
    .ed-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
    .ed-pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.ed-price-card {
    position: relative;
    padding: 0;
    background: var(--ed-white);
    border: 1px solid var(--ed-slate-200);
    border-radius: var(--ed-radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--ed-shadow);
}

.ed-price-card.is-popular {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25), var(--ed-shadow-lg);
    overflow: visible;
}

.ed-price-card.is-popular .ed-price-card-head {
    border-radius: var(--ed-radius-lg) var(--ed-radius-lg) 0 0;
}

.ed-price-badge {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    width: max-content;
    max-width: calc(100% - 16px);
    margin-inline: auto;
    transform: none;
    padding: 5px 12px;
    background: #facc15;
    color: #713f12;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    z-index: 2;
    white-space: nowrap;
}

.ed-price-badge i {
    margin-right: 4px;
}

.ed-price-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 14px 14px;
    color: #fff;
    text-align: center;
    min-height: 120px;
}

.ed-price-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.15rem;
}

.ed-price-card-head h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ed-price-card-tagline {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0;
    text-transform: none;
    max-width: 200px;
}

.ed-price-card--green .ed-price-card-head { background: #16a34a; }
.ed-price-card--blue .ed-price-card-head { background: #2563eb; }
.ed-price-card--red .ed-price-card-head { background: #dc2626; }
.ed-price-card--navy .ed-price-card-head { background: #1e3a5f; }

.ed-price-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 16px 20px;
    text-align: left;
}

.ed-price-students {
    margin: 0 0 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ed-slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.ed-price-students i {
    color: var(--ed-teal);
    font-size: 0.75rem;
}

.ed-price-ideal {
    margin: 0 0 14px;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--ed-slate-500);
    text-align: center;
}

.ed-price-amount-block {
    margin: 0 0 14px;
    padding: 14px 12px;
    border-radius: 10px;
    background: var(--ed-slate-50);
    border: 1px solid var(--ed-slate-200);
    text-align: center;
}

.ed-price-amount-block--contact {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ed-price-from {
    margin: 0 0 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ed-slate-500);
}

.ed-price-note {
    margin: 8px 0 0;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--ed-slate-500);
}

.ed-price-features {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    text-align: left;
    flex: 1;
}

.ed-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--ed-slate-600);
}

.ed-price-features li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.625rem;
    color: var(--ed-teal);
}

.ed-price-amount {
    margin: 0;
    font-size: clamp(1.35rem, 3.5vw, 1.65rem);
    font-weight: 800;
    color: var(--ed-slate-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ed-price-card--green .ed-price-amount { color: #16a34a; }
.ed-price-card--blue .ed-price-amount { color: #2563eb; }
.ed-price-card--red .ed-price-amount { color: #dc2626; }
.ed-price-card--navy .ed-price-amount { color: #1e3a5f; }

.ed-price-amount span {
    display: block;
    margin-top: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ed-slate-500);
}

.ed-price-amount--contact {
    font-size: 1.05rem;
    line-height: 1.45;
    margin: 0;
}

.ed-price-promo {
    margin: 0 0 18px;
    padding: 12px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.ed-price-promo--green { background: #f0fdf4; }
.ed-price-promo--blue { background: #eff6ff; }
.ed-price-promo--red { background: #fef2f2; }

.ed-price-promo-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ed-slate-500);
}

.ed-price-promo-amount {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
}

.ed-price-promo--green .ed-price-promo-amount { color: #16a34a; }
.ed-price-promo--blue .ed-price-promo-amount { color: #2563eb; }
.ed-price-promo--red .ed-price-promo-amount { color: #dc2626; }

.ed-price-promo-amount span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--ed-slate-500);
}

.ed-price-promo-off {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}

.ed-price-promo--green .ed-price-promo-off { background: #16a34a; }
.ed-price-promo--blue .ed-price-promo-off { background: #2563eb; }
.ed-price-promo--red .ed-price-promo-off { background: #dc2626; }

.ed-price-card-body .ed-btn {
    margin-top: auto;
}

.ed-pricing-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    list-style: none;
    margin: 40px 0 0;
    padding: 24px 20px;
    background: var(--ed-teal-50);
    border: 1px solid var(--ed-teal-100);
    border-radius: var(--ed-radius-lg);
}

@media (min-width: 640px) {
    .ed-pricing-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .ed-pricing-benefits { grid-template-columns: repeat(4, 1fr); gap: 12px 20px; }
}

.ed-pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ed-slate-700);
}

.ed-pricing-benefits li i {
    color: var(--ed-teal-dark);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ed-pricing-contact {
    text-align: center;
    margin: 24px 0 0;
    font-size: 0.875rem;
    color: var(--ed-slate-500);
}

.ed-pricing-contact a {
    color: var(--ed-teal-dark);
    font-weight: 600;
    text-decoration: none;
}

.ed-pricing-contact a:hover {
    text-decoration: underline;
}

/* —— Why choose —— */
.ed-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .ed-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .ed-why-grid { grid-template-columns: repeat(3, 1fr); }
}

.ed-why-item {
    text-align: center;
    padding: 24px 16px;
}

.ed-why-item i {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ed-teal-50);
    color: var(--ed-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.ed-why-item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ed-slate-900);
}

.ed-why-item p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--ed-slate-500);
    line-height: 1.45;
}

/* —— Testimonials —— */
.ed-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 992px) {
    .ed-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.ed-testimonial {
    padding: 28px;
    background: var(--ed-white);
    border: 1px solid var(--ed-slate-200);
    border-radius: var(--ed-radius-lg);
}

.ed-testimonial > p {
    margin: 0 0 20px;
    font-size: 0.95rem;
    color: var(--ed-slate-700);
    line-height: 1.6;
    font-style: italic;
}

.ed-testimonial cite {
    display: block;
    font-style: normal;
}

.ed-testimonial cite strong {
    display: block;
    color: var(--ed-slate-900);
    font-size: 0.9rem;
}

.ed-testimonial cite span {
    font-size: 0.8rem;
    color: var(--ed-slate-500);
}

/* —— FAQ —— */
.ed-faq {
    max-width: 720px;
    margin: 0 auto;
}

.ed-faq-item {
    border-bottom: 1px solid var(--ed-slate-200);
}

.ed-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ed-slate-900);
    text-align: left;
    cursor: pointer;
}

.ed-faq-q i {
    flex-shrink: 0;
    color: var(--ed-teal);
    transition: transform 0.2s;
}

.ed-faq-item.is-open .ed-faq-q i { transform: rotate(180deg); }

.ed-faq-a {
    display: none;
    padding: 0 0 20px;
    color: var(--ed-slate-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ed-faq-item.is-open .ed-faq-a { display: block; }

/* —— Contact form —— */
.ed-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 992px) {
    .ed-contact-grid { grid-template-columns: 1fr 1fr; }
}

.ed-form-card {
    padding: 32px;
    background: var(--ed-white);
    border: 1px solid var(--ed-slate-200);
    border-radius: var(--ed-radius-lg);
    box-shadow: var(--ed-shadow);
}

.ed-form-group {
    margin-bottom: 16px;
}

.ed-form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ed-slate-700);
    margin-bottom: 6px;
}

.ed-form-group input,
.ed-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--ed-slate-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.ed-form-group input:focus,
.ed-form-group textarea:focus {
    outline: none;
    border-color: var(--ed-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.ed-alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.ed-alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* —— CTA banner —— */
.ed-cta-banner {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--ed-teal-dark), var(--ed-teal));
    color: #fff;
    text-align: center;
}

.ed-cta-banner h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
}

.ed-cta-banner p {
    margin: 0 0 28px;
    opacity: 0.9;
    font-size: 1.05rem;
}

.ed-cta-banner .ed-btn-primary {
    background: #fff;
    color: var(--ed-teal-dark) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* —— Footer —— */
.ed-footer {
    padding: 64px 0 0;
    background: var(--ed-slate-900);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.ed-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .ed-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .ed-footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}

.ed-footer h3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ed-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ed-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color 0.15s;
}

.ed-footer a:hover { color: var(--ed-teal-light); }

.ed-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.8rem;
}

.ed-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.ed-trust-badges span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.7rem;
}

/* —— WhatsApp & back to top —— */
.ed-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    text-decoration: none;
}

.ed-back-top {
    position: fixed;
    bottom: 24px;
    right: 92px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ed-slate-900);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 900;
    text-decoration: none;
    opacity: 0.9;
}

.ed-back-top.is-visible { display: flex; }

/* —— Video modal —— */
.ed-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
}

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

.ed-modal-box {
    width: 100%;
    max-width: 800px;
}

.ed-modal-box--video {
    max-width: 960px;
    background: var(--ed-white);
    border-radius: var(--ed-radius-lg);
    overflow: hidden;
    position: relative;
}

.ed-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

.ed-modal-body {
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.ed-modal-body--video {
    aspect-ratio: 16/9;
    width: 100%;
}

.ed-modal-body--video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

.ed-feature-icon i,
.ed-why-item i {
    line-height: 1;
}

/* —— Scroll animations (opacity only — transform breaks absolute children e.g. pricing badges) —— */
.ed-reveal {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ed-reveal.is-visible {
    opacity: 1;
}

/* —— Nav CTA short label (mobile) —— */
.ed-nav-cta-short {
    display: none;
}

/* —— Stats label variants —— */
.ed-stat-label-short {
    display: none;
}

/* —— Mobile & tablet (≤991px) —— */
@media (max-width: 991px) {
    body.ed-landing {
        overflow-x: hidden;
    }

    body.ed-menu-open {
        overflow: hidden;
        touch-action: none;
    }

    .ed-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ed-section {
        padding: 56px 0;
    }

    .ed-section-head {
        margin-bottom: 36px;
    }

    .ed-section-head p {
        font-size: 0.9375rem;
    }

    .ed-hero {
        padding: calc(var(--ed-nav-h) + 28px) 0 44px;
    }

    .ed-hero-inner {
        margin-bottom: 28px;
    }

    .ed-hero h1 {
        font-size: clamp(1.45rem, 6.2vw, 2rem);
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .ed-hero-sub {
        font-size: 0.9375rem;
        margin-bottom: 22px;
        padding: 0 4px;
    }

    .ed-hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .ed-hero-cta .ed-btn {
        width: 100%;
    }

    .ed-hero-visual,
    #demo-preview {
        max-width: 100%;
        overflow: hidden;
    }

    .ed-browser {
        max-width: 100%;
    }

    .ed-browser-chrome {
        padding: 10px 12px;
        gap: 8px;
    }

    .ed-browser-url {
        font-size: 0.65rem;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 6px 10px;
    }

    .ed-stats {
        padding: 28px 0;
    }

    .ed-stats-grid {
        gap: 16px 12px;
    }

    .ed-stat strong {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .ed-stat-label-long {
        display: none;
    }

    .ed-stat-label-short {
        display: inline;
    }

    .ed-feature-card {
        padding: 22px 20px;
    }

    .ed-feature-card:hover {
        transform: none;
    }

    .ed-demo-tabs-wrap {
        margin-left: -16px;
        margin-right: -16px;
        padding: 0 16px;
    }

    .ed-demo-tab {
        padding: 8px 14px;
        font-size: 0.8125rem;
    }

    .ed-pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ed-price-card.is-popular {
        order: -1;
    }

    .ed-price-badge {
        top: -10px;
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .ed-contact-grid {
        gap: 28px;
    }

    .ed-form-card {
        padding: 22px 18px;
    }

    .ed-form-group input,
    .ed-form-group textarea {
        font-size: 16px;
    }

    .ed-cta-banner {
        padding: 48px 16px;
    }

    .ed-cta-banner h2 {
        font-size: clamp(1.35rem, 5vw, 1.65rem);
    }

    .ed-footer {
        padding-top: 48px;
    }

    .ed-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .ed-mobile-menu {
        max-height: calc(100dvh - var(--ed-nav-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .ed-modal {
        padding: 16px;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        align-items: center;
        justify-content: center;
    }

    .ed-modal-box,
    .ed-modal-box--video {
        max-width: 100%;
        max-height: calc(100dvh - 32px);
        margin: auto;
        border-radius: var(--ed-radius-lg);
        background: var(--ed-white);
        overflow: hidden;
        position: relative;
    }

    .ed-modal-body--video {
        aspect-ratio: 16 / 9;
        width: 100%;
        max-height: calc(100dvh - 88px);
    }

    .ed-modal-body--video video {
        width: 100%;
        height: 100%;
        max-height: calc(100dvh - 88px);
        object-fit: contain;
    }

    .ed-whatsapp {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }

    .ed-back-top {
        bottom: max(78px, calc(env(safe-area-inset-bottom) + 62px));
        right: max(16px, env(safe-area-inset-right));
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .ed-nav-inner .ed-nav-cta {
        padding: 10px 12px;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    :root {
        --ed-nav-h: 64px;
    }

    .ed-nav-inner {
        height: var(--ed-nav-h);
    }

    .ed-mobile-menu {
        top: var(--ed-nav-h);
    }

    .ed-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ed-logo-img {
        width: 34px;
        height: 34px;
    }

    .ed-logo-text {
        font-size: 0.95rem;
    }

    .ed-nav-cta-long {
        display: none;
    }

    .ed-nav-cta-short {
        display: inline;
    }

    .ed-demo-tabs-wrap {
        margin-left: -14px;
        margin-right: -14px;
        padding: 0 14px;
    }

    .ed-demo-tabs-hint {
        font-size: 0.75rem;
    }

    .ed-label {
        font-size: 0.68rem;
        padding: 5px 10px;
    }

    .ed-enterprise-note {
        padding: 20px 16px;
    }

    .ed-enterprise-note .ed-btn {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .ed-logo-text {
        display: none;
    }

    .ed-nav-inner .ed-nav-cta {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}
