/* styles.css - Basic modern layout for AI Learn landing page */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
}
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 0.5rem 0;
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    transition: background 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s cubic-bezier(0.4,0,0.2,1), backdrop-filter 0.6s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(0px);
}
header.magical {
    background: linear-gradient(90deg, #0ea5e9 0%, #22c55e 100%);
    box-shadow: 0 8px 32px rgba(14,165,233,0.18);
    backdrop-filter: blur(8px);
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s cubic-bezier(0.4,0,0.2,1);
}
.logo {
    font-weight: bold;
    font-size: 1.3rem;
    color: #1e293b;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #0ea5e9;
}
.get-app {
    background: #0ea5e9;
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.get-app:hover {
    background: #0369a1;
}
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #e0f2fe 0%, #fff 100%);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-bg-animated {
    position: absolute;
    top: -80px; left: -80px; right: -80px; bottom: -80px;
    z-index: 0;
    background: radial-gradient(circle at 80% 20%, #a5f3fc 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, #f0abfc 0%, transparent 60%);
    animation: float-bg 8s ease-in-out infinite alternate;
    opacity: 0.5;
}
@keyframes float-bg {
    0% { background-position: 80% 20%, 20% 80%; }
    100% { background-position: 60% 40%, 40% 60%; }
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.hero-text {
    max-width: 540px;
    text-align: left;
}
.hero-visual {
    min-width: 220px;
    max-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-illustration {
    max-width: 400px;
    filter: drop-shadow(0 8px 32px rgba(6,182,212,0.13));
    border-radius: 1.5rem;
    margin-top: 1.5rem;
}
.highlight-gradient {
    background: linear-gradient(90deg, #06b6d4 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.primary.pulse {
    animation: pulse-glow 1.5s infinite alternate;
}
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.15); }
    100% { box-shadow: 0 0 0 12px rgba(34,197,94,0.05); }
}
.badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.badge {
    display: inline-block;
    background: #e0e7ef;
    color: #0ea5e9;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.4rem 1.2rem;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(14,165,233,0.07);
    letter-spacing: 0.01em;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0.5rem 0 1.2rem 0;
    line-height: 1.1;
}
.hero p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero-actions {
    margin: 2.2rem 0 2.2rem 0;
}
.primary {
    background: linear-gradient(90deg, #0ea5e9 0%, #22c55e 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(14,165,233,0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    /* margin-top: 40px; */
}
.cta-subtext {
    margin-bottom: 30px;
}
.primary:hover {
    background: linear-gradient(90deg, #22c55e 0%, #0ea5e9 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(34,197,94,0.12);
}
.secondary {
    background: #fff;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.secondary:hover {
    background: #e0e7ef;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 1.1rem;
}
.hero-stats div {
    text-align: center;
}
.features {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center;
}
.features h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.feature-card {
    background: linear-gradient(135deg, #fbeee6 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: left;
    border: 1px solid #e0e7ef;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;

    align-items: center;

}
.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(14,165,233,0.12);
}
.feature-icon {
    font-size: 2rem;
    color: #06b6d4;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.feature-card h3 {
    color: #06b6d4;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.cta {
    background: #f1f5f9;
    text-align: center;
    padding: 3rem 1rem;
}
.cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
footer {
    background: linear-gradient(90deg, #e5e7eb 0%, #f1f5f9 100%);
    color: #222;
    padding: 2.5rem 1rem 1.2rem 1rem;
    border-top: none;
    box-shadow: 0 -2px 24px rgba(100,116,139,0.07);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 1.2rem;
}
.footer-logo {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.footer-logo img {
    height: 200px;      /* Adjust size as you want */
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 10px; /* space between logo and links */
}

.footer-links {
    display: flex;
    gap: 3rem;
}
.footer-links h4 {
    color: #0ea5e9;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    color: #334155;
    margin-bottom: 0.3rem;
    font-size: 0.98rem;
    transition: color 0.2s;
    cursor: pointer;
}
.footer-links li:hover {
    color: #0ea5e9;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem;
}
.footer-social a {
    color: #64748b;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: #0ea5e9;
    transform: scale(1.18) rotate(-8deg);
}
.footer-bottom {
    color: #64748b;
    text-align: center;
    font-size: 0.98rem;
    margin-top: 2rem;
}
@media (max-width: 800px) {
    .navbar, .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    .hero-visual {
        margin-top: 1.5rem;
    }
}

/* Sticky CTA banner */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #06b6d4 0%, #22c55e 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 16px rgba(6,182,212,0.08);
    font-size: 1.1rem;
    font-weight: 600;
}
.sticky-cta-btn {
    background: #fff;
    color: #06b6d4;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(6,182,212,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.sticky-cta-btn:hover {
    background: #22c55e;
    color: #fff;
    transform: scale(1.05);
}

/* Creative comparison table styles */
.comparison-table.clear-table {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(6,182,212,0.08);
    background: #fff;
    border: 1px solid #e0e7ef;
}
.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e7ef;
    align-items: center;
    transition: background 0.25s;
}
.comparison-row:not(.comparison-header):hover {
    background: #e0f2fe33;
    box-shadow: 0 2px 12px rgba(6,182,212,0.08);
    z-index: 1;
}
.comparison-header {
    background: #e0f2fe;
    font-weight: 700;
}
.comparison-row > div {
    flex: 1;
    padding: 1.2rem 0.8rem;
    text-align: left;
    min-width: 140px;
    font-size: 1.08rem;
}
.comparison-row .compare-eduna {
    color: #22c55e;
    font-weight: 700;
}
.comparison-row .compare-others {
    color: #ef4444;
    font-weight: 700;
}
.comparison-row .compare-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.comparison-desc {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    color: #64748b;
    font-size: 1.05rem;
    text-align: center;
}

/* Center the comparison section heading and description */
.comparison.creative-comparison h2,
.comparison.creative-comparison .comparison-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.comparison.creative-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.comparison-table.clear-table {
    margin-left: auto;
    margin-right: auto;
}

/* Creative benefits timeline */
.creative-benefits {
    padding-left: 1rem;
    padding-right: 1rem;
}
.benefits-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
}
.benefit-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    position: relative;
}
.benefit-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 2.5rem;
    width: 3px;
    height: calc(100% - 2.5rem);
    background: linear-gradient(180deg, #06b6d4 0%, #22c55e 100%);
    border-radius: 2px;
    opacity: 0.3;
}
.benefit-icon {
    font-size: 2rem;
    background: #e0f2fe;
    color: #06b6d4;
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(6,182,212,0.10);
    flex-shrink: 0;
}
.benefit-content {
    flex: 1;
}
.benefit-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #06b6d4;
    margin-bottom: 0.2rem;
}
.benefit-desc {
    color: #334155;
    font-size: 1.02rem;
}

/* Modern card-based benefits section */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    justify-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 700px) {
    .benefits-cards {
        grid-template-columns: 1fr;
    }
}
.benefit-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(6,182,212,0.10);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    min-width: 200px;
    max-width: 320px;
}
.benefit-card:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 12px 32px rgba(6,182,212,0.18);
}
.benefit-icon-card {
    width: 60px;
    height: 60px;
    margin-bottom: 1.1rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(6,182,212,0.10);
    background: #fff;
    object-fit: cover;
    display: block;
}
.benefit-title {
    font-weight: 800;
    font-size: 1.15rem;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
    text-align: center;
}
.benefit-desc {
    color: #334155;
    font-size: 1.02rem;
    text-align: center;
}

