:root {
    /* Brand-ish (ajustezi după logo exact) */
    --turq: #1CB5BD;
    --blue: #1E3A8A;
    --orange: #FF8A00;

    --text: #111827;
    --muted: #6B7280;
    --bg: #FFFFFF;
    --soft: #F6FAFC;
    --border: #E5E7EB;

    --radius-xl: 22px;
    --radius-lg: 18px;
    --shadow: 0 18px 40px rgba(16, 24, 40, .10);
    --shadow-soft: 0 10px 24px rgba(16, 24, 40, .08);
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(900px 500px at 20% 0%, rgba(28, 181, 189, .12), transparent 55%),
        radial-gradient(900px 500px at 80% 10%, rgba(30, 58, 138, .10), transparent 55%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
header {
    padding: 26px 0 10px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .2px;
}

.brand-badge {
    width: 150px;
    height: 65px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.brand-badge img {
    width: 100%;
}

/* TODO: înlocuiește cu logo SVG/PNG */
.brand-badge span {
    font-size: 14px;
    color: var(--blue);
    font-weight: 800;
}

.brand-name {
    font-size: 18px;
}

.brand-name b {
    color: var(--turq);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 600;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #1CB5BD, #159AA2);
    box-shadow: 0 10px 22px rgba(28, 181, 189, .28);
}

.btn-primary:hover {
    box-shadow: 0 12px 26px rgba(28, 181, 189, .34);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
    padding: 18px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;

}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.kicker .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--turq);
    box-shadow: 0 0 0 5px rgba(28, 181, 189, .15);
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.12;
    letter-spacing: -.6px;
}

h1 .accent {
    color: var(--turq);
}

.sub {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 52ch;
}

.hero-illustration {
    margin-top: 12px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(245, 250, 252, .9), rgba(245, 250, 252, .55));
    border: 1px solid rgba(229, 231, 235, .8);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    position: relative;
    overflow: hidden;
    min-height: 170px;
}

.hero-illustration img {
    height: 150px;
}

.tag {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 138, 0, .12);
    border: 1px solid rgba(255, 138, 0, .25);
    color: #9A4E00;
    font-size: 12px;
    font-weight: 600;
}

.bullets-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bullet-card {
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .85);
    box-shadow: 0 10px 24px rgba(16, 24, 40, .06);
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.check {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(28, 181, 189, 1), rgba(30, 58, 138, .95));
    flex: 0 0 24px;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 800;
}

.bullet-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
}

.bullet-card b {
    color: var(--blue);
}

/* ---------- Form Card ---------- */
.form-card {
    position: sticky;
    top: 18px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    box-shadow: var(--shadow);
    padding: 18px;
}

.form-card h3 {
    margin: 2px 0 14px;
    font-size: 20px;
    letter-spacing: -.2px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

input {
    border-radius: 999px;
    border: 1px solid rgba(229, 231, 235, .95);
    padding: 12px 14px;
    font: inherit;
    outline: none;
    background: #fff;
    transition: box-shadow .12s ease, border-color .12s ease;
}

input:focus {
    border-color: rgba(28, 181, 189, .65);
    box-shadow: 0 0 0 5px rgba(28, 181, 189, .14);
}

.form-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

/* ---------- Sections ---------- */
section {
    padding: 26px 0;
}

.section-title {
    margin: 0 0 14px;
    font-size: 30px;
    letter-spacing: -.4px;
}

.section-title .accent {
    color: var(--turq);
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: center;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.list li .tick {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(28, 181, 189, .16);
    border: 1px solid rgba(28, 181, 189, .32);
    display: grid;
    place-items: center;
    color: var(--turq);
    font-weight: 800;
    flex: 0 0 22px;
    margin-top: 1px;
}

.list li b {
    color: var(--blue);
}

.illus-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(245, 250, 252, .92), rgba(245, 250, 252, .55));
    border: 1px solid rgba(229, 231, 235, .85);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

.illus-card .ph {
    height: 300px;
    /* cum ai deja */
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

#pilot .illus-card .ph {
    height: 550px;
}

.illus-card .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* contain = nu taie, doar încadrează */
    display: block;
}



/* Pilot + Structura (cards) */
.cards-2 {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.card {
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    overflow: hidden;
    position: relative;
    min-height: 240px;
}

.card h4 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -.2px;
}

.card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(28, 181, 189, .20), rgba(30, 58, 138, .10));
    border: 1px solid rgba(28, 181, 189, .35);
    font-weight: 700;
    color: var(--blue);
}

.badge strong {
    color: var(--turq);
}

.mini {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
}

.timeline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 12px;
}

.pill {
    border-radius: 999px;
    padding: 9px 12px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .06);
}

.pill.html {
    border-color: rgba(255, 138, 0, .35);
    background: rgba(255, 138, 0, .10);
    color: #8A4300;
}

.pill.css {
    border-color: rgba(28, 181, 189, .40);
    background: rgba(28, 181, 189, .12);
    color: #0F6D73;
}

.pill.js {
    border-color: rgba(34, 197, 94, .32);
    background: rgba(34, 197, 94, .10);
    color: #0F6B33;
}

.arrow {
    color: rgba(30, 58, 138, .55);
    font-weight: 700;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 12px;
}

.course-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.module h5 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #1E3A8A;
}

.module ul {
    padding-left: 18px;
    font-size: 13px;
    color: #555;
}

.module li {
    margin-bottom: 3px;
}

/* Pricing */
.pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(245, 250, 252, .95), rgba(245, 250, 252, .65));
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: var(--radius-xl);
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price strong {
    font-size: 28px;
    letter-spacing: -.4px;
    color: var(--blue);
}

.price span {
    color: var(--muted);
    font-size: 13px;
}

/* Footer */
footer {
    padding: 28px 0 46px;
}

.footer-wrap {
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(245, 250, 252, .95), rgba(245, 250, 252, .62));
    border: 1px solid rgba(229, 231, 235, .9);
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.footer-title {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -.3px;
    text-align: center;
}

.footer-sub {
    margin: 0 0 42px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr .8fr;
    gap: 14px;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.slogan {
    color: var(--blue);
    font-weight: 600;
    font-size: 13px;
}

.footer-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-ph {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(28, 181, 189, .12);
    border: 1px solid rgba(28, 181, 189, .25);
    display: grid;
    place-items: center;
    color: var(--turq);
    font-weight: 800;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .btn{
        padding: 4px 10px;
        font-size: 0.9rem;
    }

    #pilot .btn{
        font-size: 0.80rem;
    }

    #pilot .illus-card .ph{
        height: 300px;
    }

    .form-card {
        position: static;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .cards-2 {
        grid-template-rows: 1fr;
    }

    .bullets-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-form .row {
        grid-template-columns: 1fr;
    }
}


.pill.ai {
    border-color: rgba(139, 92, 246, .28);
    background: rgba(139, 92, 246, .08);
    color: #6D28D9;
}

.pill.project {
    border-color: rgba(30, 58, 138, .25);
    background: rgba(30, 58, 138, .06);
    color: var(--blue);
}

.accordion {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .05);
    overflow: hidden;
    transition: all .25s ease;
}

.accordion-item.active {
    border-color: rgba(28, 181, 189, .35);
    box-shadow: 0 10px 24px rgba(28, 181, 189, .10);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: inherit;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(28, 181, 189, .10);
    color: var(--turq);
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    transition: transform .25s ease, background .25s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: rgba(28, 181, 189, .18);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 18px;
}

.accordion-item.active .accordion-content {
    max-height: 220px;
    padding: 0 18px 16px;
}

.accordion-content ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.accordion-content li {
    margin-bottom: 4px;
}