:root {
    --primary: #362dae;
    --secondary: #0fbaba;
    --fp-brand: #362dae;
    --fp-brand-light: #4a40c9;
    --fp-accent: #0fbaba;
    --fp-accent-light: #e6f9f9;
    --fp-dark: #0a0c29;
    --fp-text: #1e293b;
    --fp-text-light: #64748b;
    --fp-bg: #ffffff;
    --fp-bg-soft: #f8fafc;
    --fp-border: #e2e8f0;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --fp-dark-green: #041812;
    --fp-card-dark: #0a271d;
    --fp-success: #10b981;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Zalando Sans", sans-serif;
    background: var(--fp-bg);
    color: var(--fp-text);
    line-height: 1.7;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 32px;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}


.btn-primary {
    background: var(--fp-brand);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--fp-brand-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(54, 45, 174, .25);
}

.btn-outline {
    background: transparent;
    color: var(--fp-brand);
    border: 2px solid var(--fp-brand);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all .3s;
}

.btn-outline:hover {
    background: var(--fp-brand);
    color: #fff;
}

.btn-accent {
    background: var(--fp-accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all .3s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 186, 186, .3);
    filter: brightness(1.1);
}


.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fp-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}




.nav-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--fp-brand);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95em;
    font-weight: 700;
    color: var(--fp-text-light);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--fp-brand);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    padding: 4px 20px;
    background: var(--fp-accent);
    border: 1px solid var(--fp-accent);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 186, 186, .18);
    transition: all .3s;
}

.nav-actions .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 186, 186, .28);
    filter: brightness(1.05);
}

.mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #d7e2f1;
    background: #fff;
    color: #1e2d62;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}



.hero-wrapper {
    padding: 24px 0 0;
}

.hero {
    margin: 0 auto;
    padding: 56px 48px 0;
    text-align: center;
    background: linear-gradient(160deg, #0e1035 0%, var(--fp-brand) 40%, #131640 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 24px;
}

.hero-sphere {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-sphere-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 40% 30%, #062aa7, #494c99);
    top: -120px;
    left: -120px;
    box-shadow: inset 0 0 60px rgba(54, 45, 174, .3);
}

.hero-sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 40% 30%, #062aa7, #494c99);
    bottom: -100px;
    right: -140px;
    box-shadow: inset 0 0 80px rgba(15, 186, 186, .15);
}

.hero-sphere-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 30%, #062aa7, #494c99);
    top: 55%;
    left: 5%;
    box-shadow: inset 0 0 40px rgba(54, 45, 174, .2);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .6);
    max-width: 520px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fp-accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all .3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 186, 186, .35);
    filter: brightness(1.1);
}

.hero-dashboard {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    transform: translateY(60px);
}



.topbar {
    background: var(--fp-brand);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 1px;
}

.topbar a {
    color: rgba(255, 255, 255, .45);
    transition: color .2s;
}

.topbar a:hover {
    color: #fff;
}

.topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}


.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fp-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fp-dark);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1rem;
    color: var(--fp-text-light);
    line-height: 1.8;
    font-weight: 400;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 100%;
    margin: 48px auto 0;
}

.faq-item {
    border: 1px solid var(--fp-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--fp-dark);
    transition: background .2s;
}

.faq-q:hover {
    background: var(--fp-bg-soft);
}

.faq-q i {
    transition: transform .3s;
    color: var(--fp-brand);
}

.faq-q.active i {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
    font-size: 0.9rem;
    color: var(--fp-text-light);
    line-height: 1.8;
     text-align: left;

}

.faq-a.show {
    max-height: 300px;
    padding: 0 24px 20px;
    text-align: left
}




.cta-banner {
    padding: 80px 0;
}

.cta-box {
    background: var(--fp-dark);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-box p {
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--fp-accent);
    filter: blur(120px);
    opacity: .12;
    pointer-events: none;
}


.support-section {
    padding: 80px 0;
}



footer {
    background: var(--fp-dark);
    color: #fff;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 32px;
}

.footer-brand span {
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255, 255, 255, .4);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col h4,
.footer-col .footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 2px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: var(--fp-accent);
}

.footer-bottom {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, .25);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


@media (max-width: 768px) {

    .nav-links,
    .topbar {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero {
        padding: 110px 20px 0;
    }

    .hero h1 {
        font-size: 2.4rem;
        text-align: center;
    }

    .hero-inner {
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-micro {
        justify-content: center;
    }

    .hero-refund-badge {
        width: 140px;
        right: 12px;
        font-size: 0.9rem;
    }

    .hero-dashboard {
        transform: translateY(10px);
    }
}


.tutorials-section {
    padding: 60px 0;
}

.tutorials-header {
    text-align: center;
    margin-bottom: 48px;
}

.tutorials-header .section-label {
    margin-bottom: 16px;
}

.tutorials-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fp-dark);
    letter-spacing: -0.02em;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.tutorial-card {
    background: var(--fp-bg-soft);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--fp-border);
    transition: transform .3s, box-shadow .3s;
    text-align: center;
    cursor: pointer;
}

.tutorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.tutorial-card-thumb {
    position: relative;
    overflow: hidden;
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow-clip-margin: unset;
    position: absolute;
    inset: 0;
}

.tutorial-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: transform .3s, box-shadow .3s;
}

.tutorial-play-btn i {
    color: var(--fp-brand);
    font-size: 1.1rem;
    margin-left: 3px;
}

.tutorial-card:hover .tutorial-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 24px rgba(54, 45, 174, .3);
}

.tutorial-card-title {
    padding: 16px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--fp-text);
}


.video-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.video-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.video-modal {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transform: scale(.9);
    transition: transform .3s;
}

.video-modal-backdrop.active .video-modal {
    transform: scale(1);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, .3);
}



.testimonials {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
}

.testimonial-slide-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
    padding: 60px;
    text-align: center;
    position: relative;
    display: none;
    animation: fadeSlide .5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-slide-card.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--fp-text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.testimonial-quote strong {
    color: var(--fp-brand);
    font-weight: 700;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.testimonial-author-box {
    text-align: left;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--fp-dark);
    margin-bottom: 4px;
}

.testimonial-author-role {
    font-size: 0.9rem;
    color: var(--fp-text-light);
}

.slider-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--fp-border);
    background: #fff;
    color: var(--fp-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 12px;
}

.slider-nav-btn:hover {
    border-color: var(--fp-brand);
    color: var(--fp-brand);
    background: #f8faff;
}

.slider-controls {
    display: flex;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--fp-accent);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonial-slide-card {
        padding: 32px;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .testimonial-author-box {
        text-align: center;
    }
}



.solutions-section {
    padding: 40px 0 40px 0;
    background: #fff;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.solutions-header h2 {
    font-size: 2.5rem;
    color: var(--fp-dark);
    font-weight: 800;
    margin-bottom: 16px;
}

.solutions-header p {
    color: var(--fp-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.solution-tab {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--fp-text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.solution-tab:hover {
    color: var(--fp-brand);
    background: #f0f0ff;
}

.solution-tab.active {
    background: var(--fp-accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 186, 186, 0.3);
}

.solution-tab-content {
    display: none;
    position: relative;
    width: 100%;
    height: 500px;
    animation: fadeIn 0.4s ease;
}

.solution-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.solution-actions {
    margin-bottom: 32px;
    max-width: 550px;
    padding-top: 15px;
}

.mobile-app-promo {
    padding: 100px 0;
    overflow: visible;
}

.promo-card {
    background: #fff;
    border-radius: 40px;
    padding: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

.promo-content-left {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
    z-index: 2;
}

.promo-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;

}

.promo-pill {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fp-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.promo-heading {
    font-size: 2.2rem;
    color: var(--fp-dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.promo-subtext {
    font-size: 1.25rem;
    color: var(--fp-text);
    line-height: 1.6;
    margin-bottom: 40px;

    max-width: 480px;
}




.bf-header {
    margin-bottom: 60px;
    text-align: center;
}

.highlight-text {
    color: var(--fp-accent);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fp-accent);
    border-radius: 2px;
    opacity: 0.4;
}

.bf-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--fp-border);
    justify-content: center;
}

.bf-trust-bar span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fp-dark);
    display: flex;
    align-items: center;
    gap: 7px;
}

.bf-trust-bar span i {
    color: var(--fp-accent);
    font-size: 0.9rem;
}

.bf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bf-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--fp-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bf-card.dark {
    grid-column: span 2;
    background: radial-gradient(circle at 40% 30%, #062aa7, #494c99);
    color: #fff;
    min-height: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
}

.bf-card.dark:hover {
    box-shadow: 0 30px 60px rgba(10, 12, 41, 0.4);
}

.bf-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 15px 0 0 10px;
}

.bf-card.dark .bf-content {
    padding-right: 40px;
    max-width: 45%;
}

.bf-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.bf-card.dark .bf-visual {
    justify-content: flex-end;
    padding-left: 20px;
}

.bf-visual img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
    max-height: 250px;

    object-fit: contain;
}

.bf-card:hover .bf-visual img {
    transform: scale(1.03);
}

.bf-card.dark .bf-visual img {
    max-height: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bf-custom-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--fp-brand-light), var(--fp-brand));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    padding: 30px;
    text-align: center;
}

.bf-custom-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.bf-card:hover .bf-custom-visual {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 24px 60px rgba(54, 45, 174, 0.25);
}