/* Creative comparison cards */
.comparison-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0 1.5rem 0;
}
.compare-card {
    background: linear-gradient(120deg, #e0f2fe 0%, #fbeee6 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(6,182,212,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e0e7ef;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.compare-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(6,182,212,0.13);
}
.compare-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 1rem;
}
.compare-eduna {
    color: #22c55e;
    font-weight: 700;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.08rem;
}
.compare-others {
    color: #ef4444;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.08rem;
}
.compare-check {
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    margin-right: 0.3em;
}
.compare-cross {
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    margin-right: 0.3em;
}
@media (max-width: 900px) {
    .comparison-cards {
        flex-direction: column;
        align-items: center;
    }
    .compare-card {
        width: 100%;
        min-width: 0;
        max-width: 95vw;
    }
}

/* Expandable comparison cards */
.compare-card.expandable {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 2px 12px rgba(6,182,212,0.08);
    border-left: 6px solid #06b6d4;
    border-radius: 22px;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 1.2rem;
}
.compare-card.expandable:hover, .compare-card.expandable.active {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 12px 32px rgba(6,182,212,0.18);
    border-left: 6px solid #22c55e;
    border-right: 6px solid #06b6d4;
}
.compare-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    margin-left: 0.1rem;
    filter: drop-shadow(0 2px 8px rgba(6,182,212,0.10));
}
.compare-details {
    display: flex;
    gap: 1rem;
    background: linear-gradient(90deg, #e0f2fe 0%, #fbeee6 100%);
    border-radius: 10px;
    margin-top: 0.7rem;
    box-shadow: 0 2px 8px rgba(6,182,212,0.07);
    padding: 0 0.5rem;
    transition: background 0.3s;
}
.compare-detail-eduna {
    flex: 1;
    background: #e0fdf4;
    border-left: 4px solid #22c55e;
    border-radius: 8px 0 0 8px;
    padding: 1rem 0.7rem;
    color: #059669;
    font-weight: 600;
    font-size: 1.01rem;
}
.compare-detail-others {
    flex: 1;
    background: #fee2e2;
    border-right: 4px solid #ef4444;
    border-radius: 0 8px 8px 0;
    padding: 1rem 0.7rem;
    color: #b91c1c;
    font-weight: 600;
    font-size: 1.01rem;
}
@media (max-width: 900px) {
    .compare-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    .compare-detail-eduna, .compare-detail-others {
        border-radius: 8px;
        border-left: 4px solid #22c55e;
        border-right: 4px solid #ef4444;
    }
}

/* Loader overlay and bouncing dots */
.loader-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
.loader-overlay.hide {
    opacity: 0;
    pointer-events: none;
}
.bouncing-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    gap: 10px;
}
.bouncing-loader > div {
    width: 16px;
    height: 16px;
    background: #06b6d4;
    border-radius: 50%;
    animation: bouncing 0.6s infinite alternate;
}
.bouncing-loader > div:nth-child(2) {
    animation-delay: 0.2s;
}
.bouncing-loader > div:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes bouncing {
    to {
        opacity: 0.3;
        transform: translateY(-18px);
    }
}

