/* Stiluri suplimentare pentru Planul Complet */
/* Hero Stats Section */
.hero-stats {
    background: linear-gradient(180deg, #152a34 0%, #066885 40%, #1e4a5c 100%);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 130px 20px 60px;
    position: relative;
    overflow: hidden;
}
.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 61, 78, 0.85) 0%, rgba(45, 96, 120, 0.6) 30%, rgb(58 122 146 / 0%) 100%);
    pointer-events: none;
    z-index: 0;
}
.hero-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-stats-content {
    padding-bottom: 0;
}
/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(95, 184, 176, 0.18);
    color: #5fb8b0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-stats-title {
    /* font-family: 'Georgia', 'Times New Roman', serif; */
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.12;
    color: #ffffff;
}
.hero-stats-title em {
    font-style: normal;
    font-weight: 700;
    color: #fb9825;
}
.hero-stats-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 560px;
}
.hero-stats-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}
/* Callout */
.hero-callout {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 32px;
    max-width: 525px;
}
.hero-callout p {
    margin: 0;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}
.hero-callout strong {
    color: #ffffff;
    font-weight: 600;
}
/* Stats */
.stats-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}
.stat-item {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}
/* CTA Row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fb9825;
    color: #1a2e38;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.hero-cta-primary:hover {
    background: #d4932f;
    transform: translateY(-1px);
}
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 28px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.hero-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
}
/* Micro trust */
.hero-micro {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-micro-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
/* Hero image */
.hero-stats-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero-stats-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.25));
}
/* Responsive hero */
@media (max-width: 1024px) {
    .hero-stats-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hero-stats-image {
        display: none;
    }
}
@media (max-width: 768px) {
    .hero-stats {
        padding: 120px 16px 50px;
    }
    .hero-stats-title {
        font-size: 36px;
    }
    .stats-grid {
        gap: 20px;
    }
    .stat-number {
        font-size: 26px;
    }
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .hero-stats-title {
        font-size: 30px;
    }
    .stats-grid {
        flex-wrap: wrap;
    }
    .hero-micro {
        flex-direction: column;
        gap: 8px;
    }
}
/* Planul Complet Section - New Layout */
.planul-complet {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7f6 100%);
    padding: 60px 20px 125px;
    position: relative;
    overflow: hidden;
}
.planul-complet::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&h=800&fit=crop') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}
.planul-complet-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.planul-complet-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}
/* Left Column */
.planul-left-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.diagnostic-banner {
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
}
.diagnostic-banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.diagnostic-banner-text strong {
    font-size: 16px;
    color: #066885;
}
.diagnostic-banner-text span {
    font-size: 13px;
    color: #6b8a8e;
    font-style: italic;
}
/* Meeting Card */
.meeting-card {
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
}
.meeting-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #066885;
    margin: 0 0 4px;
}
.meeting-card-role {
    font-size: 13px;
    color: #6b8a8e;
    margin: 0 0 8px;
}
.meeting-card-desc {
    font-size: 13px;
    color: #555;
    margin: 0 0 12px;
}
.meeting-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.meeting-card-list li {
    font-size: 13px;
    color: #555;
    padding: 3px 0;
}
.meeting-card-preview {
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
}
.meeting-card-preview img {
    width: 100%;
    height: 100px;
    object-fit: scale-down;
    border-radius: 10px;
    background: #2f6686;
    padding: 10px;
}
.meeting-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, #066885 0%, #3a7a92 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.meeting-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 96, 120, 0.4);
}
/* Centre de pregatire */
/* Admișii noștri marquee */
.pc-marquee-box {
    background: rgba(255,255,255,0.6);
    border-radius: 14px;
    padding: 20px 0;
    backdrop-filter: blur(8px);
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
}
.pc-marquee-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #8fa8ad;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    padding: 0 18px;
}
.pc-marquee-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.pc-marquee-content {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: pcMarqueeScroll 30s linear infinite;
    width: max-content;
}
.pc-marquee-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: #066885;
    padding: 0 10px;
    flex-shrink: 0;
}
.pc-marquee-dot {
    color: #5fb8b0;
    font-size: 0.65rem;
    padding: 0 3px;
    flex-shrink: 0;
    opacity: 0.5;
}
.pc-marquee-item.has-image {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}
.pc-marquee-logo {
    height: 75px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    vertical-align: middle;
    filter: grayscale(40%);
    opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s;
    flex-shrink: 0;
}
.pc-marquee-name {
    white-space: normal;
    max-width: 140px;
    line-height: 1.3;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a3d4e;
    text-align: left;
}
.pc-marquee-item:hover .pc-marquee-logo {
    filter: grayscale(0%);
    opacity: 1;
}
.pc-marquee-track:hover .pc-marquee-content {
    animation-play-state: paused;
}
@keyframes pcMarqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Right Column */
.planul-right-col {
    display: flex;
    flex-direction: column;
}
.planul-complet-title {
    font-size: 32px;
    color: #066885;
    margin: 0 0 30px;
    font-weight: 400;
    text-align: center;
}
.planul-complet-title strong {
    font-weight: 700;
}
/* Plan Cards Grid */
.plan-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.plan-feature-card {
    width: calc((100% - 40px) / 3);
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
}
.plan-feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(45, 96, 120, 0.18);
    border-color: rgba(45, 96, 120, 0.3);
}
.plan-feature-card:hover .plan-card-magnify {
    opacity: 1;
    transform: scale(1);
}
.plan-feature-card:hover .plan-card-image img {
    transform: scale(1.08);
}
.plan-card-image {
    position: relative;
    height: 130px;
    overflow: hidden;
}
.plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan-card-magnify {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 7px 12px;
    font-weight: bold;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}