.bfcv-icon {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.bfcv-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    z-index: 2;
    max-width: 80%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bfcv-logo {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 140px;
    height: auto;
    opacity: 0.12;
    transform: rotate(-15deg);
    z-index: 1;
    pointer-events: none;
}

/* Varying gradients for visual interest */
.bf-card:nth-child(even) .bf-custom-visual {
    background: linear-gradient(135deg, var(--fp-accent), #0b8a8a);
}

.bf-card:nth-child(3n) .bf-custom-visual {
    background: linear-gradient(135deg, #1e293b, var(--fp-dark));
}

.bf-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fp-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bf-card.dark .bf-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.bf-desc {
    font-size: 1rem;
    color: var(--fp-text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.bf-card.dark .bf-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.bf-arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--fp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fp-dark);
    font-size: 1rem;
    transition: all 0.3s;
    z-index: 5;
}

.bf-card:hover .bf-arrow {
    background: var(--fp-dark);
    color: #fff;
    border-color: var(--fp-dark);
    transform: rotate(45deg);
}

.bf-card.dark .bf-arrow {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.bf-card.dark:hover .bf-arrow {
    background: #fff;
    color: var(--fp-dark);
}


.bf-card::before {
    content: attr(data-index);
    position: absolute;
    bottom: -50px;
    left: -20px;
    font-size: 18rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.04);
    z-index: 0;
    line-height: 1;
    font-family: "Zalando Sans", sans-serif;
    pointer-events: none;
    transition: all 0.3s ease;
}

.bf-card:hover::before {
    transform: scale(1.05) rotate(-3deg);
    opacity: 1;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.08);
}

.bf-card.dark::before {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.04);
    left: auto;
    right: 10%;
    bottom: -60px;
}

.bf-card.dark:hover::before {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .bf-grid {
        grid-template-columns: 1fr;
    }

    .bf-card.dark {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }

    .bf-card.dark .bf-content {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .bf-card.dark .bf-visual {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .bf-title {
        font-size: 1.5rem;
    }

    .bf-card.dark .bf-title {
        font-size: 2rem;
    }
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;

}

.feature-ref-cta .btn-accent i {
    font-size: .9rem;
    transition: transform 0.3s;
}

.feature-ref-cta .btn-accent:hover i {
    transform: translateX(4px);
}

/* MALI MUSAVIR FEATURE LIST & COLUMNS */
.mali-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
}

.mali-col-card {
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.mali-col-card h2 {
    font-size: 1.4rem;
    color: var(--fp-dark);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

.mali-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mali-simple-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 1.05rem;
    color: var(--fp-text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: none;
}

.mali-simple-list li:last-child {
    border-bottom: none;
}

.mali-simple-list li i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.mali-simple-list li strong {
    color: var(--fp-dark);
    font-weight: 600;
}

@media (max-width: 900px) {
    .mali-two-columns {
        grid-template-columns: 1fr;
    }

    .mali-col-card {
        padding: 24px;
    }
}

.btn-store-img {
    display: inline-block;
    transition: transform 0.3s;
}

.btn-store-img:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.btn-store-img img {
    height: 42px;

    width: auto;
    display: block;
}

.promo-phone-img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    transform: rotate(-5deg);

    border-radius: 40px;

}

@media (max-width: 992px) {
    .promo-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
        overflow: hidden;

    }

    .promo-content-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 60px;
    }

    .promo-heading {
        font-size: 2.5rem;
    }

    .promo-subtext {
        margin: 0 auto 40px;
    }

    .store-buttons {
        justify-content: center;
    }

    .promo-phone-img {
        transform: none;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .promo-slide {
        grid-template-columns: 1fr;
    }

    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tutorials-header h2 {
        font-size: 1.6rem;
    }
}

footer {
    background: radial-gradient(1200px 420px at 10% -20%, #0f245f 0%, transparent 65%), linear-gradient(180deg, #020b1f 0%, #031129 100%);
    color: #e2e8f0;
    padding: 58px 0 22px;
    border-top: 1px solid rgba(148, 163, 184, .15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    margin-bottom: 14px;
}

.footer-brand-logo {
    height: 34px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin: 4px 0 16px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, .24);
    background: rgba(15, 23, 42, .42);
    color: #cbd5e1;
    transition: all .2s ease;
}

.footer-social a:hover {
    color: #fff;
    border-color: rgba(56, 189, 248, .6);
    background: rgba(30, 41, 59, .8);
    transform: translateY(-1px);
}

.footer-social-x {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1;
    transform: translateY(1px);
}

.footer-store-buttons {
    display: grid;
    gap: 10px;
    max-width: 220px;
}

.footer-store-btn {
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, .24);
    background: rgba(15, 23, 42, .56);
    color: #e2e8f0;
    font-size: .86rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-store-btn:hover {
    border-color: rgba(56, 189, 248, .6);
    background: rgba(30, 41, 59, .9);
}




.footer-col h4,
.footer-col .footer-col-title {
    font-size: .95rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-col ul li a {
    font-size: .92rem;
    color: #94a3b8;
    font-weight: 500;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #22d3ee;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    color: #64748b;
    font-size: .82rem;
    padding-top: 6px;
    text-align: left;
    letter-spacing: 0;
    text-transform: none;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: .82rem;
}

.footer-bottom-links a:hover {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.container,
.container-wide {
    width: 100%;
}

@media (max-width: 1200px) {

    .container,
    .container-wide {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {

    .container,
    .container-wide {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {

    .container,
    .container-wide {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.nav-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.topbar-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: flex-end;
}

.topbar-marquee {
    position: relative;
    overflow: hidden;
    max-width: 540px;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.topbar-marquee-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    width: max-content;
    animation: topbarMarquee 18s linear infinite;
}

.topbar-marquee-track a {
    color: #fff;
    opacity: .95;
    font-size: .7rem;
    letter-spacing: .4px;
    font-weight: 700;
    transition: color 0.2s, opacity 0.2s;
}

.topbar-marquee-track a:hover {
    color: var(--fp-accent);
    opacity: 1;
}

.topbar-marquee:hover .topbar-marquee-track {
    animation-play-state: paused;
}

@keyframes topbarMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .topbar-left {
        gap: 14px;
    }

    .topbar-marquee {
        max-width: 420px;
    }
}

.legacy-solutions-hidden {
    display: none !important;
}

.solutions-alt-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 10px;
}

.solutions-alt-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    padding: 26px;
    border: 1px solid var(--fp-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
}

.solutions-alt-item.is-reverse .solutions-alt-media {
    order: 2;
}

.solutions-alt-item.is-reverse .solutions-alt-content {
    order: 1;
}

.solutions-alt-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--fp-border);
    min-height: 280px;
    background: #f1f5f9;
}

.solutions-alt-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solutions-alt-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px;
}

.solutions-alt-content .subtitle {
    display: inline-block;
    color: var(--fp-brand);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

.solutions-alt-content h3 {
    font-size: 2rem;
    color: var(--fp-dark);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.solutions-alt-content p {
    color: var(--fp-text-light);
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 1rem;
}

.support-layout {
    display: grid;
    gap: 24px;
}

.support-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.support-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    color: var(--fp-text);
    border: 1px solid var(--fp-border);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .06);
    position: relative;
    overflow: hidden;
}

.support-box>* {
    position: relative;
    z-index: 1;
}

.support-box::after {
    content: '\f590';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -16px;
    bottom: -22px;
    font-size: 112px;
    line-height: 1;
    color: rgba(54, 45, 174, .08);
    z-index: 0;
    pointer-events: none;
}

.support-box--guide::after {
    content: '\f518';
}

.support-box h3 {
    color: var(--fp-dark);
    font-size: 1.5rem;
    line-height: 1.28;
    margin-bottom: 12px;
    font-weight: 800;
}

.support-box p {
    color: var(--fp-text-light);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: .98rem;
}

.support-contact-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.support-contact-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    line-height: 1.45;
    background: #f8fafc;
    border: 1px solid #e5ecf5;
    border-radius: 12px;
    padding: 10px 11px;
}

.support-contact-item i {
    color: var(--fp-brand);
    margin-top: 3px;
    width: 18px;
    text-align: center;
    font-size: .86rem;
}

.support-contact-text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.support-contact-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .9px;
    color: #7c8aa5;
    font-weight: 700;
}

.support-contact-value {
    font-size: .92rem;
    color: var(--fp-text);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.support-guide-btn {
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--fp-brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .88rem;
}

.floating-follow-card {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 248px;
    z-index: 95;
    background: linear-gradient(145deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .58) 100%);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .22), inset 0 1px 0 rgba(255, 255, 255, .65);
    overflow: hidden;
    transition: transform .24s ease, opacity .24s ease;
}

.follow-card-head {
    padding: 12px 14px;
    background: rgba(255, 255, 255, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    color: var(--fp-dark);
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.follow-dock-btn {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(148, 163, 184, .35);
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
}

.follow-item {
    padding: 12px 14px;
    display: grid;
    gap: 8px;
}

.follow-item+.follow-item {
    border-top: 1px solid rgba(255, 255, 255, .55);
}

.follow-item-title {
    color: var(--fp-dark);
    font-size: .88rem;
    line-height: 1.25;
    font-weight: 700;
}

.follow-item-phone {
    color: var(--fp-text-light);
    font-size: .84rem;
}

.follow-btn {
    width: fit-content;
    justify-content: center;
    padding: 7px 11px;
    border-radius: 9px;
    font-size: .74rem;
    background: linear-gradient(135deg, var(--fp-brand) 0%, #4a40c9 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.follow-btn.alt {
    background: #0f766e;
}

.floating-follow-card.is-docked {
    transform: translateX(calc(100% + 26px));
    opacity: 0;
    pointer-events: none;
}

.follow-reopen-btn {
    position: fixed;
    right: 0;
    bottom: 120px;
    z-index: 96;
    width: 36px;
    height: 96px;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(145deg, rgb(23 24 153 / 88%) 0%, rgb(4 13 121 / 62%) 100%);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    color: var(--fp-accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    transform: translateX(8px);
}

.follow-reopen-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.bottom-demo-form {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2, 11, 31, .78);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.bottom-demo-form.show {
    display: flex;
}

.bottom-demo-dialog {
    background: #0d1b38;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    padding: 28px 28px 22px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .45);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    box-sizing: border-box;
}

.demo-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.demo-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
}

.demo-form-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: background .2s;
}

.demo-form-close:hover {
    background: rgba(255, 255, 255, .13);
    color: #fff;
}

.demo-field {
    width: 100%;
    padding: 10px 13px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    color: #fff;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}

.demo-field::placeholder {
    color: rgba(255, 255, 255, .35);
}

.demo-field:focus {
    border-color: rgba(99, 179, 237, .6);
    background: rgba(255, 255, 255, .09);
}

.demo-plan-row {
    display: flex;
    gap: 8px;
    margin: 14px 0;
}

.demo-plan {
    flex: 1;
    padding: 9px 12px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.demo-plan.active {
    border-color: rgba(99, 179, 237, .5);
    background: rgba(99, 179, 237, .12);
    color: #63b3ed;
}

.demo-plan i {
    font-size: .7rem;
}

.demo-form-feedback {
    min-height: 18px;
    font-size: .8rem;
    color: #fca5a5;
    margin-bottom: 4px;
}

@media (max-width: 560px) {
    .bottom-demo-dialog {
        padding: 22px 18px 18px;
        border-radius: 14px;
    }
}

body.has-demo-open .floating-follow-card,
body.has-demo-open .follow-reopen-btn {
    opacity: 0;
    pointer-events: none;
}

.tutorials-slider-outer {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
    align-items: center;
}

.tutorials-slider-wrapper {
    overflow: hidden;
    min-width: 0;
}

.tutorial-nav {
    width: 44px;
    height: 44px;
    background: var(--fp-bg-soft);
    border: 1px solid var(--fp-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fp-dark);
}

.tutorial-nav.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.tutorial-nav.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

.tutorials-nav-row {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.tutorials-grid {
    --tutorial-visible: 4;
    --tutorial-gap: 20px;
    display: flex !important;
    gap: var(--tutorial-gap) !important;
    transition: transform .35s ease;
    will-change: transform;
    width: 100%;
}

.tutorial-card {
    flex: 0 0 calc((100% - (var(--tutorial-visible) - 1) * var(--tutorial-gap)) / var(--tutorial-visible)) !important;
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 991px) {
    .tutorials-grid {
        --tutorial-visible: 3;
        --tutorial-gap: 16px;
    }
}

@media (max-width: 992px) {
    .solutions-alt-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .solutions-alt-item.is-reverse .solutions-alt-media,
    .solutions-alt-item.is-reverse .solutions-alt-content {
        order: initial;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }


    .support-row {
        grid-template-columns: 1fr;
    }


    .support-box h3 {
        font-size: 1.45rem;
    }

    .tutorials-slider-outer {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tutorials-slider-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .tutorials-grid {
        --tutorial-visible: 2;
        --tutorial-gap: 12px;
    }

    .tutorial-card {
        flex: 0 0 calc((100% - (var(--tutorial-visible) - 1) * var(--tutorial-gap)) / var(--tutorial-visible)) !important;
    }

    .tutorials-nav-row {
        display: flex;
    }

    #tutorialPrevBtn,
    #tutorialNextBtn {
        display: none;
    }

    .floating-follow-card {
        right: 12px;
        bottom: 12px;
        width: 214px;
    }

    .follow-reopen-btn {
        right: 0;
        bottom: 108px;
        width: 34px;
        height: 84px;
    }
}

@media (max-width: 610px) {
    .tutorials-grid {
        --tutorial-visible: 1;
        --tutorial-gap: 10px;
    }

    .tutorial-card {
        flex: 0 0 100% !important;
        width: 100%;
    }

    .tutorial-card-thumb {
        min-height: 250px;
    }
}

.page-shell {
    padding: 54px 0 72px;
}

.page-soft {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 30px;
}

.page-filter-btn {
    height: 40px;
    border-radius: 999px;
    padding: 0 18px;
    font-size: .86rem;
    font-weight: 700;
    border: 1px solid #d4deea;
    background: #fff;
    color: #516075;
}

.page-filter-btn.active {
    border-color: rgba(54, 45, 174, .38);
    background: rgba(54, 45, 174, .08);
    color: var(--fp-brand);
}

.blog-tag {
    margin-top: auto;
    width: fit-content;
    background: #eceaff;
    color: var(--fp-brand);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: .76rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-shell {
        padding: 42px 0 54px;
    }
}

.blog-shell {
    background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .55fr);
    gap: 18px;
    margin-bottom: 26px;
}

.blog-spotlight {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    background: #fff;
    border: 1px solid #dce4f3;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(27, 42, 82, .08);
}

.blog-spotlight-media img,
.blog-spotlight-media .campaign-gradient-cover {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.blog-spotlight-content {
    padding: 26px;
    display: grid;
    gap: 12px;
    align-content: center;
}

.blog-spotlight-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.14;
    color: #111b3a;
}

.blog-spotlight-content p {
    color: #4f5f7a;
    line-height: 1.72;
}

.blog-spotlight-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-spotlight-meta span {
    font-size: .76rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 5px 12px;
    background: #ecf2ff;
    color: #2d3f76;
}

.blog-side-box {
    border-radius: 22px;
    border: 1px solid #dce4f3;
    background: linear-gradient(160deg, #111a3d 0%, #202f6e 100%);
    color: #dce4ff;    
    display: grid;    
    gap: 14px;
}

.blog-side-box h2 {
    color: #fff;
    font-size: 1.6rem;
}

.blog-side-box p {
    color: #cdd7f4;
    line-height: 1.68;
}

.blog-side-stats {
    display: grid;
    gap: 10px;
}

.blog-side-stats div {
    border: 1px solid rgba(191, 204, 239, .24);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.blog-side-stats strong {
    color: #fff;
}

.blog-side-stats span {
    color: #c8d5f4;
    font-size: .83rem;
}

.blog-filter-row {
    justify-content: flex-start;
}

.blog-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.blog-modern-card {
    border: 1px solid #dce4f3;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 26px rgba(27, 42, 82, .06);
    display: grid;
}

.blog-modern-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.blog-modern-body {
    padding: 16px;
    display: grid;
    gap: 10px;
}

.blog-modern-body h3 {
    color: #162556;
    font-size: 1.2rem;
    line-height: 1.32;
}

.blog-modern-body p {
    color: #50607b;
    font-size: .93rem;
    line-height: 1.65;
}

.blog-modern-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-modern-foot a,
.blog-card-link {
    height: 36px;
    border-radius: 10px;
    background: #322e89;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
}

.reviews-shell {
    background: linear-gradient(180deg, #f7f8fd 0%, #ffffff 100%);
}

.reviews-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 24px;
}

.reviews-hero h1 {
    color: #121e47;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.14;
}

.reviews-hero p {
    color: #51607a;
    margin-top: 8px;
}

.reviews-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    min-width: 330px;
}

.reviews-hero-stats div {
    border-radius: 12px;
    border: 1px solid #dce4f3;
    background: #fff;
    padding: 10px;
    display: grid;
    gap: 2px;
    text-align: center;
}

.reviews-hero-stats strong {
    color: #17265c;
    font-size: 1rem;
}

.reviews-hero-stats span {
    color: #6b7c97;
    font-size: .76rem;
    font-weight: 600;
}

.reviews-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.review-modern-card {
    border: 1px solid #dce4f3;
    border-radius: 16px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(20, 35, 74, .05);
}

.review-modern-head h3 {
    color: #1b2758;
    font-size: 1.05rem;
}

.review-modern-head span {
    color: #7385a1;
    font-size: .79rem;
}

.review-modern-card p {
    color: #42536f;
    margin-top: 8px;
    line-height: 1.67;
}

.about-shell {
    background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 26px;
    justify-items: center;
    text-align: center;
}

.about-intro-content {
    max-width: 920px;
}

.about-intro-content h1 {
    color: #131f46;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.14;
}

.about-intro-content p {
    color: #4b5c78;
    margin-top: 10px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-card {
    border-radius: 18px;
    border: 1px solid #dce4f3;
    background: #fff;
    padding: 18px;
}

.about-intro-card h3 {
    color: #1a2858;
    margin-bottom: 8px;
}

.about-intro-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.about-intro-card li {
    color: #495a77;
    padding-left: 14px;
    position: relative;
}

.about-intro-card ul:not(.about-hero-features):not(.about-badge-list) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2f3e8f;
}

.about-hero-features li::before,
.about-badge-list li::before {
    content: none !important;
    display: none !important;
}

/* About Us Hero SVG Feature List */
.about-hero-features {
    list-style: none;
    padding: 0;
    margin: 24px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 800px;
}

.about-hero-features.has-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    text-align: left;
    margin-top: 20px;
}

.about-hero-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e1e7f5;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #3b4b68;
    box-shadow: 0 4px 12px rgba(27, 42, 82, 0.04);
}

.about-hero-features .fp-inline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    width: 18px;
    height: 18px;
}

/* About Us Summary Cards (Old layout cleanup) */
.about-summary-wide {
    margin-top: 18px;
    border-radius: 20px;
    padding: 24px 26px;
}

.about-summary-wide h3 {
    margin-bottom: 14px;
    text-align: center;
    font-size: 1.24rem;
}

/* Evolution Badges for Versions */
.about-badge-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-badge-list li {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(47, 62, 143, 0.06);
    color: #2f3e8f;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.about-badge-list strong {
    margin-right: 4px;
    color: #1a2858;
}

/* Tab Container Styles */
.about-tab-container {
    padding: 30px;
    margin-bottom: 30px;
}

.about-tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid #eaedf5;
    padding-bottom: 16px;
}

.about-tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: #63738e;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-tab-btn:hover {
    background: #f0f4fa;
    color: #1a2858;
}

.about-tab-btn.active {
    background: #2f3e8f;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(47, 62, 143, 0.2);
}

.about-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.about-tab-panel.active {
    display: block;
}

.about-tab-panel h2 {
    color: #1a2858;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.about-tab-panel p {
    color: #495a77;
    line-height: 1.6;
}

.evolution-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 16px;
}

.evolution-tabs {
    display: grid;
    gap: 10px;
    align-content: start;
}

.evolution-tab {
    text-align: left;
    border: 1px solid #dce4f3;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    display: grid;
    gap: 3px;
    color: #4d5f7b;
}

.evolution-tab span {
    font-size: .78rem;
    font-weight: 700;
    color: #7f8fa8;
}

.evolution-tab strong {
    font-size: .95rem;
}

.evolution-tab.active {
    border-color: rgba(54, 45, 174, .45);
    background: rgba(54, 45, 174, .08);
    color: #251f74;
}

.evolution-panel {
    display: none;
    border: 1px solid #dce4f3;
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 12px 26px rgba(20, 35, 74, .05);
}

.evolution-panel.active {
    display: block;
}

.evolution-panel-head h2 {
    color: #18265a;
    font-size: 1.7rem;
}

.evolution-panel-head p {
    color: #53627d;
    margin-top: 8px;
}

.evolution-gallery {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
    align-items: center;
}

.evo-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dbe3f2;
    background: #fff;
    min-height: 320px;
    aspect-ratio: 16 / 9;
    position: relative;
}

.evolution-shot {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease;
}

.evolution-shot.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.evo-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d8e0f0;
    background: #fff;
    color: #30437f;
}

.evo-dots {
    margin-top: 10px;
    display: flex;
    gap: 7px;
    justify-content: center;
}

.evo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #cad4e7;
}

.evo-dot.active {
    background: #2f3e8f;
}

