/* Reset & bază */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #020617;
    color: #e5e7eb;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout general */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 2.75rem 0 2.5rem;
}

/* Figure – centrare imagini în secțiuni */

.section figure {
    margin: 1.5rem auto;
    text-align: center;
}

.section figure img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* Header & navigație */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15,23,42,0.98), rgba(15,23,42,0.85));
    border-bottom: 1px solid rgba(148,163,184,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    gap: 1.5rem;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    display: inline-flex;
    align-items: baseline;
    gap: 0.1rem;
}

.logo-mark {
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: radial-gradient(circle at 0% 0%, #22c55e, #4ade80, #22c55e);
    color: #020617;
    font-size: 0.95rem;
}

.logo-dot {
    font-size: 1rem;
    color: #e5e7eb;
}

.logo-tagline {
    margin-top: 0.1rem;
    font-size: 0.7rem;
    color: #9ca3af;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.main-nav a {
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    color: #cbd5f5;
    border: 1px solid transparent;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background-color: rgba(148,163,184,0.12);
    border-color: rgba(148,163,184,0.7);
    outline: none;
}

/* HERO */

.hero {
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at top left, rgba(34,197,94,0.16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(56,189,248,0.18), transparent 55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.75rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    background-color: rgba(15,23,42,0.75);
    border: 1px solid rgba(148,163,184,0.5);
    color: #a5b4fc;
}

.eyebrow-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #22d3ee);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin: 1.2rem 0 0.75rem;
    color: #f9fafb;
}

.hero-highlight {
    background-image: linear-gradient(120deg, #22c55e, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 0.98rem;
    color: #cbd5f5;
    max-width: 34rem;
    margin-bottom: 1.25rem;
}

.hero-disclaimer {
    font-size: 0.78rem;
    color: #9ca3af;
    max-width: 32rem;
}

.hero-disclaimer strong {
    color: #e5e7eb;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.75rem 0 1.25rem;
}

/* Butoane */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background-image: linear-gradient(135deg, #22c55e, #22d3ee);
    color: #020617;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(34,197,94,0.25);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary span {
    margin-left: 0.35rem;
    font-size: 1rem;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 22px 55px rgba(34,197,94,0.35);
    outline: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-size: 0.88rem;
    border: 1px solid rgba(148,163,184,0.7);
    background-color: rgba(15,23,42,0.7);
    color: #e5e7eb;
    cursor: pointer;
    transition: background-color 0.12s ease, border-color 0.12s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background-color: rgba(30,64,175,0.4);
    border-color: rgba(191,219,254,0.9);
    outline: none;
}

/* Meta hero */

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-meta-badge {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background-color: #22c55e;
}

/* Card hero dreapta */

.hero-card {
    border-radius: 1.4rem;
    border: 1px solid rgba(148,163,184,0.35);
    background: radial-gradient(circle at top, rgba(15,118,110,0.55), rgba(15,23,42,0.95));
    padding: 1.3rem 1.4rem;
    box-shadow: 0 20px 40px rgba(15,23,42,0.85);
    max-width: 420px;
    margin-left: auto;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.hero-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
}

/* Pastila mică din card (textul era dubios înainte) */
.hero-card-pill {
    font-size: 0.75rem;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(190,242,100,0.8);
    color: #ecfccb;
    white-space: nowrap;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.8rem;
    color: #e5e7eb;
}

.hero-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
}

.hero-card-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    margin-top: 0.3rem;
    background: linear-gradient(135deg, #bbf7d0, #a5b4fc);
}

.hero-card-footer {
    font-size: 0.75rem;
    color: #cbd5f5;
    border-top: 1px dashed rgba(148,163,184,0.6);
    padding-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Header secțiuni */

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.75rem;
}

.section-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

.section-title {
    font-size: 1.5rem;
    color: #e5e7eb;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
    max-width: 30rem;
}

/* Beneficii */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.card {
    border-radius: 1.1rem;
    border: 1px solid rgba(148,163,184,0.35);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
    padding: 1rem 1.1rem;
}

.card-title {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: #f9fafb;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.1rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 999px;
    background-color: rgba(30,64,175,0.35);
    color: #bfdbfe;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.card-text strong {
    color: #e5e7eb;
}

/* Layout “stack” 2 coloane */

.stack {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 1.75rem;
    align-items: flex-start;
}

/* Pachete */

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.plan-card {
    border-radius: 1.2rem;
    border: 1px solid rgba(148,163,184,0.4);
    background: radial-gradient(circle at top right, rgba(15,118,110,0.5), rgba(15,23,42,0.98));
    padding: 1.1rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-card:nth-child(2) {
    border-color: rgba(190,242,100,0.9);
    box-shadow: 0 24px 55px rgba(34,197,94,0.25);
}

.plan-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a5f3fc;
}

.plan-name {
    font-size: 1rem;
    font-weight: 600;
    color: #f9fafb;
}

.plan-desc {
    font-size: 0.8rem;
    color: #cbd5f5;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0.7rem;
    font-size: 0.8rem;
    color: #e5e7eb;
}

.plan-list li {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    margin-bottom: 0.35rem;
}

.plan-bullet {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    margin-top: 0.25rem;
    background-color: #4ade80;
}

.plan-footer {
    margin-top: auto;
    font-size: 0.75rem;
    color: #9ca3af;
}

.plan-footer strong {
    color: #e5e7eb;
}

.plan-cta {
    margin-top: 0.6rem;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(190,242,100,0.9);
    background-color: rgba(22,163,74,0.08);
    color: #ecfccb;
    cursor: pointer;
    transition: background-color 0.12s ease, border-color 0.12s ease;
}

.btn-plan span {
    margin-left: 0.35rem;
    font-size: 1rem;
}

.btn-plan:hover,
.btn-plan:focus-visible {
    background-color: rgba(22,163,74,0.25);
    border-color: #bef264;
    outline: none;
}

/* Pașii – cum funcționează */

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.steps-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
}