.plan-card-body {
    padding: 16px 18px 18px;
}
.plan-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #066885;
    margin: 0 0 6px;
}
.plan-card-desc {
    font-size: 13px;
    color: #6b8a8e;
    margin: 0;
    line-height: 1.4;
}
/* Plan Modals */
.plan-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.plan-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.plan-modal {
    background: white;
    border-radius: 20px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    display: none;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.plan-modal.active {
    display: block;
    transform: translateY(0) scale(1);
}
.plan-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}
.plan-modal-close:hover {
    background: white;
    transform: scale(1.1);
}
.plan-modal-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.plan-modal-body {
    padding: 28px 32px 32px;
}
.plan-modal-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: #066885;
    margin: 0 0 8px;
}
.plan-modal-subtitle {
    font-size: 15px;
    color: #6b8a8e;
    margin: 0 0 24px;
}
.plan-modal-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: #066885;
    margin: 20px 0 10px;
}
.plan-modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plan-modal-details li {
    font-size: 14px;
    color: #555;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.plan-modal-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #066885;
    font-weight: 700;
}
.plan-modal-details p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
/* Responsive for Planul Complet */
@media (max-width: 1024px) {
    .planul-complet-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .planul-left-col {
        order: 2;
    }
    
    .planul-right-col {
        order: 1;
    }
}
@media (max-width: 768px) {
    .plan-cards-grid {
        gap: 14px;
    }
    .plan-feature-card {
        width: calc((100% - 14px) / 2);
    }
    
    .planul-complet-title {
        font-size: 24px;
    }
    
    .plan-card-image {
        height: 100px;
    }
    
    .plan-modal {
        max-width: 95%;
        margin: 10px;
    }
}
@media (max-width: 480px) {
    .plan-feature-card {
        width: 100%;
    }
    
    .centre-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Comparatie Cost Real — floating card */
.comparatie-section {
    padding: 0 20px;
    position: relative;
    z-index: 10;
    margin-top: -70px;
    margin-bottom: -46px;
    pointer-events: none;
}
.comparatie-container {
    max-width: 1000px;
    margin: 0 auto;
    pointer-events: auto;
}
.comparatie-card {
    background: #066885;
    border-radius: 16px;
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.comparatie-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin: 0;
}
.comparatie-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: nowrap;
}
.comparatie-left,
.comparatie-right {
    display: flex;
    align-items: baseline;
    gap: 0;
    flex-direction: column;
    align-items: center;
}
.comparatie-price-old {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #ffffff;
    line-height: 1.1;
}
.comparatie-price-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fb9825;
    line-height: 1.1;
}
.comparatie-label {
    font-size: 12.5px;
    color: #ffffff;
    font-weight: 400;
    margin-top: 4px;
}
.comparatie-vs {
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    flex-shrink: 0;
}
.comparatie-savings {
    background: #fb9825;
    color: #1a2e38;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}
@media (min-width: 1025px) {
    .comparatie-section {
        margin-top: -23px;
    }
}
@media (max-width: 768px) {
    .comparatie-section {
        margin-top: -36px;
        margin-bottom: -36px;
    }
    .comparatie-card {
        padding: 20px 20px;
    }
    .comparatie-row {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .comparatie-price-old,
    .comparatie-price-new {
        font-size: 28px;
    }
    .comparatie-savings {
        font-size: 13px;
        padding: 10px 20px;
    }
}
@media (max-width: 480px) {
    .comparatie-section {
        margin-top: -30px;
        margin-bottom: -30px;
    }
    .comparatie-row {
        gap: 12px;
    }
    .comparatie-price-old,
    .comparatie-price-new {
        font-size: 24px;
    }
    .comparatie-vs {
        font-size: 14px;
    }
    .comparatie-savings {
        font-size: 12px;
        padding: 10px 16px;
    }
}

/* Progress Section */
.progress-section {
    background: linear-gradient(180deg, #f2f4f3 0%, #eaedec 50%, #f0f2f1 100%);
    padding: 80px 20px 0;
    position: relative;
    overflow: hidden;
}
.progress-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="hex" width="28" height="49" patternUnits="userSpaceOnUse" patternTransform="scale(3)"><path d="M14 0L28 8v16l-14 8L0 24V8z" fill="none" stroke="rgba(45,96,120,0.07)" stroke-width="0.5"/></pattern></defs><rect width="200" height="200" fill="url(%23hex)"/></svg>') repeat;
    opacity: 0.6;
    pointer-events: none;
}
.progress-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    position: relative;
    z-index: 1;
}
.progress-content {
    padding-bottom: 80px;
}
.progress-title {
    font-size: 38px;
    font-weight: 700;
    color: #066885;
    margin-bottom: 32px;
    line-height: 1.2;
}
.progress-title em {
    font-style: italic;
    font-weight: 300;
}
.progress-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.progress-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #2d3a4e;
    line-height: 1.5;
}
.progress-check {
    color: #3a9e6e;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
/* Device mockups */
.progress-devices {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 380px;
}
.device-laptop {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    min-height: 380px;
}
.device-laptop .device-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    width: 60%;
    border: 1px solid #2f66845c;
    cursor: pointer;
    transition: z-index 0s, transform 0.3s ease, box-shadow 0.3s ease;
}
.device-laptop .device-img:hover {
    z-index: 10 !important;
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.device-laptop .device-img img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Device Image Preview Modal */
.device-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}
.device-preview-overlay.active {
    opacity: 1;
    visibility: visible;
}
.device-preview-overlay img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.device-preview-overlay.active img {
    transform: scale(1);
}
.device-preview-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.device-preview-close:hover {
    background: rgba(255,255,255,0.3);
}
.device-laptop .device-img-1 {
    top: 0;
    left: 0;
    z-index: 1;
}
.device-laptop .device-img-2 {
    bottom: 50px;
    right: 0;
    z-index: 2;
}
.device-phone {
    position: absolute;
    left: -30px;
    bottom: 0;
    z-index: 2;
}
.device-phone img {
    width: 140px;
    border-radius: 16px 16px 0 0;
    box-shadow: -6px -4px 30px rgba(0, 0, 0, 0.18);
    display: block;
}
@media (max-width: 968px) {
    .progress-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .progress-content {
        padding-bottom: 40px;
    }
    .progress-checklist {
        align-items: center;
    }
    .progress-devices {
        min-height: 280px;
    }
}
@media (max-width: 768px) {
    .progress-section {
        padding: 50px 15px 0;
    }
    .progress-title {
        font-size: 28px;
    }
    .device-laptop {
        min-height: 260px;
    }
    .device-laptop .device-img {
        width: 65%;
    }
    .device-phone img {
        width: 100px;
    }
}
/* Calendar Section */
.calendar-section {
    background: linear-gradient(160deg, #066885 0%, #346d85 30%, #3a7a92 60%, #066885 100%);
    padding: 100px 20px 120px;
    position: relative;
    overflow: hidden;
}
.calendar-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(95,184,176,0.1) 0%, transparent 40%);
    pointer-events: none;
}
.calendar-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
/* Header: title left, filters right */
.calendar-header-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
}
.calendar-header-left {
    flex: 1;
    min-width: 280px;
}
.calendar-title {
    font-size: 38px;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    margin-bottom: 8px;
    line-height: 1.2;
}
.calendar-title strong {
    font-weight: 800;
    color: #ffffff;
}
.calendar-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin: 0;
}
.calendar-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}
.filter-dropdown {
    position: relative;
}
.custom-select {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 10px 36px 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    min-width: 170px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.2s ease;
}
.custom-select:focus {
    outline: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    border-color: rgba(45, 96, 120, 0.3);
}
.filter-dropdown::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 10px;
}
/* Main card wrapping both calendar + activities */
.calendar-main-card {
    background: rgba(255,255,255,0.88);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.5);
}
.calendar-content {
    display: grid;
    grid-template-columns: 1fr auto 390px;
    gap: 0;
    align-items: start;
}
/* Calendar Widget */
.calendar-widget {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}
.calendar-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}
.calendar-nav {
    background: rgba(45, 96, 120, 0.08);
    border: 1px solid rgba(45, 96, 120, 0.15);
    font-size: 20px;
    color: #3a7a92;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 600;
    line-height: 1;
}
.calendar-nav:hover {
    background: rgba(45, 96, 120, 0.18);
    transform: scale(1.05);
}
.calendar-month {
    font-size: 20px;
    font-weight: 700;
    color: #2d4a4e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
/* Calendar Grid - table style */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 2px solid #e0e8e6;
}
.calendar-day-header {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    padding: 12px 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(235, 245, 240, 0.6);
    border-bottom: 2px solid #e0e8e6;
}
.calendar-days-container {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.calendar-day {
    height: 64px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    flex-direction: column;
    padding: 8px 4px 6px;
    align-items: center;
    border-bottom: 1px solid #e8ede8;
    background: transparent;
    border-radius: 0;
    border-right: 1px solid rgba(232,237,232,0.5);
}
.calendar-day:nth-child(7n) {
    border-right: none;
}
.calendar-day.calendar-day-end-month {
    background: #ffe2b8;
}
.calendar-day:not(:empty):hover {
    background: rgba(45, 96, 120, 0.06);
    z-index: 2;
}
.calendar-day.calendar-day-end-month:not(:empty):hover {
    background: #ffd699;
}
.calendar-day.today {
    background: linear-gradient(135deg, #066885 0%, #3a7a92 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 3px 14px rgba(45, 96, 120, 0.35);
    border-radius: 10px;
}
.calendar-day.today .day-number {
    color: white;
}
.calendar-day .day-number {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}
.calendar-day .day-icons {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.calendar-day .activity-icon {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
}
@media (max-width: 480px) {
    .calendar-day .activity-icon {
        width: 8px;
        height:8px;
    }
}
.calendar-day .activity-icon.ascultare { background: linear-gradient(135deg, #FFD700, #FFA500); }
.calendar-day .activity-icon.test { background: linear-gradient(135deg, #4CAF50, #66BB6A); }
.calendar-day .activity-icon.test2 { background: linear-gradient(135deg, #4CAF50, #66BB6A); }
.calendar-day .activity-icon.crash { background: linear-gradient(135deg, #42A5F5, #5B9BD5); }
.calendar-day .activity-icon.crash2 { background: linear-gradient(135deg, #42A5F5, #5B9BD5); }
/* Legend */
.calendar-legend {
    display: flex;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 20px;
    padding-top: 16px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
}
.legend-dot.legend-star {
    background: linear-gradient(135deg, #ffe2b8, #ffe2b8);
}
.legend-dot.legend-check {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}
.legend-dot.legend-folder {
    background: linear-gradient(135deg, #42A5F5, #5B9BD5);
}
/* Calendar Day Tooltip */
.cal-tooltip {
    position: absolute;
    z-index: 100;
    min-width: 260px;
    max-width: 340px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(45, 96, 120, 0.12);
    padding: 16px 18px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.cal-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cal-tooltip-date {
    font-size: 13px;
    font-weight: 700;
    color: #066885;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(45, 96, 120, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}
.cal-tooltip-date::before {
    content: '\1F4C5';
    font-size: 14px;
}
.cal-tooltip-events {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cal-tooltip-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(45, 96, 120, 0.04);
    transition: background 0.15s ease;
}
.cal-tooltip-event:hover {
    background: rgba(45, 96, 120, 0.08);
}
.cal-tooltip-event-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}
.cal-tooltip-event-dot.dot-ascultare {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}
.cal-tooltip-event-dot.dot-test {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}
.cal-tooltip-event-dot.dot-test2 {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}
.cal-tooltip-event-dot.dot-crash {
    background: linear-gradient(135deg, #42A5F5, #5B9BD5);
}
.cal-tooltip-event-dot.dot-crash2 {
    background: linear-gradient(135deg, #42A5F5, #5B9BD5);
}
.cal-tooltip-event-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.cal-tooltip-event-detail {
    font-size: 11px;
    color: #777;
    margin-left: auto;
    font-weight: 500;
    text-align: right;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cal-tooltip-empty {
    font-size: 13px;
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 4px 0;
}
/* Tooltip Centers */
.cal-tooltip-event-group {
    padding: 6px 0;
    border-bottom: 1px solid rgba(45, 96, 120, 0.06);
}
.cal-tooltip-event-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.cal-tooltip-event-group:first-child {
    padding-top: 0;
}
.cal-tooltip-event-centers {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 5px;
    padding-left: 20px;
}
.cal-tooltip-center-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #444;
    background: rgba(45, 96, 120, 0.06);
    border-left: 3px solid var(--center-color, #066885);
    padding: 3px 8px 3px 6px;
    border-radius: 4px;
    transition: background 0.15s ease;
}
.cal-tooltip-center-tag:hover {
    background: rgba(45, 96, 120, 0.12);
}
.cal-tooltip-center-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
/* Tooltip arrow */
.cal-tooltip::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(45, 96, 120, 0.12);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    bottom: -7px;
    left: 50%;
    margin-left: -6px;
}
.cal-tooltip.tooltip-below::after {
    bottom: auto;
    top: -7px;
    transform: rotate(135deg);
}
/* Arrow separator */
.calendar-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: rgba(45, 96, 120, 0.35);
    font-size: 32px;
    align-self: center;
}
/* Activities */
.calendar-activities {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
}
.activity-ascultare{
    background: #ffe2b8 !important;
}
.activity-section {
    background: rgba(240, 248, 245, 0.7);
    border-radius: 14px;
    padding: 18px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(215, 230, 225, 0.6);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}
.activity-section:hover {
    background: rgba(240, 248, 245, 0.9);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.activity-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}
.activity-dot-star { background: linear-gradient(135deg, #FFD700, #FFA500); }
.activity-dot-check { background: linear-gradient(135deg, #4CAF50, #66BB6A); }
.activity-dot-folder { background: linear-gradient(135deg, #42A5F5, #5B9BD5); }
.activity-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2d4a4e;
    margin: 0;
}
.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.activity-list li {
    padding: 4px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.check-green {
    color: #4CAF50;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1.4;
}
/* Responsive */
@media (max-width: 900px) {
    .calendar-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .calendar-arrow {
        display: none;
    }
    .calendar-main-card {
        padding: 24px;
    }
}
@media (max-width: 768px) {
    .calendar-section {
        padding: 50px 15px 70px;
    }
    .calendar-header-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .calendar-title {
        font-size: 28px;
    }
    .calendar-filters {
        flex-direction: column;
        width: 100%;
    }
    .custom-select {
        min-width: 100%;
    }
    .calendar-main-card {
        padding: 16px;
        border-radius: 16px;
    }
    .calendar-day {
        height: 48px;
        font-size: 12px;
    }
    .calendar-legend {
        flex-wrap: wrap;
        gap: 12px;
    }
    .activity-section {
        padding: 14px 16px;
    }
}
/* Platform Demo */
.platform-demo {
    background: #f1f5f6;
    padding: 80px 20px;
}
.platform-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.platform-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 48px;
}
.platform-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}
.demo-iframe-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 2px 12px rgba(0, 0, 0, 0.06);
}
.demo-iframe-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.demo-iframe-dots {
    display: flex;
    gap: 7px;
}
.demo-iframe-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.demo-iframe-url {
    flex: 1;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--gray-500);
    text-align: left;
    font-family: 'Montserrat', monospace;
}
.demo-iframe-body {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
}
.demo-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
/* Profesori Section */
.profesori-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9f9 40%, #f2f4f3 100%);
    padding: 80px 20px 0px;
    position: relative;
    overflow: hidden;
}
.profesori-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 200"><path fill="rgba(45,96,120,0.06)" d="M0,80 C320,150 640,20 960,100 C1120,140 1280,60 1440,80 L1440,0 L0,0 Z"/></svg>') no-repeat center top;
    background-size: cover;
    pointer-events: none;
}
.profesori-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.profesori-title {
    font-size: 40px;
    font-weight: 300;
    color: #066885;
    margin-bottom: 12px;
    line-height: 1.2;
}
.profesori-subtitle {
    font-size: 17px;
    color: rgba(26, 61, 78, 0.6);
    font-weight: 400;
    margin-bottom: 50px;
}
/* Profesori Slider */
.profesori-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
}
.profesori-track-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}
.profesori-track {
    display: flex;
    gap: 28px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.profesori-track.no-transition {
    transition: none;
}
.profesor-card {
    flex: 0 0 calc((100% - 56px) / 3);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
}
/* .profesor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
} */
/* Slider arrows */
.profesori-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(6, 104, 133, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #066885;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(6px);
}
.profesori-arrow:hover {
    background: #066885;
    color: #fff;
    border-color: #066885;
    box-shadow: 0 4px 20px rgba(6, 104, 133, 0.3);
}
.profesori-arrow:active {
    transform: scale(0.92);
}
.profesor-photo {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}
.profesor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}
/* .profesor-card:hover .profesor-photo img {
    transform: scale(1.05);
} */
.profesor-info {
    padding: 20px 16px 24px;
    text-align: center;
}
.profesor-name {
    font-size: 22px;
    font-weight: 700;
    color: #066885;
    margin: 0 0 10px 0;
}
.profesor-subject {
    display: inline-block;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.subject-chimie {
    /* background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2); */
    background: linear-gradient(90deg, #0a122a, #253978);
    color: #fff;
}
.subject-biologie {
    /* background: linear-gradient(135deg, #e0f0ed, #b8e0d8);
    color: #066885;
    border: 1px solid rgba(45, 96, 120, 0.2); */
    background: linear-gradient(90deg, #C2223C, #E36646);
    color: #fff;
}
.subject-biologie-corint {
    background: linear-gradient(90deg, #E36646, #D55451);
    color: #fff;
}
.subject-fizica {
    /* background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    border: 1px solid rgba(230, 81, 0, 0.2); */
    background: linear-gradient(90deg, #114306, #209E00);
    color: #fff;
}
.subject-matematica {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
    border: 1px solid rgba(123, 31, 162, 0.2);
}
.profesori-cta {
    display: inline-block;
    background: #066885;
    color: white;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 96, 120, 0.3);
}
.profesori-cta:hover {
    background: #3a7a92;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(45, 96, 120, 0.4);
}
@media (max-width: 900px) {
    .profesor-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}
@media (max-width: 600px) {
    .profesori-section {
        padding: 50px 15px 70px;
    }
    .profesori-title {
        font-size: 28px;
    }
    .profesor-card {
        flex: 0 0 100%;
    }
    .profesori-track {
        gap: 20px;
    }
    .profesori-arrow {
        width: 36px;
        height: 36px;
    }
    .profesori-arrow svg {
        width: 16px;
        height: 16px;
    }
    .profesor-photo {
        height: 280px;
    }
    .profesori-cta {
        padding: 14px 36px;
        font-size: 13px;
    }
}
@media (min-width: 900px){
    .profesori-arrow-hide{
        display: none;
    }
}
/* Planuri Admitere */
.planuri-admitere {
    background: linear-gradient(180deg, #f0f2f1 0%, #eaeceb 40%, #f0f2f1 70%, #f5f6f6 100%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}
.planuri-admitere::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.planuri-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.planuri-title {
    font-size: 40px;
    font-weight: 300;
    color: #066885;
    margin-bottom: 16px;
    line-height: 1.2;
}
.planuri-title strong {
    font-weight: 800;
}
.planuri-subtitle {
    font-size: 16px;
    color: rgba(26, 61, 78, 0.6);
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
}
.planuri-subtitle strong {
    font-weight: 700;
    color: #066885;
}
/* Locuri Progress Bar */
.locuri-progress-bar {
    max-width: 520px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(95, 184, 176, 0.2);
    border-radius: 14px;
    padding: 18px 24px;
    backdrop-filter: blur(6px);
}
.locuri-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.locuri-progress-label {
    font-size: 0.88rem;
    color: #066885;
    display: flex;
    align-items: center;
    gap: 6px;
}
.locuri-progress-label strong {
    font-weight: 700;
}
.locuri-fire {
    font-size: 1rem;
}
.locuri-progress-pct {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(26, 61, 78, 0.5);
}
.locuri-progress-track {
    width: 100%;
    height: 10px;
    background: rgba(26, 61, 78, 0.08);
    border-radius: 6px;
    overflow: hidden;
}
.locuri-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2f6684, #ff9800);
    border-radius: 6px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.planuri-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 0;
}
.plan-card-detailed {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 36px 32px 32px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}
.plan-card-detailed:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.plan-card-detailed.featured {
    border-color: rgb(219 170 46 / 51%);
    box-shadow: 0 8px 36px rgba(45, 96, 120, 0.12);
}
.plan-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, #e6a817, #d4940f);
    color: white;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(212, 148, 15, 0.35);
}
.plan-badge strong {
    font-weight: 700;
}
.plan-header {
    margin-bottom: 0;
    text-align: center;
}
.plan-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #066885;
}
.plan-description {
    font-size: 14px;
    color: rgba(26, 61, 78, 0.55);
    margin-bottom: 20px;
    font-style: italic;
}
.plan-description strong {
    font-weight: 700;
    font-style: italic;
    color: #066885;
}
.plan-subjects-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.subject-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.subject-group {
    position: relative;
}
.subject-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    background: rgba(235, 245, 240, 0.8);
    border: 2px solid rgba(200, 215, 210, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    position: relative;
    white-space: nowrap;
}
.subject-option input[type="checkbox"] {
    display: none;
}
.subject-option:hover {
    border-color: rgba(45, 96, 120, 0.4);
    background: rgba(225, 242, 238, 0.5);
}
.subject-option.selected {
    background: linear-gradient(135deg, #e0f0ed, #b8e0d8);
    color: #066885;
    border-color: rgba(45, 96, 120, 0.35);
    box-shadow: 0 2px 10px rgba(45, 96, 120, 0.15);
}
.subject-option.selected .subject-label::before {
    content: '✓ ';
    font-weight: 700;
}
.subject-label {
    font-weight: 600;
    font-size: 13px;
    pointer-events: none;
}
/* Biologie variant toggle (Barron's / Corint) - always visible */
.bio-variant-toggle {
    display: flex;
    margin-left: 4px;
    gap: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 2px;
    border: 1px solid rgba(200, 215, 210, 0.4);
    align-items: stretch;
    height: 35px;
    margin-top: -8px;
    margin-bottom: -8px;
    margin-right: -16px;
    border-radius: 25px;
}
.bio-variant {
    padding: 0 10px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.bio-variant.active {
    background: #066885;
    color: white;
    box-shadow: 0 1px 4px rgba(45, 96, 120, 0.3);
}
.bio-variant:hover:not(.active) {
    color: #066885;
    background: rgba(45, 96, 120, 0.08);
}
.plan-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 215, 210, 0.5), transparent);
    margin: 24px 0;
}
.plan-features {
    margin-bottom: 24px;
    flex: 1;
}
.feature-item {
    padding: 7px 0;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.5;
}
.feature-item strong {
    font-weight: 700;
    color: #066885;
}
.feature-check-icon {
    color: #066885;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1.4;
}
.plan-pricing {
    text-align: center;
    margin-bottom: 24px;
}
.plan-price {
    margin-bottom: 4px;
    color: #066885;
}
.price-deleted {
    font-size: 18px;
    font-weight: 600;
    color: #c0392b;
    text-decoration: line-through;
    margin-right: 6px;
    opacity: 0.85;
    position: absolute;
}
.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #066885;
    line-height: 1;
}
.price-unit {
    font-size: 20px;
    font-weight: 400;
    color: rgba(26, 61, 78, 0.5);
}
.price-per {
    font-size: 16px;
    font-weight: 400;
    color: rgba(26, 61, 78, 0.5);
}
.plan-savings {
    font-size: 14px;
    color: #e6a817;
    font-weight: 600;
}
.plan-selection-msg {
    font-size: 13px;
    line-height: 1.4;
    padding: 0;
    margin-top: 0;
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease, margin-top 0.35s ease;
}
.plan-selection-msg.visible {
    max-height: 60px;
    opacity: 1;
    padding: 10px 14px;
    margin-top: 12px;
}
.plan-selection-msg.error {
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}
.plan-selection-msg.success {
    background: rgba(95, 184, 176, 0.08);
    color: #1a7a6e;
    border: 1px solid rgba(95, 184, 176, 0.25);
}
.plan-footer {
    text-align: center;
    margin-top: auto;
}
.plan-note {
    font-size: 13px;
    color: rgba(26, 61, 78, 0.5);
    margin-bottom: 20px;
    line-height: 1.5;
    font-style: italic;
}
.plan-note em {
    font-style: italic;
}
.plan-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #066885 0%, #3a7a92 100%);
    color: white;
    border: none;
    padding: 15px 24px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(45, 96, 120, 0.3);
    margin-bottom: 12px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 96, 120, 0.4);
    background: linear-gradient(135deg, #245668 0%, #357088 100%);
}
.plan-meeting-link {
    display: inline-block;
    font-size: 13px;
    color: rgba(26, 61, 78, 0.5);
    text-decoration: underline;
    transition: color 0.2s ease;
}
.plan-meeting-link:hover {
    color: #066885;
}
/* Garantie Card */
.garantie-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(235, 245, 243, 0.6);
    border: 1.5px solid rgba(95, 184, 176, 0.25);
    border-radius: 16px;
    padding: 32px 36px;
    margin-top: 28px;
    backdrop-filter: blur(8px);
}
.garantie-badge {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(145deg, #066885, #066885);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
}
.garantie-shield {
    width: 28px;
    height: 28px;
    stroke: rgba(255,255,255,0.9);
}
.garantie-badge-text {
    text-align: center;
    line-height: 1.15;
}
.garantie-badge-text strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.garantie-badge-text span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.85;
}
.garantie-content {
    flex: 1;
    text-align: left;
}
.garantie-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #066885;
    margin: 0 0 8px;
}
.garantie-desc {
    font-size: 0.92rem;
    color: #4a6a7a;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .garantie-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 18px;
    }
    .garantie-badge {
        width: 90px;
        height: 90px;
    }
    .garantie-shield {
        width: 22px;
        height: 22px;
    }
    .garantie-badge-text strong {
        font-size: 12px;
    }
    .garantie-badge-text span {
        font-size: 9px;
    }
    .garantie-title {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .planuri-admitere {
        padding: 50px 15px 70px;
    }
    .planuri-title {
        font-size: 28px;
    }
    .planuri-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .plan-card-detailed {
        padding: 28px 24px;
    }
    .plan-title {
        font-size: 28px;
    }
    .price-amount {
        font-size: 36px;
    }
}
/* Bonusuri Section */
.bonusuri-section {
    background: #fafbfb;
    padding: 80px 20px 100px;
}
.bonusuri-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.bonusuri-title {
    font-size: 40px;
    font-weight: 300;
    color: #066885;
    margin-bottom: 12px;
    line-height: 1.2;
}
.bonusuri-title strong {
    font-weight: 800;
}
.bonusuri-subtitle {
    font-size: 16px;
    color: rgba(26, 61, 78, 0.5);
    margin-bottom: 50px;
    font-weight: 400;
}
.bonusuri-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.bonus-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px 0;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(225, 235, 230, 0.6);
    display: flex;
    flex-direction: column;
}
.bonus-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #066885;
    margin-bottom: 24px;
}
.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bonus-list li {
    display: block;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}
.bonus-list li strong {
    font-weight: 700;
    color: #066885;
}
.bonus-check {
    color: #5fb8b0;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
    margin-right: 6px;
}
.bonus-footer {
    margin-top: 28px;
    padding: 16px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    background: #f5f6fa;
    border-radius: 0 0 20px 20px;
    margin-left: -32px;
    margin-right: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.bonus-footer-check {
    color: #5fb8b0;
    font-size: 16px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .bonusuri-section {
        padding: 50px 15px 70px;
    }
    .bonusuri-title {
        font-size: 28px;
    }
    .bonusuri-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}
/* =====================================================
   Reviews Carousel Section (pc-reviews)
   ===================================================== */
.pc-reviews-section {
    /* background: linear-gradient(180deg, #f0f2f8 0%, #e8ecf8 50%, #f5f6f6 100%); */
    padding: 80px 0 90px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #066885 0%, #346d85 30%, #3a7a92 60%, #066885 100%);
}
.pc-reviews-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.pc-reviews-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}
/* .pc-reviews-title strong {
    background: linear-gradient(135deg, #066885, #5fb8b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */
.pc-reviews-subtitle {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 400;
}
/* Marquee container */
.pc-reviews-marquee {
    position: relative;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
/* Track - scrolling strip */
.pc-reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: pcReviewsScroll 120s linear infinite;
    padding: 12px 0;
}
.pc-reviews-track.paused {
    animation-play-state: paused;
}
@keyframes pcReviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Individual card */
.pc-rv-card {
    flex-shrink: 0;
    width: 360px;
    background: #fff;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(45, 96, 120, 0.07);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease,
                border-color 0.3s ease;
    user-select: none;
    position: relative;
}
.pc-rv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 96, 120, 0.13);
    border-color: rgba(95, 184, 176, 0.3);
}
.pc-rv-card.active {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(45, 96, 120, 0.18);
    border-color: rgba(45, 96, 120, 0.25);
}
/* Card header */
.pc-rv-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.pc-rv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.pc-rv-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.pc-rv-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #066885;
    line-height: 1.2;
}
.pc-rv-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 50px;
    width: fit-content;
}
.pc-rv-badge[data-type="Elev"] {
    background: rgba(45, 96, 120, 0.1);
    color: #066885;
}
.pc-rv-badge[data-type="Părinte"] {
    background: rgba(95, 184, 176, 0.12);
    color: #3a9e96;
}
.pc-rv-badge[data-type="Mentor"] {
    background: rgba(124, 107, 196, 0.12);
    color: #6d5ba3;
}
.pc-rv-stars {
    font-size: 0.82rem;
    color: #f0b429;
    letter-spacing: 1px;
    margin-left: auto;
    flex-shrink: 0;
}
/* Card text */
.pc-rv-text {
    font-size: 0.88rem;
    line-height: 1.72;
    color: #3d5a68;
    margin: 0;
}
/* Card footer */
.pc-rv-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(45, 96, 120, 0.06);
}
.pc-rv-date {
    font-size: 0.74rem;
    font-weight: 500;
    color: #8fa8ad;
}
.pc-rv-uni {
    font-size: 0.74rem;
    font-weight: 600;
    color: #5fb8b0;
}
/* Footer link */
.pc-reviews-footer {
    text-align: center;
    margin-top: 36px;
}
.pc-reviews-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(45, 96, 120, 0.15);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #066885;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pc-reviews-more-btn:hover {
    background: #066885;
    color: #fff;
    border-color: #066885;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 96, 120, 0.2);
}
/* Responsive */
@media (max-width: 768px) {
    .pc-reviews-section {
        padding: 60px 0 70px;
    }
    .pc-reviews-title {
        font-size: 1.7rem;
    }
    .pc-rv-card {
        width: 300px;
        padding: 22px;
    }
    .pc-reviews-track {
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .pc-rv-card {
        width: 270px;
        padding: 20px;
    }
    .pc-reviews-title {
        font-size: 1.4rem;
    }
}
/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #f5f6f6 0%, #eef0ef 100%);
    padding: 80px 20px 100px;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: #066885;
    margin-bottom: 12px;
}
.faq-subtitle {
    font-size: 16px;
    color: rgba(26, 61, 78, 0.55);
    margin-bottom: 48px;
    font-weight: 400;
}
.faq-subtitle strong {
    font-weight: 700;
    color: #066885;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.faq-item {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(225, 235, 230, 0.5);
    transition: all 0.3s ease;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.9);
}
.faq-question {
    padding: 20px 28px;
    font-size: 16px;
    font-weight: 500;
    color: #2d4a4e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.faq-toggle {
    font-size: 22px;
    color: #5fb8b0;
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 28px 0;
    font-size: 14px;
    color: rgba(26, 61, 78, 0.6);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 28px 20px;
}
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 15px 70px;
    }
    .faq-title {
        font-size: 28px;
    }
}
/* Responsive Design */
@media (max-width: 968px) {
    .hero-stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-stats-image {
        order: -1;
    }
    
    .hero-stats-image img {
        max-width: 280px;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .plan-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .progress-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calendar-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .demo-iframe-body {
        aspect-ratio: 4 / 3;
    }
    
    .planuri-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .hero-stats-title {
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .section-title,
    .progress-title,
    .calendar-title,
    .platform-title,
    .planuri-title,
    .faq-title {
        font-size: 28px;
    }
    
    .plan-features-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card-detailed {
        padding: 24px;
    }
}