.campaign-shell {
    background: linear-gradient(180deg, #f7f8fe 0%, #fff 100%);
}

.campaign-modern-card {
    border: 1px solid #dce4f3;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(20, 35, 74, .05);
}

.campaign-modern-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.campaign-modern-content {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.campaign-modern-content h3 {
    font-size: 1.24rem;
    color: #1d2d66;
    line-height: 1.3;
}

.campaign-modern-content p {
    color: #52627f;
}

.pricing-shell {
    background: #e8eaef;
}

.pricing-toggle {
    margin: 0 auto 24px;
    width: max-content;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid #d7dfef;
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(23, 35, 69, .08);
}

.pricing-toggle-btn {
    height: 40px;
    border-radius: 999px;
    padding: 0 22px;
    border: 0;
    background: transparent;
    color: #4a5a77;
    font-weight: 800;
    font-size: .9rem;
    transition: all .2s ease;
}

.pricing-toggle-btn.active {
    background: linear-gradient(135deg, var(--fp-brand) 0%, var(--fp-brand-light) 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(54, 45, 174, .28);
}

.pricing-gift-badge {
    position: absolute;
    right: 16px;
    top: 0;
    width: 130px;
    min-height: 88px;
    border-radius: 0 0 18px 18px;
    border: 1px solid #dbe3f2;
    border-top: 0;
    padding: 10px 10px 12px;
    background: #ffffff;
    color: #2737a6;
    font-size: .65rem;
    line-height: 1.16;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .32px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    z-index: 2;
}




.ozellikler-single-video-link {
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
}

.ozellikler-single-video {
    background-color: #ffffff;
    width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.ozellikler-single-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ozellikler-single-video-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.ozellikler-single-video-image img {
    width: 100%;
    display: block;
    height: auto;
}

.ozellikler-single-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.ozellikler-single-video:hover .ozellikler-single-video-play-btn {
    background-color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #2e3192;
    margin-left: 4px;
}

.feature-shell {
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.feature-hero {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-hero h1 {
    color: #15245a;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto;
}

.feature-hero p {
    margin-top: 12px;
    color: #53627f;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.feature-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.detail-shell {
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.detail-back-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #354884;
    font-weight: 700;
    margin-bottom: 12px;
}

.detail-article {
    border: 1px solid #dce4f3;
    border-radius: 18px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(20, 35, 74, .07);
}

.detail-pill {
    display: inline-flex;
    border-radius: 999px;
    background: #edf1ff;
    color: #2d3f78;
    font-size: .76rem;
    font-weight: 700;
    padding: 5px 11px;
}

.detail-article h1 {
    margin-top: 10px;
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.14;
}

.detail-lead {
    margin-top: 10px;
    color: #4f5f7a;
    font-size: 1.05rem;
}

.detail-article img {
    margin-top: 16px;
    width: 100%;
    border-radius: 14px;
    border: 1px solid #dbe3f2;
    max-height: 420px;
    object-fit: cover;
}

.detail-content {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.detail-article p {
    margin: 0 0 1rem;
}

.detail-content p {
    margin: 0;
    color: #455775;
    line-height: 1.75;
}

.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
#detailContent h2,
#detailContent h3,
#detailContent h4,
#detailContent h5 {
    color: #1f2f55;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

.detail-content h2,
#detailContent h2 {
    margin-top: 1.9rem;
    margin-bottom: 0.85rem;
}

.detail-content h3,
#detailContent h3 {
    margin-top: 1.55rem;
    margin-bottom: 0.7rem;
}

.detail-content h4,
#detailContent h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.55rem;
}

.detail-content h5,
#detailContent h5 {
    margin-top: 1rem;
    margin-bottom: 0.45rem;
}

.detail-content p + h2,
.detail-content ul + h2,
.detail-content ol + h2,
.detail-content p + h3,
.detail-content ul + h3,
.detail-content ol + h3,
.detail-content p + h4,
.detail-content ul + h4,
.detail-content ol + h4,
.detail-content p + h5,
.detail-content ul + h5,
.detail-content ol + h5,
#detailContent p + h2,
#detailContent ul + h2,
#detailContent ol + h2,
#detailContent p + h3,
#detailContent ul + h3,
#detailContent ol + h3,
#detailContent p + h4,
#detailContent ul + h4,
#detailContent ol + h4,
#detailContent p + h5,
#detailContent ul + h5,
#detailContent ol + h5 {
    padding-top: 0.35rem;
}

.detail-article ul,
.detail-article ol,
.detail-content ul,
.detail-content ol,
#detailContent ul,
#detailContent ol,
#campaignContent ul,
#campaignContent ol {
    list-style-position: outside !important;
    padding-left: 1.5rem !important;
    margin: .35rem 0 1rem !important;
}

.detail-article ul,
.detail-content ul,
#detailContent ul,
#campaignContent ul {
    list-style-type: disc !important;
}

.detail-article ol,
.detail-content ol,
#detailContent ol,
#campaignContent ol {
    list-style-type: decimal !important;
}

.detail-article li,
.detail-content li,
#detailContent li,
#campaignContent li {
    display: list-item !important;
    color: #455775;
    line-height: 1.75;
    margin-bottom: .4rem;
    padding-left: .2rem !important;
}

.detail-article li::marker,
.detail-content li::marker,
#detailContent li::marker,
#campaignContent li::marker {
    color: #1f2f55;
}

.detail-content .check-list,
#detailContent .check-list,
#campaignContent .check-list {
    padding-left: 1.5rem !important;
    margin: .5rem 0 1rem !important;
}

.detail-content .check-list > li,
#detailContent .check-list > li,
#campaignContent .check-list > li {
    display: list-item !important;
    list-style-position: outside !important;
    margin-bottom: .45rem;
    padding-left: .2rem !important;
}

.detail-content .check-list > li > span,
#detailContent .check-list > li > span,
#campaignContent .check-list > li > span {
    display: inline;
    color: #455775;
    line-height: 1.75;
}

.check-list {
    list-style-type: disc !important;
    list-style-position: outside !important;
    padding-left: 1.5rem !important;
    margin: .5rem 0 1rem !important;
}

.check-list > li {
    display: list-item !important;
    color: #455775;
    line-height: 1.75;
    margin-bottom: .45rem;
    padding-left: .2rem !important;
}

.check-list > li::marker {
    color: #1f2f55;
}

.check-list > li > span {
    display: inline;
}

.fatura-steps-content .check-list {
    list-style-type: disc !important;
    list-style-position: outside !important;
    padding-left: 1.5rem !important;
    margin: .5rem 0 1rem !important;
}

.fatura-steps-content .check-list > li {
    display: list-item !important;
    margin-bottom: .45rem;
    padding-left: .2rem !important;
}

.fatura-steps-content .check-list > li > span {
    display: inline;
    color: #455775;
    line-height: 1.75;
}

@media (max-width: 1120px) {

    .blog-hero-grid,
    .about-intro-grid,
    .evolution-layout,
    .reviews-hero {
        grid-template-columns: 1fr;
    }

    .blog-modern-grid,
    .reviews-modern-grid {
        grid-template-columns: 1fr;
    }


    .blog-spotlight {
        grid-template-columns: 1fr;
    }

    .feature-hero {
        align-items: center;
        text-align: center;
    }

    .about-summary-wide ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .evo-frame {
        min-height: 220px;
    }

    .evolution-gallery {
        grid-template-columns: 34px minmax(0, 1fr) 34px;
    }

    .reviews-hero-stats {
        min-width: 0;
    }

    .pricing-gift-badge {
        right: 12px;
        width: 118px;
        min-height: 80px;
        font-size: .64rem;
        padding: 8px 8px 10px;
    }
}

.hero-refund-badge {
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 3;
    width: 172px;
    min-height: 96px;
    font-size: 1.1rem;
    line-height: 1.22;
    letter-spacing: .24px;
    text-transform: none;
    color: #2737a6;
}

.contact-modern-shell {
    background: radial-gradient(1100px 460px at 0% 0%, rgba(15, 186, 186, .08) 0%, rgba(255, 255, 255, 0) 65%), linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-modern-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
    gap: 16px;
    margin-bottom: 18px;
}

.contact-modern-copy {
    background: #fff;
    border: 1px solid #dbe4f2;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(20, 35, 74, .07);
    display: grid;
    gap: 12px;
}

.contact-modern-copy h1 {
    color: #15245a;
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.12;
}

.contact-modern-copy p {
    color: #50607c;
    line-height: 1.74;
    max-width: 760px;
}

.contact-modern-points {
    margin-top: 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.contact-modern-points article {
    border: 1px solid #e2e9f5;
    border-radius: 14px;
    background: #f8fbff;
    padding: 12px;
    display: grid;
    gap: 4px;
}

.contact-modern-points strong {
    color: #1f3170;
    font-size: .86rem;
    line-height: 1.35;
}

.contact-modern-points span {
    color: #64748b;
    font-size: .77rem;
    line-height: 1.5;
}

.contact-modern-side {
    border: 1px solid #dbe4f2;
    border-radius: 24px;
    padding: 22px;
    background: linear-gradient(165deg, #0f1b45 0%, #1d2f6e 55%, #233879 100%);
    box-shadow: 0 16px 32px rgba(13, 25, 58, .2);
    display: grid;
    gap: 10px;
    align-content: start;
}

.contact-modern-side h2 {
    color: #fff;
    font-size: 1.22rem;
}

.contact-side-link {
    border: 1px solid rgba(202, 214, 244, .25);
    border-radius: 14px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 10px;
    color: #e5ecff;
    transition: .25s ease;
}

.contact-side-link:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-1px);
}

.contact-side-link i {
    color: #8bf4ea;
}

.contact-side-link span {
    display: block;
    color: #cad7fb;
    font-size: .74rem;
    margin-bottom: 2px;
}

.contact-side-link strong {
    color: #fff;
    font-size: .9rem;
    letter-spacing: .15px;
}

.contact-side-note {
    margin-top: 6px;
    color: #d0dcff;
    font-size: .82rem;
    line-height: 1.7;
}

.contact-modern-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 16px;
}

.contact-modern-form-card {
    border: 1px solid #dce5f3;
    border-radius: 24px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 16px 34px rgba(20, 35, 74, .07);
    display: grid;
    gap: 16px;
}

.contact-form-head h3 {
    color: #122055;
    font-size: 1.24rem;
}

.contact-form-head p {
    color: #5b6c88;
    font-size: .92rem;
    margin-top: 4px;
}

.contact-modern-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contact-modern-form-grid input,
.contact-modern-form-grid select,
.contact-modern-form-grid textarea {
    width: 100%;
    border: 1px solid #d7e1ef;
    border-radius: 12px;
    background: #f9fbff;
    color: #122255;
    padding: 12px 13px;
    font: inherit;
    font-size: .93rem;
}