.steps-number {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background-color: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #e5e7eb;
}

.steps-title {
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.1rem;
}

.steps-text {
    color: #cbd5f5;
}

.badge-note {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.85rem;
}

/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid rgba(148,163,184,0.35);
    padding: 0.9rem 1rem;
    background-color: rgba(15,23,42,0.9);
}

.faq-q {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.faq-a {
    font-size: 0.82rem;
    color: #cbd5f5;
}

/* Box DSA / redresare */

.dsabox {
    margin-top: 1.1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.85rem;
    border: 1px dashed rgba(190,242,100,0.8);
    background-color: rgba(22,163,74,0.08);
    font-size: 0.78rem;
    color: #d9f99d;
}

.dsabox strong {
    color: #ecfccb;
}

/* Contact */

.contact-box {
    border-radius: 1.1rem;
    border: 1px solid rgba(148,163,184,0.35);
    padding: 1rem 1.1rem;
    background-color: rgba(15,23,42,0.9);
    font-size: 0.85rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-grid h3 {
    margin-top: 0;
    font-size: 1rem;
    color: #f9fafb;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0.8rem;
    font-size: 0.82rem;
    color: #cbd5f5;
}

.contact-list li {
    margin-bottom: 0.25rem;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(148,163,184,0.35);
    padding: 1.8rem 0 1.5rem;
    font-size: 0.78rem;
    color: #9ca3af;
    background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(15,23,42,1));
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-col {
    max-width: 18rem;
}

.footer-col h4 {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    color: #e5e7eb;
}

.footer-col p {
    margin: 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer-links a {
    text-decoration: underline;
    text-decoration-style: dotted;
}

/* Badge + text mic */

.badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.7);
}

.badge-inline-dot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background-color: #22c55e;
}

.small-muted {
    font-size: 0.76rem;
    color: #9ca3af;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-grid,
    .stack,
    .plan-grid,
    .faq-grid,
    .contact-grid,
    .benefits-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        margin: 1.8rem auto 0;
    }

    .main-nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 2.4rem;
    }

    .section {
        padding: 2.1rem 0 2rem;
    }

    .site-header {
        position: static;
    }
}