/* Side-by-side comparison table */
.side-by-side-comparison {
    max-width: 900px;
    margin: 2.5rem auto 1.5rem auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(6,182,212,0.10);
    background: #fff;
}
.comparison-header-row {
    display: flex;
    background: #e0f2fe;
    font-weight: 800;
    font-size: 1.15rem;
}
.comparison-col-title {
    flex: 1;
    padding: 1.1rem 0.7rem;
    text-align: center;
}
.comparison-col-title.eduna {
    color: #059669;
}
.comparison-col-title.others {
    color: #b91c1c;
}
.comparison-feature-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e7ef;
    transition: background 0.2s;
}
.comparison-feature-row:last-child {
    border-bottom: none;
}
.feature-label {
    flex: 1.2;
    padding: 1.1rem 0.7rem;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.08rem;
}
.feature-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 8px rgba(6,182,212,0.10));
}
.feature-eduna {
    flex: 1;
    background: #e0fdf4;
    color: #059669;
    font-weight: 700;
    padding: 1.1rem 0.7rem;
    border-left: 4px solid #22c55e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    transition: background 0.2s;
}
.feature-others {
    flex: 1;
    background: #fee2e2;
    color: #b91c1c;
    font-weight: 700;
    padding: 1.1rem 0.7rem;
    border-right: 4px solid #ef4444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    transition: background 0.2s;
}
.comparison-feature-row:hover .feature-eduna {
    background: #bbf7d0;
}
.comparison-feature-row:hover .feature-others {
    background: #fecaca;
}
.compare-check {
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    margin-right: 0.3em;
}
.compare-cross {
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    margin-right: 0.3em;
}
@media (max-width: 900px) {
    .side-by-side-comparison, .comparison-header-row, .comparison-feature-row {
        flex-direction: column;
    }
    .feature-eduna, .feature-others, .feature-label {
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 4px solid #22c55e;
        border-bottom: 4px solid #ef4444;
        border-radius: 0;
    }
    .comparison-header-row {
        display: none;
    }
}

/* Center the 'How it helps' section */
.benefits.creative-benefits {
    width: 100vw;
    max-width: none;
    margin: 3rem 0 3rem 0;
    border-radius: 0;
    left: 50%;
    right: 50%;
    position: relative;
    transform: translateX(-50%);
    box-sizing: border-box;
    padding: 2.5rem 0;
}
.benefits.creative-benefits h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.benefits-cards {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
/* Responsive fix for mobile */
@media (max-width: 900px) {
    .benefits.creative-benefits {
        padding: 2rem 0.5rem;
    }
    .benefits-cards {
        gap: 1.2rem;
    }
}

/* Modern card-based benefits section - horizontal flex layout override */
.benefits-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
    .benefits-cards {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
}

/* Modern dark comparison block styles */
.comparison-block-modern {
    background: #1e293b;
    padding: 4rem 0.5rem;
    border-radius: 32px;
    margin: 4rem 0;
    max-width: none;
    width: 100vw;
    box-shadow: 0 8px 32px rgba(30,41,59,0.18);
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}
.comparison-modern-heading {
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}
.comparison-modern-table {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: visible;
    box-shadow: none;
}
.comparison-modern-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-width: 0;
    background: #273449;
    border-radius: 24px;
    padding: 0;
}
.comparison-modern-eduna {
    background: #fff;
    color: #222;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(30,41,59,0.13);
    border-radius: 24px;
    z-index: 2;
    margin-top: -32px;
    margin-bottom: -32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}