.contact-modern-form-grid textarea.full {
    grid-column: 1 / -1;
    min-height: 130px;
    resize: vertical;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-form-actions .btn-outline {
    border: 1px solid #d0dcf0;
    color: #26366d;
    background: #fff;
    min-height: 44px;
    border-radius: 10px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

.contact-modern-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-modern-info-card {
    border: 1px solid #dce5f3;
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 12px 24px rgba(20, 35, 74, .06);
}

.contact-modern-info-card i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(140deg, #edf2ff 0%, #dffcf9 100%);
    color: #21306d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}

.contact-modern-info-card h3 {
    color: #1a2a63;
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.contact-modern-info-card p {
    color: #52637f;
    font-size: .9rem;
    line-height: 1.68;
}

.blog-insight-row {
    margin: 2px 0 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.blog-insight-card {
    border: 1px solid #dce4f3;
    border-radius: 16px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 12px 24px rgba(27, 42, 82, .05);
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
}

.blog-insight-card i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eef2ff;
    color: #304289;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .92rem;
}

.blog-insight-card h3 {
    color: #19285d;
    font-size: .94rem;
    margin-bottom: 4px;
}

.blog-insight-card p {
    color: #5a6a84;
    font-size: .84rem;
    line-height: 1.62;
}

.blog-modern-grid-rich .blog-modern-card {
    min-height: 100%;
}

.blog-modern-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-modern-meta span {
    background: #edf2ff;
    border: 1px solid #d8e2f7;
    color: #314486;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: .71rem;
    font-weight: 700;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}

.detail-article-rich {
    border-radius: 22px;
    padding: 26px;
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.detail-meta-chip {
    border: 1px solid #d8e2f6;
    background: #f5f8ff;
    color: #33498a;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 700;
}

.detail-highlight-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.detail-highlight-card {
    border: 1px solid #dce5f3;
    border-radius: 14px;
    background: #f9fbff;
    padding: 12px;
    display: grid;
    gap: 5px;
}

.detail-highlight-card strong {
    color: #1f3270;
    font-size: .92rem;
}

.detail-highlight-card p {
    color: #5a6b86;
    font-size: .85rem;
    line-height: 1.6;
}

.detail-side-stack {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 10px;
}

.detail-side-card {
    border: 1px solid #dce5f3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(20, 35, 74, .05);
    padding: 14px;
    display: grid;
    gap: 10px;
}

.detail-side-card h3 {
    color: #1a2c69;
    font-size: .96rem;
}

.detail-checklist {
    list-style: none;
    display: grid;
    gap: 8px;
}

.detail-checklist li {
    color: #4e5f7d;
    font-size: .86rem;
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}

.detail-checklist li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(130deg, #2a3fb0 0%, #10bbb7 100%);
    position: absolute;
    left: 0;
    top: 7px;
}

.detail-stat-list {
    display: grid;
    gap: 8px;
}

.detail-stat-item {
    border: 1px solid #dfe7f5;
    border-radius: 12px;
    background: #f8fbff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
}

.detail-stat-item span {
    color: #60708a;
    font-size: .76rem;
}

.detail-stat-item strong {
    color: #1d2e6a;
    font-size: .86rem;
}

.detail-action-links {
    display: grid;
    gap: 8px;
}

.detail-action-links a {
    min-height: 38px;
    border: 1px solid #dce5f3;
    border-radius: 10px;
    background: #f8fbff;
    color: #25366d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 700;
    padding: 0 10px;
    transition: .2s ease;
}

.detail-action-links a:hover {
    border-color: #b6c8ea;
    transform: translateY(-1px);
}

.detail-trial-card {
    background: linear-gradient(145deg, #3f33b2 0%, #2833a7 52%, #1f2f8d 100%);
    border-color: transparent;
    padding: 22px 22px 24px;
    overflow: hidden;
    gap: 0;
    position: relative;
    min-height: 240px;
}

.detail-trial-copy {
    display: grid;
    gap: 12px;
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.detail-trial-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
}

.detail-trial-copy p {
    color: rgba(255, 255, 255, .92);
    font-size: .95rem;
    line-height: 1.45;
    margin: 0;
}

.detail-trial-copy a {
    min-height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1ec7c3 0%, #1ab7d1 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .98rem;
    font-weight: 700;
    padding: 0 16px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    width: 172px;
}

.detail-trial-copy a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(13, 31, 96, .22);
}

.detail-trial-visual {
    position: absolute;
    right: -2px;
    bottom: -1px;
    width: 48%;
    max-width: 165px;
    z-index: 1;
}

.detail-trial-visual img {
    width: 100%;
    display: block;
    position: absolute;
    bottom: -1px;
    right: -35px;
}

.detail-side-video-card {
    gap: 12px;
}

.detail-side-video-card .yt-card-sidebar {
    border-radius: 14px;
    box-shadow: none;
}

.detail-side-video-card .yt-card-sidebar .yt-thumb-wrap {
    aspect-ratio: 16 / 10;
}

.detail-side-video-card .yt-card-sidebar .yt-card-info {
    padding: 14px;
}

.detail-side-video-card .yt-card-sidebar .yt-card-name {
    font-size: .92rem;
}

.detail-side-video-card .yt-card-sidebar .yt-card-desc {
    font-size: .82rem;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .detail-trial-card {
        min-height: 220px;
    }

    .detail-trial-copy {
        max-width: 58%;
    }
}

@media (max-width: 640px) {
    .detail-trial-card {
        min-height: 210px;
    }

    .detail-trial-copy {
        max-width: 56%;
    }

    .detail-trial-copy a {
        width: 100%;
    }

    .detail-trial-visual {
        width: 45%;
        max-width: 150px;
    }
}

@media (max-width: 1180px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-side-stack {
        position: static;
        top: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-side-stack .btn-primary {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 1024px) {

    .contact-modern-hero,
    .contact-modern-layout {
        grid-template-columns: 1fr;
    }

    .contact-modern-points {
        grid-template-columns: 1fr;
    }

    .contact-modern-info-grid {
        grid-template-columns: 1fr;
    }

    .blog-insight-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-refund-badge {
        right: 14px;
        width: 136px;
        min-height: 82px;
        font-size: .63rem;
    }

    .contact-modern-copy,
    .contact-modern-side,
    .contact-modern-form-card {
        border-radius: 18px;
        padding: 18px;
    }

    .contact-modern-form-grid {
        grid-template-columns: 1fr;
    }

    .detail-article-rich {
        padding: 18px;
        border-radius: 16px;
    }

    .detail-highlight-grid,
    .detail-side-stack {
        grid-template-columns: 1fr;
    }
}

.reviews-shell .reviews-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
}

.reviews-hero-main {
    display: grid;
    gap: 8px;
    max-width: 780px;
}

.reviews-shell .reviews-hero-stats {
    min-width: 0;
    width: 100%;
    max-width: 760px;
}

.feature-shell .feature-hero {
    justify-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 22px;
}

.feature-hero-main {
    display: grid;
    gap: 10px;
    max-width: 860px;
}

.campaign-shell .campaign-modern-card {
    grid-template-columns: 1fr;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(20, 35, 74, .07);
}



.campaign-chip {
    width: fit-content;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid #d7e3f7;
    background: #eef2ff;
    color: #2f3f7e;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .22px;
    text-transform: uppercase;
}

.pricing-shell .pricing-toggle {
    margin-top: 6px;
    margin-bottom: 20px;
}

.pricing-page-faq {
    padding-top: 20px;
    padding-bottom: 66px;
    background: linear-gradient(180deg, #f9fbff 0%, #fff 100%);
}

.pricing-page-faq .section-title {
    margin-bottom: 16px;
}

.pricing-shell-v2 {
    background:
        radial-gradient(1100px 420px at 50% -180px, rgba(52, 92, 235, .14) 0%, rgba(52, 92, 235, 0) 70%),
        linear-gradient(180deg, #f5f7fc 0%, #ffffff 44%, #f6f8ff 100%);
}

.pricing-shell-v2 .container {
    display: grid;
    gap: 20px;
}

.pricing-v2-hero {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 9px;
}

.pricing-v2-hero h1 {
    color: #141f52;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    letter-spacing: -.45px;
    font-family: "Zalando Sans", sans-serif;
    margin-bottom: 8px;
}

.pricing-v2-hero p {
    color: #54627f;
    font-size: 1.05rem;
    line-height: 1.66;
    max-width: 760px;
    margin: 0 auto;
}

.pricing-v2-trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.pricing-trust-badge {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--fp-text);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.pricing-trust-badge i {
    color: #10b981;
    font-size: 0.95rem;
}

.pricing-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
}

.pricing-shell-v2 .pricing-toggle {
    margin: 0;
    padding: 5px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid #d9e1f2;
    border-radius: 999px;
    box-shadow: 0 16px 35px rgba(25, 44, 97, .12);
    backdrop-filter: blur(7px);
}

.pricing-shell-v2 .pricing-toggle-btn {
    min-width: 148px;
    height: 44px;
    font-family: "Zalando Sans", sans-serif;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .2px;
    color: #30406d;
}

.pricing-shell-v2 .pricing-toggle-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--fp-brand) 0%, var(--fp-brand-light) 100%);
    box-shadow: 0 10px 22px rgba(52, 42, 169, .28);
}

.pricing-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-v2-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid #d8e1f2;
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 34, 68, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pricing-v2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(17, 34, 68, .14);
    border-color: #c7d4ed;
}

.pricing-v2-card.is-highlight {
    border-color: rgba(55, 83, 197, .52);
    box-shadow: 0 24px 46px rgba(55, 83, 197, .18);
}

.pricing-v2-card .pricing-v2-head {
    position: relative;
    color: #fff;
    padding: 16px 18px 14px;
    background: linear-gradient(140deg, var(--price-tone-start) 0%, var(--price-tone-end) 100%);
}


.pricing-v2-card .pricing-v2-kicker {
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .45px;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: .94;
}

.pricing-v2-card .pricing-v2-head h3 {
    font-size: 1.03rem;
    font-weight: 700;
    letter-spacing: -.12px;
    line-height: 1.3;
    color: #fff;
}

.pricing-v2-gift-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50px;
    padding: 5px 12px 5px 9px;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Popular badge — EN ÇOK TERCİH EDİLEN */
.pricing-v2-popular-note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    background: rgba(255, 210, 80, .22);
    border: 1px solid rgba(255, 210, 80, .6);
    border-radius: 50px;
    padding: 4px 12px 4px 8px;
    font-size: .73rem;
    font-weight: 800;
    color: #ffe066;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pricing-v2-price {
    padding: 16px 18px 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pricing-v2-price strong {
    color: #1f2f87;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.35px;
    font-family: "Zalando Sans", sans-serif;
}

.pricing-v2-price span {
    color: #51607f;
    font-size: .95rem;
    font-weight: 600;
}

.pricing-v2-features {
    list-style: none;
    margin: 0;
    padding: 8px 18px 0;
    display: grid;
    gap: 9px;
}

.pricing-v2-features li {
    position: relative;
    padding-left: 18px;
    color: #20304a;
    font-size: .89rem;
    line-height: 1.42;
    font-weight: 500;
}

.pricing-v2-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: #2f48be;
    font-size: .82rem;
    font-weight: 800;
}

.pricing-v2-features li.is-negative::before {
    content: "✕";
    color: #a2acbe;
}

.pricing-v2-features.with-svg-icons li {
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-v2-features.with-svg-icons li::before {
    content: none;
}

.pricing-v2-features .fp-inline-icon {
    width: 15px;
    height: 15px;
    color: #2f48be;
    flex: 0 0 15px;
    margin-top: 2px;
}

.pricing-v2-features .fp-inline-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.pricing-v2-cta {
    margin: 16px 18px 18px;
    margin-top: auto;
    min-height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .15px;
    transition: all .2s ease;
}

.pricing-v2-cta-primary {
    background: linear-gradient(135deg, var(--fp-brand) 0%, var(--fp-brand-light) 100%);
    color: #fff;
}

.pricing-v2-cta-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 12px 24px rgba(50, 43, 170, .27);
}

.pricing-v2-cta-accent {
    background: linear-gradient(135deg, #0f9ca0 0%, var(--fp-accent) 100%);
    color: #fff;
}

.pricing-v2-cta-accent:hover {
    filter: brightness(1.05);
    box-shadow: 0 12px 24px rgba(15, 186, 186, .24);
}

.pricing-v2-card.tone-purple {
    --price-tone-start: #3e33b7;
    --price-tone-end: #4f46e5;
}

.pricing-v2-card.tone-teal {
    --price-tone-start: #1596a4;
    --price-tone-end: #17bec2;
}

.pricing-v2-card.tone-blue {
    --price-tone-start: #1e54d9;
    --price-tone-end: #2583ff;
}

.pricing-v2-card.tone-green {
    --price-tone-start: #20a270;
    --price-tone-end: #4ac98f;
}

.pricing-shell-v2+.pricing-page-faq {
    padding-top: 26px;
}

@media (max-width: 1220px) {
    .pricing-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-shell-v2 .pricing-toggle-btn {
        min-width: 126px;
    }

    .pricing-v2-grid {
        grid-template-columns: 1fr;
    }

    .pricing-v2-card.has-gift-badge .pricing-v2-head {
        padding-right: 118px;
    }

    .pricing-v2-badge {
        width: 96px;
        min-height: 70px;
        font-size: .57rem;
    }
}

.pricing-shell-v2 {
    background:
        linear-gradient(180deg, #f4f7fc 0%, #ffffff 48%, #f4f7ff 100%);
}

.pricing-shell-v2 .container {
    gap: 26px;
}

.pricing-shell-v2 .pricing-toggle {
    padding: 6px;
    border: 1px solid #d2dbec;
    background: #eef2f9;
    box-shadow: none;
}

.pricing-shell-v2 .pricing-toggle-btn {
    min-width: 154px;
    height: 42px;
    border-radius: 999px;
    color: #51607c;
    font-weight: 800;
}

.pricing-shell-v2 .pricing-toggle-btn.active {
    background: #1e2d72;
    color: #fff;
    box-shadow: 0 8px 18px rgba(30, 45, 114, .28);
}

.pricing-v2-grid {
    gap: 22px;
    align-items: start;
}

.pricing-shell-v2 .pricing-v2-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid #d4ddee;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 16px 32px rgba(18, 34, 72, .08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.pricing-shell-v2 .pricing-v2-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: var(--plan-color);
}

.pricing-shell-v2 .pricing-v2-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--plan-color) 45%, #d4ddee);
    box-shadow: 0 24px 44px rgba(18, 34, 72, .14);
}

.pricing-shell-v2 .pricing-v2-card.is-highlight {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--plan-color) 60%, #c8d3e9);
    box-shadow: 0 28px 48px rgba(18, 34, 72, .16);
}

.pricing-shell-v2 .pricing-v2-card.is-highlight::after {
    content: "EN POPÜLER";
    position: absolute;
    top: 14px;
    left: 18px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--plan-color) 14%, #ffffff);
    color: var(--plan-color);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .34px;
    display: inline-flex;
    align-items: center;
    z-index: 3;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-head {
    background: transparent;
    color: #14214f;
    padding: 44px 20px 16px;
    border-bottom: 1px solid #e0e7f4;
    min-height: 124px;
}

