* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 100vh;
    color: white;
    padding: 30px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    color: #cbd5e1;
    font-size: 1.1rem;

    #projectName {
        width: 300px;
        max-width: 100%;
        padding: 12px;
        margin: 15px auto;
        display: block;
        border: none;
        border-radius: 10px;
    }
}

main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 15px auto;
    border-radius: 15px;
    max-width: 700px;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    margin-bottom: 20px;
    border-left: 4px solid #22c55e;
    padding-left: 10px;

}

input,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 10px;
    outline: none;
    background: #e2e8f0;
}

button,
.start-btn {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

button:hover,
.start-btn:hover {
    transform: scale(1.05);
}

.result-box {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 15px;
    margin-top: 15px;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
}

.result-item {
    margin-bottom: 10px;
}

#summary {
    min-height: 150px;
    color: #cbd5e1;
    line-height: 1.8;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #94a3b8;
    padding: 20px;
}

@media(max-width:768px) {

    body {
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

}

body.landing {
    background: #0f172a;
    color: white;
    font-family: Arial;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.hero {
    max-width: 600px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.hero ul {
    text-align: left;
    margin: 20px auto;
    width: fit-content;
}

.start-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
}

.hero hr {
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.hero ul {
    list-style: none;
    padding: 0;
}

.hero li {
    margin: 8px 0;
    opacity: 0.9;
}

.navbar {
    position: sticky;
    top: 0;
    background: #0b1220;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: #0f172a;

    padding: 15px;

    display: flex;
    gap: 15px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar a:hover {
    background: #22c55e;
    transform: scale(1.05);
}

.top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
}

.project-card {

    background: white;
    padding: 15px;
    margin: 10px auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.pro-btn {
    background: gold;
    color: black;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.pro-btn {
    background: gold;
    color: black;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #0f172a;
    color: white;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    padding: 15px;
    color: #22c55e;
    letter-spacing: 1px;
}

.contact-box {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box a {
    color: #22c55e;
    text-decoration: none;
    font-weight: bold;
}

.contact-box a:hover {
    text-decoration: underline;
}

.result-box p {
    font-weight: 500;
    margin: 8px 0;
}

.result-box h3 {
    color: #22c55e;
    margin-top: 0;
}

input:focus {
    outline: none;
    border: 2px solid #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #1e293b;
    color: white;
    box-sizing: border-box;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 24px;
    font-weight: bold;
}

.project-card {
    background: #1e293b;
    padding: 20px;
    margin: 15px 0;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.project-card h3 {
    margin-bottom: 10px;
}

.project-card small {
    opacity: 0.7;
}

body {
    padding-top: 80px;
}

.logo-box {
    text-align: center;
    margin-bottom: 20px;
}

.logo-box h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.logo-box p {
    opacity: 0.8;
}

.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25);
}

.card:hover {

    transform: translateY(-3px);

    transition: 0.3s;

}

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 20px;

}

.plan-card {

    background: #1e293b;

    padding: 30px;

    border-radius: 15px;

    text-align: center;

}

.pro-plan {

    border: 3px solid gold;

}

.hero {

    text-align: center;

    padding: 50px 20px;

    margin-bottom: 30px;

}

.hero h1 {

    font-size: 3rem;

    margin-bottom: 15px;

}

.hero p {

    max-width: 700px;

    margin: auto;

    opacity: 0.8;

}

.hero-features {

    margin: 25px 0;

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 15px;

}

.hero-features span {

    background: #1e293b;

    padding: 10px 15px;

    border-radius: 10px;

}

.light-mode {

    background: #f8fafc;

    color: #111827;

}

.light-mode .card {

    background: white;

}

.light-mode .navbar {

    background: #e2e8f0;

}

.light-mode .result-box {

    background: #f1f5f9;

    color: black;

}

.menu-btn {

    display: none;

}

@media(max-width:768px) {

    .menu-btn {

        display: block;

    }

    #navLinks {

        display: none;

        flex-direction: column;

        width: 100%;

    }

    #navLinks.show {

        display: flex;

    }

}

.hero {

    background: linear-gradient(135deg,
            #0f172a,
            #1e293b);

    padding: 80px 20px;

    border-radius: 20px;

    margin-bottom: 40px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .3);

}

.hero h1 {

    font-size: 4rem;

    margin-bottom: 15px;

}

.hero p {

    font-size: 1.2rem;

    max-width: 800px;

    margin: auto;

}

.hero button {

    margin-top: 25px;

    font-size: 1.1rem;

}

.result-box {

    font-size: 1.05rem;

    line-height: 1.8;

    font-weight: 500;

}

.dashboard-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

    margin: 20px 0;

}

.stat-card {

    background: #1e293b;

    padding: 20px;

    border-radius: 15px;

    text-align: center;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .2);

}

.logo {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    font-size: 3rem;

    font-weight: bold;

}

.logo-icon {

    color: #22c55e;

}

.logo-text {

    letter-spacing: 1px;

}

.logo-sub {

    opacity: .8;

    margin-top: 10px;

}

.nav-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 1.3rem;

    font-weight: bold;

}

.logo-mark {

    color: #22c55e;

    font-size: 1.5rem;

}