/* ===================================
   Pedál Klub – kreatív demó kiegészítések
===================================== */

/* Reviews: bal oldali kép ne legyen nyújtott – object-fit cover, arc látható */
.reviews-sec .about-img {
    object-fit: cover;
    object-position: center top;
}

/* Hero banner: AI generált háttérkép + sötét overlay a szöveg olvashatóságáért */
.bg-banner {
    background-image: url("/assets/collection/landings/cycling/images/ai-hero.jpg");
    background-size: cover;
    background-position: center 30%;
}
.bg-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,31,57,.82) 0%, rgba(14,31,57,.45) 55%, rgba(14,31,57,.15) 100%);
    z-index: 1;
}
.bg-banner .container { position: relative; z-index: 2; }

/* Hero szöveg finom belépő animáció */
.banner-div > * {
    opacity: 0;
    transform: translateY(30px);
    animation: bannerIn .9s cubic-bezier(.2,.7,.3,1) forwards;
}
.banner-text { animation-delay: .2s; }
.banner-heading { animation-delay: .45s; font-size: 68px; line-height: 1.05; }
.banner-des { animation-delay: .7s; }
.button { animation-delay: .95s; }
@keyframes bannerIn { to { opacity: 1; transform: translateY(0); } }

/* Hero scroll hint */
.bg-banner::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 34px;
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 14px;
    transform: translateX(-50%);
    z-index: 3;
}
.bg-banner::after::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    width: 4px;
    height: 8px;
    background: #f94217;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
    0% { opacity: 1; top: 8px; }
    70% { opacity: 0; top: 24px; }
    100% { opacity: 0; top: 24px; }
}

/* ===================================
   Stats – animált számlálók
===================================== */
.stats-sec {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(249,66,23,.1);
    color: #f94217;
    font-size: 34px;
    transition: transform .5s ease, background .5s ease, color .5s ease;
}
.stat-item:hover .stat-icon {
    transform: translateY(-8px) rotateY(360deg);
    background: #f94217;
    color: #fff;
}
.stat-num {
    font-size: 52px;
    font-weight: 700;
    color: #0e1f39;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: .4rem;
}
.stat-num::after { content: "+"; color: #f94217; }
.stat-label {
    font-size: 15px;
    color: #6b7280;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Team – edzők kártyái
===================================== */
.team-sec { background: #f6f6f6; padding: 7.5rem 0; }
.team-subtitle { color: #f94217; }
.team-sec .heading-area .sub-title { color: #f94217; }
.team-sec .heading-area .title { color: #0e1f39; }
.team-row .team-item { margin-bottom: 2rem; }
.team-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(14,31,57,.08);
    transition: transform .5s ease, box-shadow .5s ease;
}
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 26px 50px rgba(14,31,57,.18);
}
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.08); }
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,31,57,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .5s ease;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social { margin: 0; padding: 0; display: flex; gap: 12px; transform: translateY(14px); transition: transform .5s ease; }
.team-card:hover .team-social { transform: translateY(0); }
.team-social li a {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff; color: #0e1f39;
    font-size: 17px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.team-social li a:hover { background: #f94217; color: #fff; transform: translateY(-4px); }
.team-info { padding: 1.6rem 1.8rem 1.8rem; text-align: center; }
.team-name { font-size: 24px; font-weight: 600; color: #0e1f39; font-family: 'Montserrat', sans-serif; margin-bottom: .3rem; }
.team-role { font-size: 14px; color: #f94217; font-family: 'Montserrat', sans-serif; letter-spacing: .5px; }

/* ===================================
   Pricing – csomagok
===================================== */
.pricing-sec { padding: 7.5rem 0; }
.pricing-subtitle { color: #f94217; }
.pricing-sec .heading-area { margin-bottom: 80px; }
.pricing-row .pricing-item { margin-bottom: 2rem; }
.pricing-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    padding: 2.6rem 2.2rem;
    text-align: center;
    position: relative;
    transition: transform .5s ease, background .5s ease, border-color .5s ease;
}
.pricing-card:hover {
    transform: translateY(-14px);
    background: rgba(255,255,255,.1);
    border-color: #f94217;
}
.pricing-card.featured {
    background: #fff;
    border-color: #fff;
    transform: scale(1.04);
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-14px); }
.popular-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: #f94217; color: #fff;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 22px; border-radius: 30px;
    white-space: nowrap;
}
.plan-name { font-size: 26px; font-weight: 600; color: #fff; font-family: 'Montserrat', sans-serif; margin-bottom: .6rem; }
.pricing-card.featured .plan-name { color: #0e1f39; }
.plan-price { font-size: 18px; color: rgba(255,255,255,.7); font-family: 'Montserrat', sans-serif; margin-bottom: 1.6rem; }
.pricing-card.featured .plan-price { color: #6b7280; }
.price-num { font-size: 40px; font-weight: 700; color: #f94217; }
.plan-features { list-style: none; margin: 0 0 2rem; padding: 0; text-align: left; }
.plan-features li {
    display: flex; align-items: center; gap: 12px;
    padding: .55rem 0;
    font-size: 15px; color: rgba(255,255,255,.85);
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.pricing-card.featured .plan-features li { color: #374151; border-color: rgba(14,31,57,.08); }
.plan-features li i { color: #f94217; font-size: 16px; width: 20px; text-align: center; }
.plan-features li.disabled { opacity: .45; }
.plan-features li.disabled i { color: #9ca3af; }
.pricing-btn { width: 100%; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: #f94217; border-color: #f94217; color: #fff; }

/* ===================================
   CTA – call to action sáv
===================================== */
.cta-sec {
    position: relative;
    padding: 6rem 0;
    background-image: url("/assets/collection/landings/cycling/images/ai-cta.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-sec::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(14,31,57,.9) 0%, rgba(249,66,23,.55) 100%);
}
.cta-sec .container { position: relative; z-index: 2; }
.cta-row { align-items: center; }
.cta-text h2 { font-size: 44px; font-weight: 600; color: #fff; font-family: 'Montserrat', sans-serif; margin-bottom: .8rem; }
.cta-text p { font-size: 17px; color: rgba(255,255,255,.9); font-family: 'Montserrat', sans-serif; max-width: 560px; }
.cta-action { text-align: right; }
.cta-btn { font-size: 18px; padding: 16px 40px; box-shadow: 0 14px 30px rgba(249,66,23,.4); transition: transform .4s ease, box-shadow .4s ease; }
.cta-btn:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 20px 40px rgba(249,66,23,.55); background: #0e1f39 !important; border-color: #0e1f39; }

/* ===================================
   Media queries – új szekciók
===================================== */
@media screen and (max-width: 1024px) {
    .banner-heading { font-size: 54px; }
    .stat-num { font-size: 44px; }
    .cta-text h2 { font-size: 36px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-14px); }
}
@media screen and (max-width: 991px) {
    .cta-row { flex-direction: column; text-align: center; }
    .cta-action { margin-top: 2rem; text-align: center; }
    .cta-text p { margin: 0 auto; }
}
@media screen and (max-width: 767px) {
    .banner-heading { font-size: 40px; }
    .stat-num { font-size: 38px; }
    .stats-sec { padding: 3.5rem 0; }
    .team-img-wrap img { height: 280px; }
    .cta-text h2 { font-size: 30px; }
    .plan-price { font-size: 16px; }
    .price-num { font-size: 34px; }
    .cta-sec { background-attachment: scroll; }
}