.pricing-shell-v2 .pricing-v2-card.has-gift-badge .pricing-v2-head {
    padding-right: 128px;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-kicker {
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .67rem;
    letter-spacing: .32px;
    background: color-mix(in srgb, var(--plan-color) 14%, #ffffff);
    color: var(--plan-color);
    font-weight: 800;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-head h3 {
    color: #1b2a5f;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -.16px;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-head p {
    margin-top: 6px;
    color: #60708e;
    font-size: .8rem;
    line-height: 1.45;
}

.pricing-shell-v2 .pricing-v2-badge {
    right: 16px;
    top: 14px;
    width: 98px;
    min-height: 62px;
    border-radius: 12px;
    border: 0;
    background: var(--plan-color);
    color: #fff;
    box-shadow: 0 14px 24px color-mix(in srgb, var(--plan-color) 32%, transparent);
    font-size: .56rem;
    letter-spacing: .28px;
    padding: 8px 8px 9px;
}

.pricing-shell-v2 .pricing-v2-price {
    padding: 16px 20px 10px;
    gap: 8px;
}

.pricing-shell-v2 .pricing-v2-price strong {
    font-size: 2.14rem;
    color: #17265f;
    letter-spacing: -.42px;
}

.pricing-shell-v2 .pricing-v2-price span {
    color: #60708a;
    font-size: .88rem;
    font-weight: 700;
}

.pricing-shell-v2 .pricing-v2-features {
    padding: 8px 20px 0;
    gap: 0;
}

.pricing-shell-v2 .pricing-v2-features li {
    padding: 10px 0 10px 18px;
    border-bottom: 1px dashed #e7edf8;
    font-size: .86rem;
    color: #23324c;
    line-height: 1.4;
}

.pricing-shell-v2 .pricing-v2-features li:last-child {
    border-bottom: 0;
}

.pricing-shell-v2 .pricing-v2-features li::before {
    content: "✓";
    left: 0;
    top: 10px;
    color: var(--plan-color);
    font-size: .72rem;
    font-weight: 900;
}

.pricing-shell-v2 .pricing-v2-features li.is-negative {
    color: #8894a9;
}

.pricing-shell-v2 .pricing-v2-features li.is-negative::before {
    content: "−";
    color: #98a3b8;
    font-size: .92rem;
    font-weight: 700;
    top: 8px;
}

.pricing-shell-v2 .pricing-v2-cta {
    margin: 14px 20px 20px;
    min-height: 46px;
    border-radius: 12px;
    font-size: .9rem;
    letter-spacing: .15px;
    font-weight: 800;
}

.pricing-shell-v2 .pricing-v2-cta-primary {
    background: #1f2f87;
    color: #fff;
}

.pricing-shell-v2 .pricing-v2-cta-primary:hover {
    background: #2438a0;
    box-shadow: 0 12px 24px rgba(31, 47, 135, .24);
}

.pricing-shell-v2 .pricing-v2-cta-accent {
    background: #0fabae;
    color: #fff;
}

.pricing-shell-v2 .pricing-v2-cta-accent:hover {
    background: #10b8bc;
    box-shadow: 0 12px 24px rgba(15, 171, 174, .24);
}

.pricing-shell-v2 .pricing-v2-card.tone-purple {
    --plan-color: #4c45d9;
}

.pricing-shell-v2 .pricing-v2-card.tone-teal {
    --plan-color: #16a9b3;
}

.pricing-shell-v2 .pricing-v2-card.tone-blue {
    --plan-color: #2a67f2;
}

.pricing-shell-v2 .pricing-v2-card.tone-green {
    --plan-color: #33b979;
}

.pricing-hero-metrics {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pricing-hero-metric {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #d5dff1;
    background: #fff;
    color: #1e2d72;
    font-size: .82rem;
    font-weight: 700;
}

.pricing-hero-metric svg {
    color: #1f2f87;
    flex-shrink: 0;
}

.pricing-guide {
    border: 1px solid #dce5f4;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    padding: 20px;
    display: grid;
    gap: 14px;
}

.pricing-guide h2 {
    color: #1d2e75;
    font-size: 1.32rem;
    text-align: center;
}

.pricing-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pricing-guide-card {
    border: 1px solid #dce5f4;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
    display: grid;
    gap: 6px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pricing-guide-card:hover {
    transform: translateY(-2px);
    border-color: #c6d3ee;
    box-shadow: 0 10px 22px rgba(24, 41, 84, .1);
}

.pricing-guide-card h3 {
    color: #1b2b66;
    font-size: .95rem;
    line-height: 1.3;
}

.pricing-guide-card p {
    color: #51627f;
    font-size: .86rem;
    line-height: 1.45;
}

.pricing-kontor-explainer {
    grid-column: 1 / -1;
}

.pricing-shell-v2 .pricing-kontor-explainer .pricing-v2-head {
    min-height: auto;
    padding-top: 22px;
}

.pricing-shell-v2 .pricing-kontor-explainer::before {
    background: #16a9b3;
}

.pricing-kontor-meta {
    margin: 14px 20px 2px;
    border: 1px solid #dce5f4;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-kontor-meta>div {
    background: #f8faff;
    padding: 10px 9px;
    border-right: 1px solid #dce5f4;
    display: grid;
    gap: 4px;
}

.pricing-kontor-meta>div:last-child {
    border-right: 0;
}

.pricing-kontor-meta span {
    font-size: .72rem;
    color: #627290;
    font-weight: 700;
}

.pricing-kontor-meta strong {
    color: #1a2a67;
    font-size: .96rem;
    line-height: 1.2;
}

.pricing-compare {
    margin-top: 2px;
    border: 1px solid #dce5f4;
    border-radius: 20px;
    padding: 20px;
    background: #fff;
    display: grid;
    gap: 12px;
}

.pricing-compare h2 {
    color: #1d2e75;
    font-size: 1.28rem;
}

.pricing-compare-table-wrap {
    overflow-x: auto;
}

.pricing-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.pricing-compare-table th,
.pricing-compare-table td {
    border: 1px solid #dce5f4;
    padding: 10px 12px;
    text-align: center;
    font-size: .88rem;
    color: #21304f;
}

.pricing-compare-table thead th {
    background: #f6f9ff;
    color: #1b2b66;
    font-weight: 800;
}

.pricing-compare-table tbody th {
    text-align: left;
    font-weight: 700;
    background: #fbfdff;
}

.pricing-trust {
    display: grid;
    gap: 12px;
}

.pricing-trust h2 {
    color: #1d2e75;
    font-size: 1.28rem;
}

.pricing-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.pricing-trust-item {
    border: 1px solid #dce5f4;
    border-radius: 14px;
    background: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e2d72;
    font-size: .85rem;
    font-weight: 700;
}

.pricing-trust-item svg {
    color: #1f2f87;
    flex-shrink: 0;
}

.pricing-seo-content {
    padding: 20px 0 70px;
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.pricing-seo-content .container {
    display: grid;
    gap: 10px;
    max-width: 980px;
}

.pricing-seo-content h2 {
    color: #1b2f80;
    font-size: clamp(1.36rem, 2.1vw, 1.75rem);
}

.pricing-seo-content p {
    color: #51627e;
    font-size: .96rem;
    line-height: 1.72;
}

.feature-shell .feature-hero {
    width: 100%;
    justify-items: center;
    text-align: center;
}

.feature-shell .feature-hero-main {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    justify-items: center;
}

.feature-shell .feature-hero-main h1,
.feature-shell .feature-hero-main p {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-shell .feature-hero-main p {
    max-width: 780px;
}

.pricing-page-faq .section-title {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1220px) {
    .pricing-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-guide {
        padding: 16px;
    }

    .pricing-guide-grid {
        grid-template-columns: 1fr;
    }

    .pricing-hero-metrics {
        justify-content: flex-start;
    }

    .pricing-kontor-meta {
        grid-template-columns: 1fr;
    }

    .pricing-kontor-meta>div {
        border-right: 0;
        border-bottom: 1px solid #dce5f4;
    }

    .pricing-kontor-meta>div:last-child {
        border-bottom: 0;
    }

    .pricing-trust-grid {
        grid-template-columns: 1fr;
    }

    .pricing-shell-v2 .pricing-toggle-btn {
        min-width: 128px;
        height: 40px;
    }

    .pricing-v2-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-shell-v2 .pricing-v2-card {
        border-radius: 18px;
    }

    .pricing-shell-v2 .pricing-v2-card .pricing-v2-head {
        min-height: auto;
        padding: 42px 16px 14px;
    }

    .pricing-shell-v2 .pricing-v2-card.has-gift-badge .pricing-v2-head {
        padding-right: 110px;
    }

    .pricing-shell-v2 .pricing-v2-badge {
        width: 88px;
        min-height: 56px;
        right: 12px;
        top: 12px;
    }

    .pricing-shell-v2 .pricing-v2-price {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-shell-v2 .pricing-v2-features {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-shell-v2 .pricing-v2-cta {
        margin-left: 16px;
        margin-right: 16px;
    }
}

.contact-modern-shell {
    background: #f5f6fe;
}

.contact-write-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .84fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 20px;
}

.contact-write-left {
    border: 1px solid #dce5f3;
    border-radius: 24px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 16px 34px rgba(20, 35, 74, .07);
    display: grid;
    gap: 10px;
}

.contact-write-left h1 {
    color: #1b2f80;
    font-size: 2rem;
    line-height: 1.12;
}

.contact-write-left p {
    color: #51627e;
    font-size: 1.25rem;
    line-height: 1.64;
    margin-bottom: 4px;
}

.contact-write-form {
    border: 1px solid #e4eaf6;
    border-radius: 16px;
    background: #fdfdff;
    padding: 14px;
    display: grid;
    gap: 8px;
}

.contact-write-form label {
    color: #293a71;
    font-size: 1rem;
    font-weight: 600;
}

.contact-write-form input,
.contact-write-form textarea {
    width: 100%;
    border: 1px solid #dbe4f2;
    border-radius: 10px;
    background: #f2f5fb;
    color: #152554;
    padding: 11px 12px;
    font: inherit;
    font-size: .95rem;
}

.contact-write-form textarea {
    min-height: 118px;
    resize: vertical;
}

.contact-write-form input:focus,
.contact-write-form textarea:focus {
    outline: none;
    border-color: #b8c9ea;
    background: #fff;
}

.contact-write-submit {
    margin-top: 2px;
    display: flex;
    justify-content: flex-end;
}

.contact-write-submit .btn-primary {
    min-width: 140px;
}

.contact-write-visual {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid #d8e3f2;
    border-radius: 24px;
    background: linear-gradient(160deg, #152865 0%, #2a3c8b 56%, #2544a8 100%);
    box-shadow: 0 16px 32px rgba(22, 36, 82, .2);
    padding: 18px;
    display: grid;
}

.contact-visual-surface {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(228, 237, 255, .28);
    border-radius: 18px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(5px);
    padding: 18px;
    align-self: end;
}

.contact-visual-chip {
    display: inline-flex;
    height: 28px;
    align-items: center;
    border-radius: 999px;
    padding: 0 11px;
    background: rgba(139, 244, 234, .22);
    color: #a6fff5;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .22px;
}

.contact-visual-surface h3 {
    margin-top: 9px;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.3;
}

.contact-visual-surface ul {
    margin-top: 10px;
    list-style: none;
    display: grid;
    gap: 8px;
}

.contact-visual-surface li {
    color: #dce7ff;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.45;
}

.contact-visual-surface li i {
    color: #7bf2e3;
    font-size: .75rem;
}

.contact-visual-logo {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 500px;
    object-fit: contain;
    border-radius: 22px;
    padding: 14px;
    z-index: 3;
    pointer-events: none;
    user-select: none;
}

.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.contact-info-box {
    border: 1px solid #dce5f3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(20, 35, 74, .06);
    padding: 20px 16px;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 7px;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(145deg, #eef1ff 0%, #dffcf9 100%);
    color: #2d3d87;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
}

.contact-info-box h3 {
    color: #1c2d68;
    font-size: 1.2rem;
}

.contact-info-box p {
    color: #4f5f7c;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 340px;
}

@media (max-width: 1100px) {
    .contact-write-top {
        grid-template-columns: 1fr;
    }

    .contact-write-visual {
        min-height: 300px;
    }

    .contact-visual-logo {
        left: 50%;
        top: 50%;
        width: min(62vw, 340px);
        max-width: 340px;
        height: auto;
        padding: 0;
        border-radius: 0;
        z-index: 1;
        opacity: .13;
        filter: grayscale(1) brightness(1.5);
        transform: translate(-50%, -50%);
    }

    .contact-info-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .contact-write-left,
    .contact-write-visual {
        border-radius: 18px;
        padding: 16px;
    }

    .contact-write-form {
        padding: 12px;
        border-radius: 14px;
    }

    .contact-write-visual {
        min-height: 280px;
    }

    .contact-visual-logo {
        left: 50%;
        top: 52%;
        width: min(76vw, 310px);
        max-width: 310px;
        height: auto;
        padding: 0;
        border-radius: 0;
        z-index: 1;
        opacity: .14;
        filter: grayscale(1) brightness(1.55);
        transform: translate(-50%, -50%);
    }
}

.pricing-shell-v2 {
    background: #f6f8fc;
}

.pricing-shell-v2 .container {
    gap: 28px;
}

.pricing-shell-v2 .pricing-v2-hero {
    max-width: 760px;
    gap: 10px;
}

.pricing-shell-v2 .pricing-v2-hero h1 {
    color: #0f172a;
    font-size: clamp(2rem, 3vw, 3.1rem);
    letter-spacing: -.35px;
}

.pricing-shell-v2 .pricing-v2-hero p {
    color: #4b5563;
    max-width: 620px;
}

.pricing-shell-v2 .pricing-toggle {
    background: #eceff4;
    border: 1px solid #d9dfeb;
    box-shadow: none;
}

.pricing-shell-v2 .pricing-toggle-btn {
    color: #64748b;
    min-width: 126px;
}

.pricing-shell-v2 .pricing-toggle-btn.active {
    background: var(--fp-brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(54, 45, 174, .22);
}

.pricing-shell-v2 .pricing-v2-grid {
    gap: 16px;
    align-items: stretch;
}

.pricing-shell-v2 .pricing-v2-card {
    border: 1px solid #dce2ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    transform: none;
}

.pricing-shell-v2 .pricing-v2-card::before {
    display: none;
}

.pricing-shell-v2 .pricing-v2-card:hover {
    transform: translateY(-2px);
    border-color: #cfd7e7;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .09);
}

.pricing-shell-v2 .pricing-v2-card.is-highlight {
    transform: none;
    border-color: rgba(54, 45, 174, .45);
    box-shadow: 0 0 0 2px rgba(54, 45, 174, .12), 0 16px 30px rgba(15, 23, 42, .1);
}

.pricing-shell-v2 .pricing-v2-card.is-highlight::after {
    content: none;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-head {
    background: transparent;
    border-bottom: 0;
    padding: 18px 18px 6px;
    min-height: auto;
}

.pricing-shell-v2 .pricing-v2-card.has-gift-badge .pricing-v2-head {
    padding-right: 104px;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-kicker {
    background: transparent;
    color: var(--fp-brand);
    padding: 0;
    margin-bottom: 8px;
    font-size: .75rem;
    letter-spacing: .38px;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-head h3 {
    color: #111827;
    font-size: 1.02rem;
    line-height: 1.35;
}

.pricing-shell-v2 .pricing-v2-card .pricing-v2-head p {
    color: #6b7280;
    font-size: .79rem;
}

.pricing-shell-v2 .pricing-v2-badge {
    top: 14px;
    right: 14px;
    width: 84px;
    min-height: 56px;
    border-radius: 10px;
    border: 1px solid rgba(54, 45, 174, .2);
    background: rgba(54, 45, 174, .07);
    color: var(--fp-brand);
    box-shadow: none;
    font-size: .54rem;
    letter-spacing: .2px;
}

.pricing-shell-v2 .pricing-v2-price {
    padding: 4px 18px 10px;
}

.pricing-shell-v2 .pricing-v2-price strong {
    color: #111827;
    font-size: 2rem;
    letter-spacing: -.3px;
}

.pricing-shell-v2 .pricing-v2-price span {
    color: #64748b;
    font-size: .86rem;
    font-weight: 600;
}

.pricing-shell-v2 .pricing-v2-features {
    padding: 8px 18px 0;
    gap: 2px;
}

.pricing-shell-v2 .pricing-v2-features li {
    border-bottom: 0;
    padding: 6px 0 6px 22px;
    color: #374151;
    font-size: .88rem;
}

.pricing-shell-v2 .pricing-v2-features li::before {
    content: "✓";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 7px;
    font-size: .62rem;
    font-weight: 900;
    color: var(--fp-brand);
    background: rgba(54, 45, 174, .1);
}

.pricing-shell-v2 .pricing-v2-features li.is-negative {
    color: #8b95a8;
}

.pricing-shell-v2 .pricing-v2-features li.is-negative::before {
    content: "−";
    color: #94a3b8;
    background: #eef2f7;
    font-size: .8rem;
    top: 6px;
}

.pricing-shell-v2 .pricing-v2-cta {
    margin: 14px 18px 18px;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(54, 45, 174, .34);
    background: #fff;
    color: var(--fp-brand);
    font-size: .9rem;
    font-weight: 700;
}

.pricing-shell-v2 .pricing-v2-cta:hover {
    background: rgba(54, 45, 174, .06);
    box-shadow: none;
}

.pricing-shell-v2 .pricing-v2-card.is-highlight .pricing-v2-cta {
    background: var(--fp-brand);
    color: #fff;
    border-color: var(--fp-brand);
}

.pricing-shell-v2 .pricing-v2-card.is-highlight .pricing-v2-cta:hover {
    filter: brightness(1.04);
    box-shadow: 0 10px 20px rgba(54, 45, 174, .24);
}

.pricing-shell-v2 .pricing-v2-card.tone-purple,
.pricing-shell-v2 .pricing-v2-card.tone-teal,
.pricing-shell-v2 .pricing-v2-card.tone-blue,
.pricing-shell-v2 .pricing-v2-card.tone-green {
    --plan-color: var(--fp-brand);
}

@media (min-width: 1200px) {
    .pricing-shell-v2 .pricing-v2-grid[data-active-plan="lisans"] {
        grid-template-columns: repeat(3, minmax(260px, 320px));
        justify-content: center;
    }

    .pricing-shell-v2 .pricing-v2-grid[data-active-plan="kontor"] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: stretch;
    }
}

@media (max-width: 768px) {
    .pricing-shell-v2 .pricing-v2-card.has-gift-badge .pricing-v2-head {
        padding-right: 96px;
    }

    .pricing-shell-v2 .pricing-v2-badge {
        width: 76px;
        min-height: 50px;
    }
}

.pricing-shell-v3 {
    background: #f3f5f9;
}

.pricing-shell-v3 .container {
    gap: 24px;
}

.pricing-shell-v3 .pricing-v2-hero {
    max-width: 780px;
    text-align: center;
}

.pricing-shell-v3 .pricing-v2-hero .section-label {
    display: none;
}

.pricing-shell-v3 .pricing-v2-hero h1 {
    color: #111827;
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    line-height: 1.18;
    letter-spacing: -.2px;
    font-family: "Zalando Sans", sans-serif;
}

.pricing-shell-v3 .pricing-v2-hero p {
    color: #5f6c7f;
    max-width: 640px;
    font-size: 1.02rem;
    line-height: 1.65;
}

.pricing-shell-v3 .pricing-toggle {
    padding: 4px;
    border-radius: 10px;
    background: #e9edf4;
    border: 1px solid #d8deea;
    box-shadow: none;
}

.pricing-shell-v3 .pricing-toggle-btn {
    min-width: 112px;
    height: 36px;
    border-radius: 8px;
    font-weight: 700;
    color: #6b7280;
}

.pricing-shell-v3 .pricing-toggle-btn.active {
    background: #fff;
    color: var(--fp-brand);
    box-shadow: 0 2px 10px rgba(15, 23, 42, .1);
}

.pricing-shell-v3 .pricing-v2-grid {
    gap: 20px;
    align-items: stretch;
}

.pricing-shell-v3 .pricing-v2-card {
    border: 1px solid #d8dfeb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, .04);
    transform: none;
    overflow: hidden;
}

.pricing-shell-v3 .pricing-v2-card::before {
    display: none;
}

.pricing-shell-v3 .pricing-v2-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, .08);
}

.pricing-shell-v3 .pricing-v2-card .pricing-v2-head {
    padding: 24px 26px 12px;
    background: transparent;
    border-bottom: 0;
    min-height: 118px;
}

.pricing-shell-v3 .pricing-v2-card.has-gift-badge .pricing-v2-head {
    padding-right: 24px;
}

.pricing-shell-v3 .pricing-v2-card .pricing-v2-kicker {
    margin-bottom: 7px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #172554;
    letter-spacing: .15px;
    font-size: 1.32rem;
    font-weight: 700;
    line-height: 1.25;
}

.pricing-shell-v3 .pricing-v2-card .pricing-v2-head h3 {
    font-size: .95rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.52;
}

.pricing-shell-v3 .pricing-v2-card .pricing-v2-head p {
    color: #6b7280;
    font-size: .88rem;
}

.pricing-shell-v3 .pricing-v2-gift-note {
    margin-top: 3px;
    color: #5b6b84;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.45;
}

.pricing-shell-v3 .pricing-v2-price {
    padding: 14px 26px 12px;
    gap: 6px;
}

.pricing-shell-v3 .pricing-v2-price strong {
    color: #111827;
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -.35px;
    line-height: 1;
}

.pricing-shell-v3 .pricing-v2-price span {
    color: #64748b;
    font-size: .98rem;
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 6px;
}

.pricing-shell-v3 .pricing-v2-features {
    padding: 8px 26px 0;
    gap: 4px;
}

.pricing-shell-v3 .pricing-v2-features li {
    padding: 8px 0 8px 24px;
    border-bottom: 0;
    color: #4b5563;
    font-size: .94rem;
    line-height: 1.52;
    font-weight: 500;
}

.pricing-shell-v3 .pricing-v2-features li::before {
    content: "✓";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: 0;
    top: 10px;
    font-size: .65rem;
    font-weight: 900;
    color: #fff;
    background: var(--fp-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-shell-v3 .pricing-v2-features li.is-negative {
    color: #9aa5b6;
}

.pricing-shell-v3 .pricing-v2-features li.is-negative::before {
    content: "−";
    color: #94a3b8;
    background: #e8edf5;
    font-size: .8rem;
    top: 9px;
}

.pricing-shell-v3 .pricing-v2-cta {
    margin: 16px 26px 24px;
    min-height: 46px;
    border-radius: 10px;
    border: 2px solid var(--fp-brand);
    background: #fff;
    color: var(--fp-brand);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .1px;
}

.pricing-shell-v3 .pricing-v2-cta:hover {
    background: rgba(54, 45, 174, .05);
    box-shadow: none;
}

.pricing-shell-v3 .pricing-v2-card.is-highlight {
    border-color: var(--fp-brand);
    box-shadow: 0 0 0 1px rgba(54, 45, 174, .35), 0 16px 30px rgba(54, 45, 174, .16);
    transform: translateY(-3px);
}

.pricing-shell-v3 .pricing-v2-card.is-highlight .pricing-v2-head {
    background: var(--fp-brand);
    padding-top: 28px;
    padding-bottom: 16px;
}

.pricing-shell-v3 .pricing-v2-card.is-highlight .pricing-v2-kicker,
.pricing-shell-v3 .pricing-v2-card.is-highlight .pricing-v2-head h3 {
    color: #fff;
}

.pricing-shell-v3 .pricing-v2-card.is-highlight .pricing-v2-gift-note {
    color: rgba(255, 255, 255, .92);
}

.pricing-shell-v3 .pricing-v2-card.is-highlight .pricing-v2-cta {
    border-color: var(--fp-accent);
    background: var(--fp-accent);
    color: #fff;
}

.pricing-shell-v3 .pricing-v2-card.is-highlight .pricing-v2-cta:hover {
    filter: brightness(1.03);
    box-shadow: 0 10px 22px rgba(15, 186, 186, .24);
}

.pricing-shell-v3 .pricing-v2-badge {
    top: 0;
    right: 0;
    min-height: 28px;
    width: auto;
    border-radius: 0 0 0 10px;
    border: 0;
    background: var(--fp-accent);
    color: #fff;
    font-size: 0;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 0 14px;
    box-shadow: none;
    display: none;
    align-items: center;
    justify-content: center;
}

.pricing-shell-v3 .pricing-v2-badge::before {
    content: "POPÜLER";
    font-size: .72rem;
}

.pricing-shell-v3 .pricing-v2-card.is-highlight .pricing-v2-badge {
    display: inline-flex;
}

.pricing-shell-v3 .pricing-v2-card.tone-purple,
.pricing-shell-v3 .pricing-v2-card.tone-teal,
.pricing-shell-v3 .pricing-v2-card.tone-blue,
.pricing-shell-v3 .pricing-v2-card.tone-green {
    --plan-color: var(--fp-brand);
}

@media (min-width: 1200px) {
    .pricing-shell-v3 .pricing-v2-grid[data-active-plan="lisans"] {
        grid-template-columns: repeat(3, minmax(400px, 1fr));
        max-width: 1220px;
        margin: 0 auto;
    }

    .pricing-shell-v3 .pricing-v2-grid[data-active-plan="kontor"] {
        grid-template-columns: repeat(4, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-shell-v3 .pricing-v2-card .pricing-v2-head {
        padding: 18px 16px 10px;
        min-height: auto;
    }

    .pricing-shell-v3 .pricing-v2-price {
        padding: 2px 16px 10px;
    }

    .pricing-shell-v3 .pricing-v2-price strong {
        font-size: 2.25rem;
    }

    .pricing-shell-v3 .pricing-v2-price span {
        font-size: .88rem;
        margin-bottom: 5px;
    }

    .pricing-shell-v3 .pricing-v2-features {
        padding: 6px 16px 0;
    }

    .pricing-shell-v3 .pricing-v2-cta {
        margin: 12px 16px 16px;
    }
}

.pricing-page-cta {
    padding: 0 0 64px;
    /* background: linear-gradient(180deg, #fff 0%, #f8faff 100%); */
}

.pricing-cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: linear-gradient(135deg, #3b32b3 0%, #352db0 100%);
    box-shadow: 0 20px 36px rgba(19, 25, 53, .22);
    padding: 38px 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.pricing-cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 84px 100%, 100% 84px;
    pointer-events: none;
}

.pricing-cta-copy,
.pricing-cta-actions {
    position: relative;
    z-index: 1;
}

.pricing-cta-copy h2 {
    color: #fff;
    font-size: clamp(1.7rem, 2.8vw, 2.85rem);
    line-height: 1.15;
    letter-spacing: -.3px;
    font-family: "Zalando Sans", sans-serif;
}

.pricing-cta-copy p {
    margin-top: 10px;
    max-width: 700px;
    color: rgba(236, 241, 255, .92);
    font-size: 1.08rem;
    line-height: 1.62;
}

.pricing-cta-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pricing-cta-btn {
    min-width: 150px;
    min-height: 50px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12px;
    border: 1px solid transparent;
    transition: .2s ease;
}

.pricing-cta-btn.primary {
    background: #fff;
    color: var(--fp-brand);
}

.pricing-cta-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 255, 255, .24);
}

.pricing-cta-btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}

.pricing-cta-btn.ghost:hover {
    background: rgba(255, 255, 255, .08);
}

@media (max-width: 980px) {
    .pricing-cta-banner {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        gap: 18px;
    }

    .pricing-cta-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .pricing-page-cta {
        padding-bottom: 48px;
    }

    .pricing-cta-btn {
        width: 100%;
        min-width: 0;
    }
}

.campaign-shell-v2 {
    background: #f3f6fb;
}

.campaign-shell-v2 .container {
    display: grid;
    gap: 18px;
}

.campaign-shell-v2 .campaign-v2-hero {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 10px;
}

.campaign-shell-v2 .campaign-v2-eyebrow {
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    background: rgba(54, 45, 174, .1);
    color: var(--fp-brand);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .38px;
    text-transform: uppercase;
}

.campaign-shell-v2 .campaign-v2-hero h1 {
    color: var(--fp-brand);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.14;
    letter-spacing: -.28px;
    font-family: "Zalando Sans", sans-serif;
}

.campaign-shell-v2 .campaign-v2-hero h1 span {
    color: var(--fp-brand-light);
}

.campaign-shell-v2 .campaign-v2-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #5c6a80;
    font-size: 1rem;
    line-height: 1.68;
}

.campaign-shell-v2 .campaign-v2-grid {
    margin-top: 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.campaign-shell-v2 .campaign-v2-card {
    border: 1px solid #d8e1f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 27, 60, .06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.campaign-shell-v2 .campaign-v2-card img {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    object-fit: cover;
}

.campaign-shell-v2 .campaign-v2-card .campaign-modern-content {
    padding: 16px;
    display: grid;
    gap: 8px;
}

.campaign-shell-v2 .campaign-v2-card .campaign-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 26px;
    line-height: 1.2;
    border-radius: 999px;
    padding: 4px 10px;
    width: fit-content;
    font-size: .66rem;
    letter-spacing: .2px;
    text-transform: uppercase;
    font-weight: 800;
    background: #edf3ff;
    border: 1px solid #d8e4f8;
    color: var(--fp-brand);
}

.campaign-shell-v2 .campaign-v2-card h3 {
    color: var(--fp-brand);
    font-size: 1.34rem;
    line-height: 1.28;
    letter-spacing: -.2px;
}

.campaign-shell-v2 .campaign-v2-card p {
    color: #5d6d85;
    font-size: .95rem;
    line-height: 1.58;
}

.campaign-shell-v2 .campaign-v2-card .campaign-v2-meta {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.campaign-shell-v2 .campaign-v2-card .campaign-v2-meta span {
    color: #8c98ab;
    font-size: .76rem;
    font-weight: 300;
}



.campaign-shell-v2 .campaign-v2-card.is-featured {
    border-color: rgba(54, 45, 174, .42);
    background: linear-gradient(165deg, #3b32b3 0%, #2f2aa0 100%);
    box-shadow: 0 18px 36px rgba(54, 45, 174, .24);
}

.campaign-shell-v2 .campaign-v2-card.is-featured .campaign-modern-content {
    padding: 18px;
}

.campaign-shell-v2 .campaign-v2-card.is-featured .campaign-v2-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .14);
    color: #dff7ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.campaign-shell-v2 .campaign-v2-card.is-featured .campaign-chip {
    background: rgba(15, 186, 186, .2);
    border-color: rgba(15, 186, 186, .24);
    color: #c9fff8;
}

.campaign-shell-v2 .campaign-v2-card.is-featured h3,
.campaign-shell-v2 .campaign-v2-card.is-featured p,
.campaign-shell-v2 .campaign-v2-card.is-featured .campaign-v2-meta span,
.campaign-shell-v2 .campaign-v2-card.is-featured .blog-card-link {
    color: #fff;
}

.campaign-shell-v2 .campaign-v2-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.campaign-shell-v2 .campaign-v2-quick-card {
    border: 1px solid #d8e1ef;
    border-radius: 12px;
    background: #fff;
    padding: 14px 14px 12px;
    box-shadow: 0 8px 16px rgba(16, 27, 60, .05);
    display: grid;
    gap: 6px;
}

.campaign-shell-v2 .campaign-v2-quick-card h3 {
    color: var(--fp-brand);
    font-size: 1.68rem;
    line-height: 1.1;
    letter-spacing: -.3px;
    font-family: "Zalando Sans", sans-serif;
}

.campaign-shell-v2 .campaign-v2-quick-card p {
    color: #5e6e86;
    font-size: .88rem;
    line-height: 1.55;
}

.campaign-shell-v2 .campaign-v2-quick-card a {
    margin-top: 2px;
    color: var(--fp-brand);
    font-size: .82rem;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .campaign-shell-v2 .campaign-v2-grid {
        grid-template-columns: 1fr 1fr;
    }

    .campaign-shell-v2 .campaign-v2-card.is-featured {
        grid-column: 1 / -1;
    }

    .campaign-shell-v2 .campaign-v2-quick-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .campaign-shell-v2 .campaign-v2-grid {
        grid-template-columns: 1fr;
    }

    .campaign-shell-v2 .campaign-v2-card img {
        height: 154px;
    }

    .campaign-shell-v2 .campaign-v2-card h3 {
        font-size: 1.18rem;
    }
}

.feature-shell-v2 {
    background: #f3f5f9;
}

.feature-shell-v2 .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-section-header {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.feature-section-header h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--fp-dark);
    margin-bottom: 16px;
    font-family: "Zalando Sans", sans-serif;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.feature-section-header p {
    font-size: 1.05rem;
    color: #5e6e86;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.feature-shell-v2 .feature-ref-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 50px;
    width: 100%;
}

.feature-shell-v2 .feature-ref-grid::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(54, 45, 174, 0.1) 0%, rgba(54, 45, 174, 0.4) 50%, rgba(54, 45, 174, 0.1) 100%);
    border-radius: 2px;
}

.feature-shell-v2 .feature-ref-card {
    position: relative;
    border: 1px solid #e6e9f0;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-shell-v2 .feature-ref-card::after {
    content: '';
    position: absolute;
    left: -37px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 3px solid var(--fp-brand);
    border-radius: 50%;
    box-shadow: 0 0 0 4px #f8fafc, 0 4px 10px rgba(54, 45, 174, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-shell-v2 .feature-ref-card.reveal.visible::after {
    background: var(--fp-brand);
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.2);
}

.feature-shell-v2 .feature-ref-card.reveal.visible:hover {
    transform: translateY(-5px);
    border-color: #d8deea;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-shell-v2 .feature-ref-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-right: 10px;
    min-width: 0;
}

.feature-shell-v2 .feature-ref-content::before {
    content: "\f080";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -6px;
    top: 10%;
    transform: translateY(-50%);
    font-size: 45px;
    color: rgba(54, 45, 174, .08);
    pointer-events: none;
    z-index: 0;
}

.feature-shell-v2 .feature-ref-icon {
    display: none;
}

.feature-shell-v2 .feature-ref-content h3 {
    color: var(--fp-brand);
    font-size: 1.28rem;
    line-height: 1.32;
    font-weight: 700;
    letter-spacing: -.16px;
    font-family: "Zalando Sans", sans-serif;
    position: relative;
    z-index: 1;
}

.feature-shell-v2 .feature-ref-content p {
    color: #6b7280;
    font-size: .82rem;
    line-height: 1.56;
    font-weight: 400;
    max-width: 96%;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.feature-shell-v2 .feature-ref-link {
    margin-top: 4px;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 8px;
    background: var(--fp-brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06px;
    position: relative;
    z-index: 1;
}

.feature-shell-v2 .feature-ref-link::after {
    content: "";
}

.feature-shell-v2 .feature-ref-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 8px;
    min-width: 0;
}

.feature-shell-v2 .feature-ref-media img {
    width: 100%;
    max-width: 300px;
    max-height: 136px;
    object-fit: contain;
    filter: saturate(.95) contrast(1.03);
}

.feature-ref-cta {
    margin-top: 16px;
    border-radius: 14px;
    background: linear-gradient(160deg, #3f35bb 0%, #352dae 100%);
    padding: 42px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 36px rgba(20, 29, 63, .25);
}

.feature-ref-cta::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    left: -190px;
    bottom: -245px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, .32) 0%, rgba(255, 255, 255, .12) 38%, rgba(255, 255, 255, 0) 74%);
    pointer-events: none;
}

.feature-ref-cta h2,
.feature-ref-cta p,
.feature-ref-cta-bottom {
    position: relative;
    z-index: 1;
}

.feature-ref-cta h2 {
    color: #fff;
    font-size: clamp(1.7rem, 2.3vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -.24px;
    font-family: "Zalando Sans", sans-serif;
}

.feature-ref-cta::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -135px;
    bottom: -200px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 32%, rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, .1) 36%, rgba(255, 255, 255, 0) 72%);
    box-shadow:
        -250px -78px 0 -150px rgba(255, 255, 255, .18),
        -110px -170px 0 -145px rgba(255, 255, 255, .15),
        -336px -12px 0 -170px rgba(255, 255, 255, .12);
    pointer-events: none;
}

.feature-ref-cta p {
    margin-top: 10px;
    color: rgba(229, 236, 255, .92);
    font-size: .94rem;
    line-height: 1.65;
}

.feature-ref-cta-bottom {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-ref-cta-bottom a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.feature-ref-cta-bottom .btn-primary {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 10px;
    background: var(--fp-accent);
    border-color: var(--fp-accent);
    font-size: .86rem;
    font-weight: 700;
}

.feature-ref-cta-bottom .btn-outline {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
}

@media (max-width: 1100px) {
    /* Timeline is already flex, nothing to do. */
}

@media (max-width: 768px) {
    .feature-shell-v2 .feature-ref-grid {
        padding-left: 30px;
    }

    .feature-shell-v2 .feature-ref-grid::before {
        left: 10px;
    }

    .feature-shell-v2 .feature-ref-card {
        padding: 24px;
    }

    .feature-shell-v2 .feature-ref-card::after {
        left: -27px;
    }

    .feature-shell-v2 .feature-ref-content {
        padding-right: 0;
    }

    .feature-shell-v2 .feature-ref-content h3 {
        font-size: 1.2rem;
    }

    .feature-shell-v2 .feature-ref-content p {
        font-size: .8rem;
        max-width: 100%;
    }

    .feature-shell-v2 .feature-ref-media {
        justify-content: center;
        padding-left: 0;
    }

    .feature-shell-v2 .feature-ref-media img {
        width: min(100%, 360px);
        max-width: 100%;
        max-height: 200px;
    }

    .feature-ref-cta {
        padding: 30px 18px;
    }

    .feature-ref-cta::before {
        width: 280px;
        height: 280px;
        left: -140px;
        bottom: -170px;
    }

    .feature-ref-cta::after {
        width: 240px;
        height: 240px;
        right: -100px;
        bottom: -140px;
        box-shadow:
            -130px -40px 0 -90px rgba(255, 255, 255, .16),
            -60px -110px 0 -88px rgba(255, 255, 255, .13);
    }

    .feature-shell-v2 .feature-ref-cta-actions .btn-primary,
    .feature-shell-v2 .feature-ref-cta-actions .btn-outline,
    .feature-ref-cta-bottom .btn-primary,
    .feature-ref-cta-bottom .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .feature-shell-v2 .feature-ref-content h3 {
        font-size: 1.08rem;
        line-height: 1.3;
    }

    .feature-shell-v2 .feature-ref-content p {
        font-size: .78rem;
        line-height: 1.52;
    }

    .feature-ref-cta {
        padding: 24px 14px;
    }

    .feature-ref-cta h2 {
        font-size: clamp(1.35rem, 7vw, 1.8rem);
    }

    .feature-ref-cta p {
        font-size: .88rem;
        line-height: 1.6;
    }

    .feature-shell-v2 .feature-ref-cta-actions,
    .feature-ref-cta-bottom {
        gap: 8px;
    }

    .feature-shell-v2 .feature-ref-cta-actions .btn-primary,
    .feature-shell-v2 .feature-ref-cta-actions .btn-outline,
    .feature-ref-cta-bottom .btn-primary,
    .feature-ref-cta-bottom .btn-outline {
        min-height: 48px;
    }
}

@media (max-width: 430px) {
    .feature-shell-v2 .feature-ref-card {
        padding: 14px;
    }

    .feature-shell-v2 .feature-ref-content::before {
        display: none;
    }
}

@media (max-width: 1024px) {
    .topbar {
        display: none;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .navbar .container {
        height: 66px;
    }
}

.pricing-shell-v4 {
    background: linear-gradient(180deg, #f3f5f9 0%, #ffffff 58%, #f4f7fd 100%);
}

.pricing-shell-v4 .container {
    gap: 28px;
}

.pricing-shell-v4 .pricing-v2-hero {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    gap: 10px;
}

.pricing-shell-v4 .pricing-v2-hero .section-label {
    color: var(--fp-brand);
}

.pricing-shell-v4 .pricing-v2-hero h1 {
    color: #121934;
    font-family: "Zalando Sans", sans-serif;
}

.pricing-shell-v4 .pricing-v2-hero p {
    color: #5e6b80;
    max-width: 700px;
}

.pricing-shell-v4 .pricing-toggle-wrap {
    justify-content: center;
}

.pricing-shell-v4 .pricing-toggle {
    position: relative;
    isolation: isolate;
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid #d9e1ef;
    background: #fff;
}

.pricing-shell-v4 .pricing-toggle::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    border-radius: 999px;
    background: var(--fp-brand);
    box-shadow: 0 12px 20px rgba(54, 45, 174, .24);
    transform: translateX(0);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
}

.pricing-shell-v4 .pricing-toggle[data-active-plan="kontor"]::before {
    transform: translateX(100%);
}

.pricing-shell-v4 .pricing-toggle-btn {
    position: relative;
    z-index: 1;
    min-width: 136px;
    height: 42px;
    border-radius: 999px;
    font-weight: 700;
    background: transparent;
    color: #5f6c81;
    transition: color .24s ease;
}

.pricing-shell-v4 .pricing-toggle-btn.active {
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.pricing-shell-v4 .pricing-v2-grid,
.pricing-shell-v4 .pricing-v2-grid[data-active-plan="lisans"],
.pricing-shell-v4 .pricing-v2-grid[data-active-plan="kontor"] {
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.pricing-shell-v4 .pricing-v2-card {
    position: relative;
    border-radius: 30px;
    border: 1px solid #d9e1ef;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    align-self: start;
}

.pricing-shell-v4 .pricing-v2-card::before {
    display: none;
}

.pricing-shell-v4 .pricing-v2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, .1);
    border-color: #cfd9ea;
}

.pricing-shell-v4 .pricing-v2-card .pricing-v2-head {
    padding: 26px 28px 14px;
    min-height: 150px;
    background: #fff;
    border-bottom: 1px solid #edf2f8;
}

.pricing-shell-v4 .pricing-v2-card.has-gift-badge .pricing-v2-head {
    padding-right: 28px;
}

.pricing-shell-v4 .pricing-v2-card .pricing-v2-kicker {
    margin-bottom: 6px;
    padding: 0;
    background: transparent;
    color: #15203f;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -.2px;
}

.pricing-shell-v4 .pricing-v2-card .pricing-v2-head h3 {
    color: #6a768a;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.56;
}

.pricing-shell-v4 .pricing-v2-card .pricing-v2-head p,
.pricing-shell-v4 .pricing-v2-gift-note {
    color: #5f6c81;
    font-size: .85rem;
    line-height: 1.5;
    font-weight: 600;
}

.pricing-shell-v4 .pricing-v2-price {
    padding: 25px 28px 10px;
    gap: 7px;
}

.pricing-shell-v4 .pricing-v2-price strong {
    color: #101727;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: -.35px;
    font-weight: 700;
}

.pricing-shell-v4 .pricing-v2-price span {
    color: #708096;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.pricing-shell-v4 .pricing-v2-features {
    padding: 8px 28px 0;
    display: grid;
    gap: 10px;
}

.pricing-shell-v4 .pricing-v2-features.is-collapsible {
    overflow: hidden;
    transition: max-height .36s ease;
}

.pricing-shell-v4 .pricing-v2-features li {
    padding: 0 0 0 24px;
    border-bottom: 0;
    color: #334155;
    font-size: .92rem;
    line-height: 1.5;
    font-weight: 500;
}

.pricing-shell-v4 .pricing-v2-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fp-brand);
}

.pricing-shell-v4 .pricing-v2-features li.is-negative {
    color: #9aa5b7;
}

.pricing-shell-v4 .pricing-v2-features li.is-negative::before {
    background: #c8d1e1;
}

.pricing-shell-v4 .pricing-v2-more {
    margin: 35px 28px 0;
    min-height: 34px;
    border-radius: 10px;
    border: 1px solid #d4dcef;
    background: #f7f9ff;
    color: var(--fp-brand);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06px;
}

.pricing-shell-v4 .pricing-v2-more:hover {
    background: #eef2ff;
}

.pricing-shell-v4 .pricing-v2-cta {
    margin: 14px 28px 24px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid var(--fp-brand);
    background: #fff;
    color: var(--fp-brand);
    font-weight: 700;
    font-size: .94rem;
}

.pricing-shell-v4 .pricing-v2-cta:hover {
    background: #f3f2ff;
    box-shadow: none;
}

.pricing-shell-v4 .pricing-v2-card.is-highlight {
    border-color: #2e287f;
    background: #362dae;
    transform: translateY(-6px);
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-head {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-kicker,
.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-head h3,
.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-head p,
.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-gift-note {
    color: #e8ecff;
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-price strong,
.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-price span,
.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-features li {
    color: #f4f6ff;
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-features li.is-negative {
    color: #aeb8d6;
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-features li::before {
    background: var(--fp-accent);
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-features li.is-negative::before {
    background: #6c79a7;
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-more {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #d8defa;
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-more:hover {
    background: rgba(255, 255, 255, .12);
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-cta {
    background: #0fbaba;
    border-color: var(--fp-brand);
    color: #fff;
}

.pricing-shell-v4 .pricing-v2-card.is-highlight .pricing-v2-cta:hover {
    background: #0e9393;
    border-color: var(--fp-brand-light);
}

.pricing-shell-v4 .pricing-v2-badge {
    top: 14px;
    right: 14px;
    min-height: 60px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(54, 45, 174, .92);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .2px;
    text-transform: uppercase;
    padding: 0 10px;
    width: auto;
    box-shadow: none;
}

.pricing-shell-v4 .pricing-v2-badge::before {
    content: none;
}

.pricing-shell-v4 .pricing-v2-card:not(.has-gift-badge) .pricing-v2-badge {
    display: none;
}

.pricing-shell-v4 .pricing-v2-card.tone-purple,
.pricing-shell-v4 .pricing-v2-card.tone-teal,
.pricing-shell-v4 .pricing-v2-card.tone-blue,
.pricing-shell-v4 .pricing-v2-card.tone-green {
    --plan-color: var(--fp-brand);
}

@media (min-width: 1200px) {
    .pricing-shell-v4 .pricing-v2-grid[data-active-plan="lisans"] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-shell-v4 .pricing-v2-grid[data-active-plan="kontor"] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    .pricing-shell-v4 .pricing-v2-grid,
    .pricing-shell-v4 .pricing-v2-grid[data-active-plan="lisans"],
    .pricing-shell-v4 .pricing-v2-grid[data-active-plan="kontor"] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pricing-shell-v4 .pricing-toggle-btn {
        min-width: 118px;
        height: 40px;
        font-size: .84rem;
    }

    .pricing-shell-v4 .pricing-v2-grid,
    .pricing-shell-v4 .pricing-v2-grid[data-active-plan="lisans"],
    .pricing-shell-v4 .pricing-v2-grid[data-active-plan="kontor"] {
        grid-template-columns: 1fr;
    }

    .pricing-shell-v4 .pricing-v2-card {
        border-radius: 24px;
    }

    .pricing-shell-v4 .pricing-v2-card .pricing-v2-head {
        padding: 20px 18px 12px;
        min-height: 0;
    }

    .pricing-shell-v4 .pricing-v2-price {
        padding: 10px 18px 8px;
    }

    .pricing-shell-v4 .pricing-v2-price strong {
        font-size: 2.15rem;
    }

    .pricing-shell-v4 .pricing-v2-features {
        padding: 6px 18px 0;
    }

    .pricing-shell-v4 .pricing-v2-more {
        margin: 10px 18px 0;
    }

    .pricing-shell-v4 .pricing-v2-cta {
        margin: 12px 18px 18px;
    }
}

.solutions-alt-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
}

.solutions-alt-content .solution-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 0;
    max-width: none;
    padding-top: 0;
}

.solutions-alt-content .solution-actions .btn-primary,
.solutions-alt-content .solution-actions .btn-accent {
    min-height: 46px;
    padding: 12px 24px !important;
    font-size: .92rem !important;
    line-height: 1.2;
    white-space: nowrap;
}

.ozellikler-single-video-link {
    width: 100%;
}

.ozellikler-single-video {
    width: min(100%, 800px);
}

.ozellikler-single-video-image {
    aspect-ratio: 16 / 9;
}

.ozellikler-single-video-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-demo-dialog.has-visual {
    max-width: min(820px, calc(100vw - 32px));
    width: 100%;
    padding: 20px;
}

.demo-popup-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.demo-popup-visual {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    background: linear-gradient(180deg, #1e2240 0%, #171a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 470px;
}

.demo-popup-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: .92;
}

.demo-popup-content {
    min-width: 0;
    padding-bottom: 20px;
    color: #fff;
}

.demo-popup-content>p {
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    line-height: 1.55;
    margin-top: 6px;
}

@media (max-width: 1200px) {
    .solutions-alt-item {
        gap: 22px;
        padding: 20px;
    }

    .solutions-alt-content h3 {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
    }
}

@media (max-width: 992px) {
    .solutions-alt-media {
        aspect-ratio: 16 / 9;
    }

    .solutions-alt-content .solution-actions .btn-primary,
    .solutions-alt-content .solution-actions .btn-accent {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .solutions-alt-item {
        padding: 16px;
        gap: 14px;
        border-radius: 18px;
    }

    .solutions-alt-content {
        padding: 0;
    }

    .solutions-alt-content p {
        font-size: .94rem;
        line-height: 1.62;
    }

    .solutions-alt-content .solution-actions {
        gap: 8px;
    }

    .solutions-alt-content .solution-actions .btn-primary,
    .solutions-alt-content .solution-actions .btn-accent {
        flex: 1 1 100%;
        width: 100%;
    }

    .solutions-alt-content .solution-actions .btn-accent {
        display: inline-flex;
        justify-content: center;
        text-align: center;
    }

    .ozellikler-single-video {
        border-radius: 16px;
    }

    .ozellikler-single-video-play-btn {
        width: 52px;
        height: 52px;
    }

    .play-icon {
        border-width: 9px 0 9px 16px;
    }

    .bottom-demo-dialog.has-visual {
        max-width: calc(100vw - 24px);
        padding: 14px;
    }

    .demo-popup-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .demo-popup-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .ozellikler-single-video-play-btn {
        width: 46px;
        height: 46px;
    }

    .play-icon {
        border-width: 8px 0 8px 14px;
    }
}

.help-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.help-search-container {
    margin-top: 32px;
    position: relative;
}

.help-search-input {
    width: 100%;
    padding: 20px 24px 20px 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    color: var(--fp-text);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.help-search-input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.help-search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fp-brand);
    font-size: 1.2rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
}

.guide-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--fp-border);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(54, 45, 174, 0.1);
    border-color: var(--fp-brand-light);
}

.guide-icon {
    width: 56px;
    height: 56px;
    background: var(--fp-bg-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--fp-brand);
    flex-shrink: 0;
}

.guide-card:hover .guide-icon {
    background: var(--fp-brand);
    color: #fff;
}

.guide-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--fp-text);
}

.guide-content p {
    font-size: 0.95rem;
    color: var(--fp-text-light);
    line-height: 1.6;
}

.urgency-container {
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.urgency-band {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: #ffffff;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 32px rgba(185, 28, 28, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.urgency-band .urgency-icon {
    font-size: 2.4rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    animation: ring 4s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    5% {
        transform: rotate(15deg);
    }

    10% {
        transform: rotate(-10deg);
    }

    15% {
        transform: rotate(5deg);
    }

    20% {
        transform: rotate(-5deg);
    }

    25% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.urgency-band p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-band p strong {
    color: #ffffff;
}

.urgency-band a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 8px;
    white-space: nowrap;
}

.urgency-band small {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    opacity: 0.8;
}

.urgency-countdown {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}

.cd-item span {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.cd-item small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .urgency-band {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
    }

    .urgency-band a {
        display: inline-block;
        margin-top: 8px;
        margin-left: 0;
    }

    .urgency-countdown {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .urgency-container {
        margin-top: 20px;
        padding: 0 12px;
    }

    .urgency-band {
        margin: 0 auto;
        padding: 28px 20px 20px;
        border-radius: 24px;
        box-shadow: 0 22px 44px rgba(185, 28, 28, 0.22);
    }
}

.hero-tag {
    display: inline-block;
    background: rgba(99, 179, 237, .15);
    border: 1px solid rgba(99, 179, 237, .35);
    color: #63b3ed;
    font-size: .82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .02em;
}

.hero-tag a {
    color: inherit;
    text-decoration: none;
}

.hero-tag a:hover {
    text-decoration: underline;
}

.hero-tag-separator {
    margin: 0 8px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-tag {
        display: none;
    }
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border: 1.5px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .55);
}

.hero-trust-micro {
    margin-top: 18px;
    font-size: 14px;
    opacity: .82;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 179, 237, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(99, 179, 237, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 179, 237, 0);
    }
}

.btn-primary {
    animation: pulse-ring 2s infinite;
}

.how-it-works {
    padding: 80px 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin: 12px 0 40px;
    color: var(--fp-dark);
}

.how-it-works p {
    color: var(--fp-text-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--fp-accent);
    box-shadow: 0 16px 40px rgba(15, 186, 186, 0.1);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fp-brand-light);
    line-height: 1;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--fp-dark);
    font-weight: 700;
}

.step-card p {
    font-size: .95rem;
    color: var(--fp-text-light);
    line-height: 1.6;
}

.customer-logos-band {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(to right, #ffffff, var(--fp-bg-soft), #ffffff);
    margin-bottom: 60px;
    border-radius: var(--radius-xl);
}

.logos-label {
    font-size: .85rem;
    color: var(--fp-text-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.logos-track {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.logo-pill {
    background: #fff;
    border: 1px solid rgba(54, 45, 174, 0.08);
    border-radius: 40px;
    padding: 10px 24px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--fp-text);
    white-space: nowrap;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(54, 45, 174, 0.03);
}

.logo-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(54, 45, 174, 0.25);
    box-shadow: 0 12px 24px rgba(54, 45, 174, 0.08);
    color: var(--fp-brand);
}

.price-teaser {
    padding: 80px 0;
    text-align: center;
}

.price-teaser h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.price-cards-mini {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.price-mini-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
    transition: transform .2s, border-color .2s;
}

.price-mini-card:hover {
    transform: translateY(-4px);
}

.price-mini-card.featured {
    border-color: #63b3ed;
    background: rgba(99, 179, 237, .08);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: #63b3ed;
}

.price-label {
    font-size: 1rem;
    font-weight: 600;
}

.price-note {
    font-size: .78rem;
    opacity: .6;
}

.demo-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
    font-size: .78rem;
    opacity: .8;
    margin-top: 12px;
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
}

.landing-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.solutions-more-wrap {
    text-align: center;
    margin-top: 20px;
}

.solutions-more-item {
    display: none;
}

.solutions-expanded .solutions-more-item {
    display: grid;
    animation: slideDownFade 0.5s ease forwards;
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-contact-chips a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.demo-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.demo-note {
    font-size: .82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .72);
    margin-top: 12px;
}

.demo-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.demo-actions .btn-primary,
.demo-actions .btn-outline {
    width: 100%;
    padding: 14px 18px;
    justify-content: center;
}

.demo-field-wrap.full {
    grid-column: 1 / -1;
}

.demo-label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    margin: 2px 0 0;
    color: #dbe5ff;
}

@media (min-width: 768px) and (max-width: 1080px) {

    .steps-grid,
    .bf-grid,
    .price-cards-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .topbar {
        padding: 4px 0;
    }

    .topbar-right .topbar-marquee-track span {
        display: none;
    }

    .topbar-right .topbar-marquee-track span:first-child {
        display: inline-flex;
        font-size: .76rem;
        line-height: 1.2;
    }

    .navbar .container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-logo {
        order: 1;
    }

    .nav-actions {
        order: 3;
        margin-left: auto;
    }

    .nav-actions .btn-login {
        display: none;
    }

    .nav-cta-always {
        padding: 10px 14px !important;
        font-size: .78rem !important;
        white-space: nowrap;
    }

    .nav-links {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        border-radius: 12px;
        background: rgba(2, 11, 31, .96);
        border: 1px solid rgba(255, 255, 255, .1);
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a {
        padding: 10px 8px;
    }

    .hero-inner h1 {
        font-size: clamp(1.8rem, 7vw, 2.35rem);
        line-height: 1.15;
        max-width: 24ch;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta,
    .hero-cta-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-trust-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-contact-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-dashboard {
        margin-top: 18px;
        width: 100%;
    }

    .hero-dashboard img {
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .steps-grid,
    .bf-grid,
    .price-cards-mini {
        grid-template-columns: 1fr;
    }

    .testimonial-slider-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-slide-card {
        display: block;
    }

    .price-teaser {
        padding-bottom: 96px;
    }

    .price-teaser .btn-outline {
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 14px auto 0;
        text-align: center;
    }

    .bottom-demo-dialog {
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .demo-form-close {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .demo-actions {
        grid-template-columns: 1fr;
    }

    .demo-field {
        min-height: 46px;
    }
}

@media (min-width: 992px) {
    .testimonial-slider-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .testimonial-slide-card {
        display: block;
    }

    .slider-dots,
    .slider-controls {
        display: none;
    }
}

.solution-actions .btn-primary,
.solution-actions .btn-accent {
    padding: 14px 32px;
    font-size: .95rem;
}

.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
    padding: 16px 40px;
    font-size: 1rem;
}

/* =============================================
   YouTube Shorts Testimonials Section
   ============================================= */
.yt-testimonials-section {
    padding: 80px 0;
}

.yt-shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 0;
    justify-items: center;
}

@media (max-width: 1024px) {
    .yt-shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 560px) {
    .yt-shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.yt-card {
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.yt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(54, 45, 174, .12);
    border-color: var(--fp-brand-light);
}

.yt-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #0f0c29;
}

.yt-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.yt-card:hover .yt-thumb-wrap img {
    transform: scale(1.06);
}

.yt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.yt-card:hover .yt-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .70) 0%, rgba(0, 0, 0, .25) 50%, transparent 100%);
}

.yt-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    border: none;
    color: var(--fp-brand);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .25s, background .25s, box-shadow .25s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
    padding-left: 4px;
    /* optical centering for play icon */
}

.yt-card:hover .yt-play-btn {
    transform: scale(1.15);
    background: #fff;
    box-shadow: 0 10px 36px rgba(54, 45, 174, .35);
}

.yt-card-info {
    padding: 14px 16px 16px;
    text-align: left;
}

.yt-card-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--fp-brand);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.yt-card-desc {
    font-size: .88rem;
    color: var(--fp-text-light);
    line-height: 1.45;
}

/* =============================================
   Mobile Menu / Sidebar (Generated by JS)
   ============================================= */
body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    background: rgba(14, 21, 56, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: auto;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
}

.mobile-sidebar.is-open {
    transform: translateX(0);
}

.mobile-sidebar-head {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-sidebar-head img {
    height: 38px;
    width: auto;
}

.mobile-sidebar-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f8fafc;
    color: var(--fp-text);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-sidebar-close:hover {
    background: #f1f5f9;
    color: var(--fp-brand);
}

.mobile-sidebar-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-sidebar-links a {
    color: var(--fp-text);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
}

.mobile-sidebar-links a:hover {
    color: var(--fp-brand);
}

.mobile-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.mobile-sidebar-actions button,
.mobile-sidebar-actions a {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
    justify-content: center;
}

@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* =============================================
   YouTube Modal
   ============================================= */
.yt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.yt-modal.is-open {
    display: flex;
}

.yt-modal-inner {
    position: relative;
    width: 100%;
    max-width: 380px;
    animation: ytModalIn .3s cubic-bezier(.22, 1, .36, 1);
}

@keyframes ytModalIn {
    from {
        opacity: 0;
        transform: scale(.88) translateY(24px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.yt-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.yt-modal-close:hover {
    background: rgba(255, 255, 255, .3);
}

.yt-modal-frame-wrap {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
}

.yt-modal-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 480px) {
    .yt-modal-inner {
        max-width: calc(100vw - 40px);
    }
}

/* -------------------------------------
   Fiyatlar Sayfasi Alt Icerik Kartlari 
-------------------------------------- */
.pricing-feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.pricing-feature-item {
    background: #ffffff;
    border: 1px solid var(--fp-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.pricing-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

.pricing-feature-item .pf-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(43, 82, 246, 0.08);
    color: var(--fp-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pricing-feature-item .pf-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fp-text);
    line-height: 1.4;
}

/* -------------------------------------
   SEO Icerik Kutusu (Footer Ustu)
-------------------------------------- */
.seo-content-box {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    border: 1px solid var(--fp-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.seo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--fp-border);
    padding-bottom: 20px;
}

.seo-header i {
    font-size: 1.5rem;
    color: var(--fp-brand);
}

.seo-header h2 {
    font-size: 1.5rem;
    color: var(--fp-text);
    margin: 0;
    font-weight: 700;
    font-family: inherit;
}

.seo-body-columns {
    column-count: 2;
    column-gap: 40px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--fp-text-light);
}

.seo-body-columns p {
    margin-top: 0;
    margin-bottom: 16px;
    break-inside: avoid;
}

@media (max-width: 768px) {
    .seo-content-box {
        padding: 24px;
    }

    .seo-body-columns {
        column-count: 1;
    }
}

/* -------------------------------------
   Kampanya Gradient Kart Kapakları
-------------------------------------- */
.campaign-gradient-cover {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

.campaign-gradient-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.campaign-gradient-cover h2 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    font-family: "Zalando Sans", sans-serif;
}

.campaign-gradient-cover.gradient-blue,
.campaign-gradient-cover.gradient-emerald {
    background: linear-gradient(135deg, #362dae 0%, #6559ff 100%);
}

/* -------------------------------------
   Özellikler Sayfasi (ozellikler.html) SEO Alanı Modernizasyonu
-------------------------------------- */
.seo-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.seo-content h2 {
    text-align: center;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    color: var(--fp-dark);
    margin-bottom: 30px;
    font-family: "Zalando Sans", sans-serif;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.seo-content p {
    font-size: 1.05rem;
    color: #5e6e86;
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-content {
        padding: 40px 20px;
        border-radius: 16px;
    }
}

/* -------------------------------------
   Scroll Reveal Animasyonlari
-------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------
   Mali Müşavir Bento Grid Tasarımı
-------------------------------------- */
.mali-bento-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 24px;
    margin-bottom: 24px;
}

.mali-bento-card {
    border-radius: 28px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Primary Card (Mükellefler) */
.mali-bento-primary {
    background: linear-gradient(135deg, #7142ff 0%, #4a21d1 100%);
    /* Mor gradyan */
    color: #fff;
    box-shadow: 0 16px 40px rgba(113, 66, 255, 0.2);
    min-height: 440px;
}

.mali-bento-primary .bento-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    /* Yazıları alta it */
    padding-top: 40px;
}

.mali-bento-primary h2 {
    color: #fff;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.mali-bento-primary h3 {
    color: #e5d7ff;
    /* Açık lila tonlu başlık */
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.mali-bento-primary p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
}

.bento-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    position: absolute;
    top: 40px;
    left: 40px;
}

/* Primary Card Background Decor */
.bento-bg-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.bento-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.bento-floating {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 230px;
    opacity: 0.9;
    transform: rotate(-4deg);
    transition: transform 0.4s ease;
}

.mali-bento-primary:hover .bento-floating {
    transform: rotate(0deg) scale(1.02);
}

/* Secondary Card (Light Side Card) */
.mali-bento-light {
    background: #fff;
    border: 1px solid #dce4f3;
    box-shadow: 0 16px 36px rgba(23, 33, 64, 0.04);
}

.bento-icon-alt {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f6f8ff;
    border: 1px solid #e1e7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #2e3e6b;
    margin-bottom: 24px;
}

.mali-bento-light h3 {
    font-size: 1.45rem;
    color: #111b3a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.mali-bento-light p {
    color: #4f5f7a;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 36px;
}

/* Skeleton Effect */
.bento-skeleton {
    margin-top: auto;
    display: grid;
    gap: 14px;
}

.sk-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sk-row i {
    color: #c9d2e1;
    font-size: 0.9rem;
}

.sk-line {
    height: 6px;
    background: #e7ecf3;
    border-radius: 999px;
}

.sk-w1 {
    width: 50%;
    background: #cabbff;
}

.sk-w2 {
    width: 70%;
    background: #b4ccff;
}

.sk-w3 {
    width: 90%;
    background: #cabbff;
}

.sk-w4 {
    width: 100%;
}

/* Wide Card (Dark Bottom Card) */
.mali-bento-dark {
    grid-column: 1 / -1;
    /* Stretch across both columns */
    background: #111524;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    overflow: hidden;
}

.bento-icon-dark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #8fa1c4;
    margin-bottom: 24px;
}

.mali-bento-dark h2 {
    color: #fff;
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.mali-bento-dark p {
    color: #8c9cbc;
    font-size: 1.05rem;
    line-height: 1.6;
}

.bento-dark-visual {
    position: relative;
}

.bento-dark-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.bento-ui-mock {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Tablet & Mobile Layout Adjustment */
@media (max-width: 992px) {
    .mali-bento-grid {
        grid-template-columns: 1fr;
    }

    .mali-bento-primary {
        min-height: 480px;
    }

    .bento-floating {
        width: 380px;
        right: -30px;
    }

    .mali-bento-dark {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bento-ui-mock {
        margin-top: 10px;
    }
}

/* -------------------------------------
   Global Mobile Menu Toggle Settings
-------------------------------------- */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 991px) {
    .navbar .container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.04);
        color: #121c3d;
        /* Black/Dark color for standard white navbars */
        order: 2;
        cursor: pointer;
        transition: background 0.2s;
    }

    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.08);
    }

    .nav-logo {
        order: 1;
    }

    .nav-actions {
        order: 3;
        margin-left: auto;
    }
}


#error-404 {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#error-404 .center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#error-404 .error {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
}

#error-404 .number {
    font-weight: 900;
    font-size: 15rem;
    line-height: 1;
    color: var(--primary);
}

#error-404 .illustration {
    position: relative;
    width: 12.2rem;
    margin: 0 2.1rem;
}

#error-404 .circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12.2rem;
    height: 11.4rem;
    border-radius: 50%;
    background-color: var(--primary);
}

#error-404 .clip {
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    width: 12.5rem;
    height: 15rem;
    border-radius: 0 0 50% 50%;
}