.comparison-modern-header {
    font-size: 1.18rem;
    font-weight: 900;
    text-align: center;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #222;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 6px 24px rgba(30,41,59,0.13);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.comparison-modern-header-left {
    background: #273449;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: none;
    border-radius: 16px 0 0 0;
    border-bottom: 2px solid #334155;
}
.comparison-modern-header-right {
    background: #273449;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    border-radius: 0 16px 0 0;
    box-shadow: none;
    border-bottom: 2px solid #334155;
}
.comparison-modern-header-center {
    background: #fff;
    color: #222;
    font-size: 1.18rem;
    font-weight: 900;
    text-align: center;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
    box-shadow: none;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 3;
}
.comparison-modern-row {
    display: flex;
    align-items: center;
    min-height: 56px;
    border-bottom: 1px solid #334155;
    padding: 0.8rem 1.2rem;
    font-size: 1.08rem;
    background: transparent;
}
.comparison-modern-eduna .comparison-modern-row {
    justify-content: center;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}
.comparison-modern-others .comparison-modern-row {
    justify-content: center;
    background: #273449;
}
.comparison-modern-row:last-child {
    border-bottom: none;
}
.compare-modern-check {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    background: #22c55e;
    color: #fff;
    box-shadow: 0 2px 8px rgba(34,211,238,0.10);
}
.comparison-modern-eduna .compare-modern-check {
    background: #22c55e;
    color: #fff;
}
.comparison-modern-others .compare-modern-check {
    background: #ef4444;
    color: #fff;
}
@media (max-width: 900px) {
    .comparison-modern-table {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .comparison-modern-col {
        min-width: 100%;
        padding: 0.5rem 1rem;
    }
    .comparison-modern-eduna, .comparison-modern-others {
        padding: 0 1rem;
    }
}
.comparison-modern-features {
    background: #273449;
    color: #fff;
    font-weight: 500;
    font-size: 1.15rem;
    padding-left: 2rem;
}
.comparison-modern-header-left {
    background: #273449;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: none;
    border-radius: 16px 0 0 0;
    border-bottom: 2px solid #334155;
}
.comparison-modern-header-right {
    background: #273449;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    border-radius: 0 16px 0 0;
    box-shadow: none;
    border-bottom: 2px solid #334155;
}
.comparison-modern-others .comparison-modern-row {
    color: #fff;
}
.comparison-modern-features .comparison-modern-row {
    color: #fff;
}


/* Mobile fix for comparison table */
@media (max-width: 768px) {
    .comparison-modern-table {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; /* three columns */
        gap: 8px;
        overflow-x: auto; /* allow horizontal scroll if still tight */
        width: 100%;
    }

    .comparison-modern-col {
        min-width: 100px; /* reduce column width */
        text-align: center;
        padding: 8px 4px;
    }

    .comparison-modern-header {
        font-size: 16px;
        padding: 6px 0;
    }

    .comparison-modern-row {
        font-size: 14px;
        padding: 6px 0;
    }

    /* Optional: Add subtle separation between columns */
    .comparison-modern-col:not(:last-child) {
        border-right: 1px solid #ddd;
    }
}



/* --------- */
@media (max-width: 480px) {
    .comparison-modern-table {
        display: block;
    }
    .comparison-modern-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 16px;
    }
    .comparison-modern-row {
        display: flex;
        justify-content: space-between;
        padding: 6px 0;
    }
}



/* Logo  */
/* Navbar styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background: #ffffff;
    position: relative;
    /* top: 0; */
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;      
    width: auto;       
    object-fit: contain;
    display: block;
}


@media (max-width: 768px) {
    .logo img {
        height: 55px;
    }
    .hero-illustration {
    max-width: 260px;
    
}
}

.get-app-new {
    background: #007bff;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