#error-404 .letter {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 26px auto 0;
    max-width: 550px;
    min-height: 300px;
    padding: 24px;
    position: relative;
    width: 80%;
}

#error-404 .letter:before,
#error-404 .letter:after {
    content: "";
    height: 98%;
    position: absolute;
    width: 100%;
    z-index: -1;
}

#error-404 .letter:before {
    background: #fafafa;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    left: -5px;
    top: 4px;
    transform: rotate(-2.5deg);
}

#error-404 .letter:after {
    background: #f6f6f6;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    right: -3px;
    top: 1px;
    transform: rotate(1.4deg);
}

#error-404 .face {
    position: relative;
    margin-top: 2.3rem;
}

#error-404 .eyes {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4.6rem;
    height: 0.8rem;
    transform: translateX(-50%);
}

#error-404 .eye {
    position: absolute;
    bottom: 0;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: var(--primary);
    animation-name: eye;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

#error-404 .eye-left {
    left: 0;
}

#error-404 .eye-right {
    right: 0;
}

@keyframes eye {
    0% { height: 0.8rem; }
    50% { height: 0.8rem; }
    52% { height: 0.1rem; }
    54% { height: 0.8rem; }
    100% { height: 0.8rem; }
}

#error-404 .rosyCheeks {
    position: absolute;
    top: 2rem;
    width: 1rem;
    height: 0.2rem;
    border-radius: 50%;
    background-color: var(--secondary);
}

#error-404 .rosyCheeks-left {
    left: 0.4rem;
}

#error-404 .rosyCheeks-right {
    right: 0.4rem;
}

#error-404 .mouth {
    position: absolute;
    top: 3.1rem;
    left: 50%;
    width: 1.6rem;
    height: 0.2rem;
    border-radius: 0.1rem;
    transform: translateX(-50%);
    background-color: var(--primary);
}

#error-404 .text {
    margin-top: 5rem;
    max-width: 500px;
    line-height: 1.6;
}


#home_about {
    display: none;
}
