@font-face {
    font-family: 'Albert Sans';
    src: url('../fonts/AlbertSans-Regular.woff2') format('woff2'),
        url('../fonts/AlbertSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.animated-title {
    font-family: 'Albert Sans', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animated-description {
    font-family: 'Albert Sans', sans-serif;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.title-highlight {
    background: linear-gradient(120deg, #4CAF50 0%, #2196F3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}


.errorPage {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.errorContent {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.errorImageArea {
    flex: 1;
    position: relative;
    text-align: center;
}

.errorNumber {
    font-size: 180px;
    font-weight: 800;
    background: linear-gradient(135deg, #27BB4E 0%, #20a043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: "Albert Sans", sans-serif;
    position: relative;
    z-index: 2;
}

.errorIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.errorIcon .icon {
    width: 120px;
    height: 120px;
    fill: #27BB4E;
    opacity: 0.1;
}

.errorBlur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    opacity: 0.3;
    z-index: 0;
}

.errorInfo {
    flex: 1;
}

.errorTitle {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: "Albert Sans", sans-serif;
    display: flex;
    align-items: center;
    gap: 16px;
}

.errorTitle .icon {
    width: 36px;
    height: 36px;
    fill: #27BB4E;
}

.errorDescription {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: "Albert Sans", sans-serif;
}

.errorButtons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.primaryButton {
    background: linear-gradient(135deg, #27BB4E 0%, #20a043 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(39, 187, 78, 0.3);
}

.primaryButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 187, 78, 0.4);
    color: white;
}

.primaryButton .icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.secondaryButton {
    background: transparent;
    color: #27BB4E;
    padding: 16px 32px;
    border: 2px solid #27BB4E;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondaryButton:hover {
    background: #27BB4E;
    color: white;
    transform: translateY(-2px);
}

.helpLinks {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.helpTitle {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: "Albert Sans", sans-serif;
}

.linkGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.helpLink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.helpLink:hover {
    background: #f8f9fa;
    border-color: #27BB4E;
    color: #27BB4E;
    transform: translateY(-2px);
}

.helpLink .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.helpLink span {
    font-weight: 500;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .errorContent {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .errorNumber {
        font-size: 120px;
    }

    .errorTitle {
        font-size: 32px;
        justify-content: center;
    }

    .errorButtons {
        flex-direction: column;
        align-items: center;
    }

    .primaryButton,
    .secondaryButton {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .errorPage {
        padding: 40px 0;
    }

    .errorNumber {
        font-size: 100px;
    }

    .errorTitle {
        font-size: 28px;
    }

    .errorDescription {
        font-size: 16px;
    }

    .linkGrid {
        grid-template-columns: 1fr;
    }
}


/* Header Buttons */
.headerBtn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    line-height: 1;
}

.headerBtn .icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.headerBtnPrimary {
    background: linear-gradient(135deg, #27BB4E 0%, #20a043 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 187, 78, 0.2);
    border: none;
}

.headerBtnPrimary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 187, 78, 0.3);
    color: white;
}

.headerBtnSecondary {
    background: transparent;
    color: #27BB4E;
    border: 1px solid #27BB4E;
}

.headerBtnSecondary:hover {
    background: #27BB4E;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
    background-color: #fff;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: rgba(85, 115, 125, 0.04);
    /* Indigo 50 equivalent */
    border-radius: 50%;
    filter: blur(100px);
    margin-top: -250px;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    animation: fadeInUp 0.5s ease-out;
}

.hero-badge i {
    color: #4f46e5;
    /* Indigo 600 */
    font-size: 18px;
}

.hero-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #4f46e5;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    color: #62737d;
    /* Slate 900 */
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 48px;
        line-height: 1.1;
    }
}

.hero-gradient-text {
    background: linear-gradient(to right, #38c960, #28bb4e);
    /* Indigo 600 to Violet 600 */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 18px;
    color: #64748b;
    /* Slate 500 */
    font-weight: 500;
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto 40px auto;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-cta-btn {
    padding: 23px 40px;
    background-color: #0f172a;
    /* Slate 900 */
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta-btn:hover {
    background-color: #1e293b;
    /* Slate 800 */
    transform: translateY(-4px);
    color: white;
}

.hero-cta-note {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    /* Slate 400 */
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-image-frame {
    background: white;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
    padding: 4px;
    overflow: hidden;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    background-color: #f8fafc;
    display: block;
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px 24px;
    display: none;
    /* Hidden on mobile by default */
    align-items: center;
    gap: 16px;
    z-index: 20;
    animation: bounce 6s infinite ease-in-out;
}

@media (min-width: 992px) {
    .hero-float-card {
        display: flex;
    }
}

.hero-float-right {
    top: 48px;
    right: -32px;
}

.hero-float-left {
    bottom: 64px;
    left: -32px;
    background: rgba(15, 23, 42, 0.95);
    /* Slate 900 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    animation-duration: 8s;
}

.hero-icon-box {
    position: relative;
}

.hero-icon-main {
    width: 48px;
    height: 48px;
    background-color: #10b981;
    /* Emerald 500 */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.hero-icon-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #10b981;
}

.hero-card-content {
    text-align: left;
}

.hero-card-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.hero-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.hero-card-value {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    /* Emerald 600 */
    margin-top: 2px;
}

/* Left Float Card Specifics */
.hero-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}

.hero-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-users-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-avatars {
    display: flex;
}

.hero-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #1e293b;
    margin-left: -12px;
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-user-count {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.hero-user-count span {
    font-weight: 400;
    color: #64748b;
    margin-left: 4px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Icons Fix */
i.bx {
    line-height: 1;
}

/* Modern Footer Styles (Ported from Tailwind) */
.pf-footer {
    padding-top: 4rem;
    /* Reduced for mobile */
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    /* slate-100 */
    font-family: 'Albert Sans', sans-serif;
}

@media (min-width: 768px) {
    .pf-footer {
        padding-top: 6rem;
    }
}

.pf-footer-container {
    max-width: 1435px;
    margin: 0 auto;
}

/* Footer CTA Section */
.pf-footer-cta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    .pf-footer-cta {
        flex-direction: row;
        align-items: flex-end;
    }
}

.pf-cta-content {
    max-width: 42rem;
}

.pf-cta-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pf-cta-logo img {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.pf-cta-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #0f172a;
    /* slate-900 */
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pf-cta-title {
        font-size: 3rem;
    }
}

.pf-cta-title span {
    color: #27BB4E;
    /* Brand Green */
}

.pf-cta-desc {
    font-size: 1.125rem;
    color: #64748b;
    /* slate-500 */
    font-weight: 500;
}

.pf-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .pf-cta-buttons {
        flex-direction: row;
        width: auto;
    }
}

.pf-btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 640px) {
    .pf-btn {
        width: auto;
    }
}

.pf-btn-primary {
    background-color: #27BB4E;
    /* Brand Green */
    color: white;
    box-shadow: 0 20px 25px -5px rgba(39, 187, 78, 0.2);
    border: none;
}

.pf-btn-primary:hover {
    background-color: #20a043;
    /* Brand Green Darker */
    transform: translateY(-4px);
    color: white;
}

.pf-btn-outline {
    background-color: white;
    color: #334155;
    /* slate-700 */
    border: 1px solid #e2e8f0;
    /* slate-200 */
}

.pf-btn-outline:hover {
    border-color: #27BB4E;
    /* Brand Green */
    color: #27BB4E;
    /* Brand Green */
}

/* Footer Links Grid */
.pf-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
    /* Tighter horizontal gap for mobile */
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .pf-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .pf-footer-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 3rem;
    }
}

.pf-footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    /* Center items on mobile */
    text-align: center;
    /* Center text on mobile */
}

@media (min-width: 1024px) {
    .pf-footer-col {
        align-items: flex-start;
        /* Left align on desktop */
        text-align: left;
    }
}

/* Brand column spans full width on mobile for better text layout */
.pf-brand-col {
    grid-column: span 2;
    align-items: center;
}

@media (min-width: 768px) {
    .pf-brand-col {
        grid-column: auto;
        /* Reset spread */
    }
}

@media (min-width: 1024px) {
    .pf-brand-col {
        align-items: flex-start;
    }

    .pf-footer-logo {
        margin-left: 0;
        margin-right: 0;
    }
}

.pf-footer-heading {
    font-weight: 700;
    color: #0f172a;
    /* slate-900 */
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pf-footer-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    /* slate-500 */
    transition: color 0.2s;
    text-decoration: none;
}

.pf-footer-link:hover {
    color: #27BB4E;
    /* Brand Green */
}

.pf-badge-hiring {
    font-size: 10px;
    font-weight: 700;
    color: #27BB4E;
    background-color: #e8f5e9;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* Downloads & Socials Row */
.pf-footer-social-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* Center on mobile */
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .pf-footer-social-row {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

.pf-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    /* Center on mobile */
}

@media (min-width: 640px) {
    .pf-app-downloads {
        flex-direction: row;
        align-items: center;
    }
}

.pf-download-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}

.pf-store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #f8fafc;
    /* slate-50 */
    border: 1px solid #e2e8f0;
    /* slate-200 */
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.pf-store-btn:hover {
    background-color: #f1f5f9;
    /* slate-100 */
}

.pf-store-icon {
    font-size: 1.25rem;
    color: #334155;
    /* slate-700 */
}

.pf-store-btn:hover .pf-store-icon,
.pf-store-btn:hover .pf-store-text-main {
    color: black;
}

.pf-store-text-sub {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    /* slate-400 */
    line-height: 1;
}

.pf-store-text-main {
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    /* slate-700 */
}

.pf-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pf-social-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #f8fafc;
    color: #64748b;
    font-size: 1.25rem;
    transition: all 0.2s;
    text-decoration: none;
}

.pf-social-btn:hover {
    color: white;
}

.pf-social-btn.twitter:hover {
    background-color: #0f172a;
}

/* Hide visual on mobile to clean up layout */
@media (max-width: 1023px) {
    .pf-cta-visual {
        display: none;
    }

    .pf-footer-cta {
        align-items: center;
        text-align: center;
    }

    .pf-cta-content {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .pf-cta-buttons {
        align-items: center;
    }

    .pf-footer-btn-primary,
    .pf-footer-btn-white {
        width: 100%;
        justify-content: center;
        display: flex;
    }
}

.pf-social-btn.instagram:hover {
    background-color: #f43f5e;
}

.pf-social-btn.linkedin:hover {
    background-color: #1d4ed8;
}

.pf-social-btn.youtube:hover {
    background-color: #dc2626;
}

/* Bottom Legal Row */
.pf-footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pf-footer-bottom {
        flex-direction: row;
    }
}

.pf-lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #475569;
    border: none;
    background: none;
    cursor: pointer;
}

.pf-lang-switch:hover {
    color: #0f172a;
}

.pf-legal-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pf-legal-row {
        flex-direction: row;
        gap: 2rem;
    }
}

.pf-copyright {
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 500;
    color: #94a3b8;
    /* slate-400 */
}

.pf-legal-links {
    display: flex;
    gap: 1.5rem;
}

.pf-legal-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
}

.pf-legal-link:hover {
    color: #0f172a;
}


/* Scoped Styles for Testimonials */
.pf-testimonials-section {
    padding: 6rem 0;
    overflow: hidden;
    font-family: 'Albert Sans', sans-serif;
}

.pf-testi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 4rem;
}

/* Header */
.pf-testi-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.pf-testi-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pf-testi-label {
    font-weight: 700;
    color: #0f172a;
    /* text-slate-900 */
}

.pf-stars {
    display: flex;
    color: #10b981;
    /* text-emerald-500 */
    font-size: 1.125rem;
}

.pf-testi-title {
    font-size: 2.25rem;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .pf-testi-title {
        font-size: 3rem;
    }
}

/* Marquee Slider */
.pf-marquee-wrapper {
    display: flex;
    overflow: hidden;
    gap: 2rem;
    padding-bottom: 2.5rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.pf-marquee-track {
    display: flex;
    gap: 2rem;
    animation: pfLoopScroll 40s linear infinite;
    /* Pause on hover optional */
}

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

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

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

/* Card */
.pf-testi-card {
    width: 400px;
    height: 420px;
    flex-shrink: 0;
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    /* rounded-[2rem] */
    border: 1px solid #f1f5f9;
    /* border-slate-100 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.pf-testi-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Card Icon */
.pf-card-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pf-icon-indigo {
    background-color: #4f46e5;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

.pf-icon-rose {
    background-color: #f43f5e;
    box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.2);
}

.pf-icon-emerald {
    background-color: #10b981;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.pf-icon-amber {
    background-color: #f59e0b;
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2);
}

.pf-icon-sky {
    background-color: #0ea5e9;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
}

/* Card Content */
.pf-card-text {
    color: #1e293b;
    /* slate-800 */
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

/* Tags */
.pf-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pf-tag {
    padding: 0.25rem 0.75rem;
    background: #f8fafc;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    border: 1px solid #f1f5f9;
}

/* User Info */
.pf-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f8fafc;
}

.pf-user-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    object-fit: cover;
}

.pf-user-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.875rem;
}

.pf-user-role {
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 500;
}


.pf-pricing-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Header */
.pf-pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pf-pricing-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    font-family: 'Albert Sans', sans-serif;
    line-height: 1.2;
}

.pf-pricing-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    font-weight: 500;
}

.pf-highlight {
    color: #4f46e5;
    font-weight: 700;
}

/* Billing Toggle (Tab Style) */
.pf-billing-toggle {
    display: inline-flex;
    background: #f1f5f9;
    /* slate-100 */
    padding: 0.375rem;
    border-radius: 0.5rem;
    /* rounded-lg */
    margin-top: 2rem;
}

.pf-billing-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    /* rounded-md */
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    /* slate-500 */
    cursor: pointer;
    transition: all 0.2s;
}

.pf-billing-btn.active {
    background: white;
    color: #0f172a;
    /* slate-900 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pf-billing-btn:hover:not(.active) {
    color: #334155;
}

/* Grid */
.pf-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pf-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .pf-plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card base style */
.pf-plan-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible !important;
    height: 100%;
    padding: 0;
}

/* Enterprise Black Card Styling */
.pf-plan-card.enterprise {
    background: #0f172a !important;
    /* Slate 900 */
    border-color: #1e293b !important;
    color: white !important;
}

.pf-plan-card.enterprise .pf-plan-name {
    color: white !important;
}

.pf-plan-card.enterprise .pf-plan-desc {
    color: #94a3b8 !important;
    /* Slate 400 */
}

.pf-plan-card.enterprise .pf-feature-text {
    color: #f1f5f9 !important;
    /* Slate 100 */
}

.pf-plan-card.enterprise .pf-feature-text strong {
    color: white !important;
}

.pf-plan-card.enterprise .pf-check {
    background: transparent !important;
    color: #818cf8 !important;
    /* Lighter indigo for better contrast on dark */
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    font-size: 1.25rem !important;
}

.pf-plan-card.enterprise .pf-select-btn {
    background: white !important;
    color: #0f172a !important;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1) !important;
}

.pf-plan-card.enterprise .pf-select-btn:hover {
    background: #f1f5f9 !important;
    transform: translateY(-2px) !important;
}

.pf-plan-card.enterprise .pf-price-wrapper {
    border-top-color: #1e293b !important;
    border-bottom-color: #1e293b !important;
}

.pf-enterprise-tag {
    font-size: 2.25rem !important;
    font-weight: 900 !important;
    color: white !important;
    letter-spacing: -1px !important;
    line-height: 1 !important;
}

.pf-enterprise-sub {
    font-size: 0.875rem !important;
    color: #94a3b8 !important;
    margin-top: 8px !important;
    font-weight: 600 !important;
}

.pf-plan-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Popular Card */
.pf-plan-card.popular {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

/* Billing Toggle (Tab Style) */
.pf-billing-toggle {
    display: inline-flex;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: 9999px;
    margin-top: 2rem;
    position: relative;
}

.pf-billing-btn {
    border: none;
    background: transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pf-billing-btn.active {
    background: white;
    color: #4f46e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pf-billing-btn:hover:not(.active) {
    color: #1e293b;
}

.pf-popular-header {
    background: #4f46e5;
    color: white;
    text-align: center;
    padding: 0.625rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pf-card-body {
    padding: 2rem 1.5rem;
    /* Consistent padding for all cards */
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Content */
.pf-discount-badge {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 0.35rem 1.25rem !important;
    border-radius: 9999px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    background: #e1ff8d !important;
    color: #0f172a !important;
    z-index: 10 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    white-space: nowrap !important;
}

.pf-plan-header-area {
    height: 140px;
    /* Increased height for badges + name + desc */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pf-plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pf-plan-name i {
    font-size: 1.5rem;
    color: #6366f1;
}

.pf-plan-desc {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Pricing */
.pf-price-wrapper {
    margin-bottom: 1.5rem;
    height: 140px;
    /* Rigorously fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.pf-old-price {
    text-decoration: line-through;
    color: #94a3b8;
    /* slate-400 */
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.125rem;
    min-height: 1rem;
}

.pf-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pf-currency {
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
}

.pf-amount {
    font-size: 2.5rem;
    /* 5xl */
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1;
}

.pf-period {
    color: #334155;
    font-weight: 700;
    font-size: 1.125rem;
    /* lg */
}

.pf-bonus-text {
    color: #059669;
    /* emerald-600 for better feedback */
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Buttons */
.pf-select-btn {
    width: 100%;
    padding: 1.25rem;
    border-radius: 0.5rem;
    /* rounded-lg */
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin-bottom: 2rem;
    cursor: pointer;
}


/* Popular Plan Button: Solid Indigo */
.pf-select-btn.popular {
    background: #4f46e5;
    /* indigo-600 */
    border: 2px solid #4f46e5;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1);
}

.pf-select-btn.popular:hover {
    background: #4338ca;
    /* indigo-700 */
    border-color: #4338ca;
    transform: translateY(-1px);
}

.pf-plan-features-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

/* Features */
.pf-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
}

.pf-check {
    color: #22c55e;
    /* green-500 */
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pf-feature-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    /* slate-600 */
    line-height: 1.90;
}

.pf-installment-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.2);
    border: 1px solid #fcd34d;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 0.75rem;
}

/* Minimal Limits Row - Organized as Grid */
.pf-limits-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.pf-limit-box {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.25rem;
}

.pf-limit-box i {
    font-size: 1.1rem;
    color: #6366f1;
    /* Indigo to match theme */
    width: 20px;
    text-align: center;
}

.pf-limit-num {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
}

.pf-limit-txt {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
}

/* Premium Plan (Dark) */
.pf-plan-card.premium,
.pf-th-card.premium {
    background: #0f172a !important;
    color: white !important;
    border: 1px solid #6366f1 !important;
    position: relative;
    overflow: hidden;
}

.pf-plan-card.premium .pf-plan-name,
.pf-plan-card.premium .pf-amount,
.pf-plan-card.premium .pf-currency,
.pf-plan-card.premium .pf-period,
.pf-plan-card.premium .pf-feature-text,
.pf-plan-card.premium .pf-plan-features-title,
.pf-plan-card.premium .pf-limit-num,
.pf-th-card.premium .pf-th-name,
.pf-th-card.premium .pf-th-price-main {
    color: white !important;
}

.pf-plan-card.premium .pf-plan-desc,
.pf-plan-card.premium .pf-limit-txt {
    color: #94a3b8 !important;
}

.pf-plan-card.premium .pf-limit-box {
    background: rgba(30, 41, 59, 0.5);
    border-color: #334155;
}

.pf-plan-card.premium .pf-popular-header {
    background: #6366f1 !important;
    color: white !important;
}

.pf-plan-card.premium .pf-select-btn,
.pf-th-card.premium .pf-th-btn {
    background: #6366f1 !important;
    color: white !important;
    border: none !important;
}

.pf-th-card {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    border: 1px solid transparent;
}

/* Comparison Table Premium Style */
.pf-th-card.premium {
    background: #0f172a;
    color: white;
    padding: 24px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pf-th-card.premium .pf-th-name,
.pf-th-card.premium .pf-th-price-main,
.pf-th-card.premium .pf-th-period-sm {
    color: white !important;
}

.pf-th-card.premium .pf-th-btn {
    background: #6366f1;
    color: white;
    border: none;
    position: relative;
    z-index: 2;
}

.pf-th-card.premium .pf-th-btn:hover {
    background: #4f46e5;
}

.pf-feature-bold {
    font-weight: 700;
    color: #334155;
}

/* slate-700 */

.pf-new-badge {
    background: #e0e7ff;
    color: #4f46e5;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 0.25rem;
}

.pf-toggle-more {
    background: none;
    border: none;
    padding: 0;
    color: #94a3b8;
    /* slate-400 */
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    transition: color 0.2s;
}

.pf-toggle-more:hover {
    color: #4f46e5;
}

.pf-toggle-more i {
    font-size: 1.25rem;
}

/* Comparison Table Section (Restored) */
.pf-comparison-section {
    margin-top: 4rem;
    text-align: center;
}

.pf-compare-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #0f172a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.pf-compare-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background: #f8fafc;
    text-decoration: none;
}

.pf-comparison-table-wrapper {
    margin-top: 2rem;
    overflow-x: auto;
    display: none;
    /* Hidden by default */
    background: white;
    border-radius: 1.5rem;
}

.pf-comparison-table-wrapper.active {
    display: block;
}

.pf-comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pf-comp-table th,
.pf-comp-table td {
    padding: 1.5rem 1rem;
    /* Increased row height */
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s;
}

/* Hover effect for rows */
.pf-comp-table tbody tr:hover td {
    background-color: #f8fafc;
}

/* Center align all columns except the first one (Features list) */
.pf-comp-table th:not(:first-child),
.pf-comp-table td:not(:first-child) {
    text-align: center;
}

.pf-comp-table th {
    font-weight: 700;
    color: #0f172a;
}

.pf-comp-table td {
    color: #475569;
    font-size: 0.875rem;
}

/* Enlarge and center icons */
.pf-comp-check {
    color: #22c55e;
    font-size: 1.75rem;
    /* Increased from 1.5rem */
    display: inline-block;
}

.pf-comp-dash {
    color: #cbd5e1;
    font-size: 1.75rem;
    /* Increased from 1.5rem */
    display: inline-block;
}

/* Sticky Header */
.pf-comp-table thead th {
    position: sticky;
    top: 0;
    background: white;
    z-index: 40;
    /* Higher z-index */
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 1rem;
    vertical-align: bottom;
    /* Align content to bottom */
    border-top: 1px solid #f1f5f9;
}

.pf-header-row td {
    background: #f8fafc !important;
    padding: 1rem 1.5rem !important;
    border-bottom: 2px solid #e2e8f0 !important;
    text-align: left !important;
}

.pf-header-row td span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e293b;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.pf-header-row td i {
    font-size: 1.25rem;
    color: #4f46e5;
}

/* Fix Sticky Overflow Context on Desktop */
@media (min-width: 1024px) {
    .pf-comparison-table-wrapper {
        overflow: visible !important;
    }
}

.pf-section-closed .pf-feature-row {
    display: none !important;
}

.pf-header-row {
    cursor: pointer !important;
}

.pf-section-toggle-icon {
    margin-left: auto !important;
    transition: transform 0.3s ease !important;
}

.pf-comp-search-box {
    position: relative;
}

.pf-comp-search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s;
    background: #f8fafc;
}

.pf-comp-search-input:focus {
    background: white;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.pf-comp-search-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.25rem;
}

/* Header Plan Details */
.pf-th-plan-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    /* slate-500 */
    margin-bottom: 0.25rem;
    display: block;
}

.pf-th-price-block {
    margin-bottom: 1rem;
}

.pf-th-price-lg {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.pf-th-period {
    font-size: 0.75rem;
    color: #64748b;
}

.pf-th-yearly-sub {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: line-through;
    display: block;
    margin-top: 0.125rem;
}

.pf-th-badge {
    display: inline-block;
    background: #6366f1;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 99px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.pf-th-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    background: white;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    margin-top: 1rem;
}

.pf-th-btn:hover {
    border-color: #4f46e5;
    background: #f8fafc;
    color: #4f46e5;
}

.pf-th-btn.dark {
    background: #0f172a;
    border-color: #0f172a;
    color: white;
}

.pf-th-btn.dark:hover {
    background: #1e293b;
}

/* Modern Help Card Design */
.helpContent {
    padding-bottom: 4rem;
}

.pf-help-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #e2e8f0;
    /* Slate 200 */
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    min-height: 240px;
    /* Ensure consistent height */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.pf-help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border-color: #cbd5e1;
    /* Slate 300 */
}

/* Icon Styling */
.pf-help-card .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #eff6ff;
    /* Blue 50 */
    color: #4f46e5;
    /* Indigo 600 */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.pf-help-card:hover .icon-wrapper {
    background-color: #4f46e5;
    color: white;
    transform: scale(1.1) rotate(-3deg);
}

/* Typography */
.pf-help-card .category-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    /* Slate 900 */
    margin-bottom: auto;
    /* Push action to bottom */
    line-height: 1.4;
}

/* Action Link (Bottom) */
.pf-help-card .card-action {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6366f1;
    /* Indigo 500 */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.pf-help-card:hover .card-action {
    opacity: 1;
    gap: 0.75rem;
    /* Slide arrow */
}

/* Teklif Sayfası - Hero Section */
.pf-hero-centered {
    padding: 10rem 0 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Animated Grid Background */
.pf-hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    background-image:
        linear-gradient(to right, rgba(140, 92, 251, 0.12) 1.5px, transparent 1.5px),
        linear-gradient(to bottom, rgba(140, 92, 251, 0.12) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 95%);
    animation: gridScroll 40s linear infinite;
}

@keyframes gridScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

.pf-hero-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.pf-hero-title-c {
    font-family: 'Albert Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.1s;
}

.pf-hero-title-c span {
    background: linear-gradient(to right, #111827 20%, #8C5CFB 40%, #8C5CFB 60%, #111827 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.pf-hero-desc-c {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

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

/* Checkmark Items */
.pf-hero-proof-c {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

.pf-proof-item-c {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

.pf-proof-item-c i {
    color: #111827;
    font-size: 1.125rem;
}

/* Pill Buttons */
.pf-hero-btns-c {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.pf-btn-tour {
    background: #8b5cf6;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.pf-btn-trial {
    background: #111827;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.pf-btn-tour:hover,
.pf-btn-trial:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Bottom Mockup Container */
/* High-Fidelity Modern Hero Mockup (Browser Style) */
.pf-hero-mockup-c {
    max-width: 1040px;
    margin: 4rem auto 0;
    position: relative;
    perspective: 2000px;
    z-index: 10;
}

.pf-mockup-browser {
    background: #fff;
    border-radius: 1.25rem 1.25rem 0 0;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: rotateX(5deg) translateY(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    border-bottom: none;
}

.pf-hero-mockup-c:hover .pf-mockup-browser {
    transform: rotateX(2deg) translateY(-10px);
}

.pf-browser-header {
    height: 44px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    position: relative;
}

.pf-browser-dots {
    display: flex;
    gap: 6px;
}

.pf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.8;
}

.pf-dot.red {
    background: #ff5f56;
}

.pf-dot.yellow {
    background: #ffbd2e;
}

.pf-dot.green {
    background: #27c93f;
}

.pf-browser-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.2rem 2rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
    width: 300px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.pf-mockup-content-c {
    background: #f1f5f9;
    position: relative;
    aspect-ratio: 16 / 10;
}

.pf-mockup-content-c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

/* Floating High-Fidelity Widgets */
.pf-hero-widget {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    padding: 1rem;
    z-index: 20;
    transition: all 0.4s ease;
}

.pf-widget-approved {
    top: 20%;
    right: -60px;
    width: 240px;
    border-left: 4px solid #10b981;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pf-widget-viewing {
    bottom: 25%;
    left: -40px;
    padding: 0.75rem 1.25rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4f46e5;
}

.pf-widget-viewing i {
    animation: pf-pulse-subtle 2s infinite;
}

.pf-widget-action {
    bottom: 10%;
    right: 40px;
    background: #1e293b;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1200px) {
    .pf-hero-widget {
        display: none;
    }

    .pf-hero-mockup-c {
        padding: 0 1.5rem;
    }
}

.pf-mockup-gradient-c {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(139, 92, 246, 0.15), transparent 70%);
}

.pf-mockup-content-c {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pf-mockup-content-c i {
    font-size: 4rem;
}

@media (max-width: 768px) {
    .pf-hero-centered {
        padding-top: 6rem;
    }

    .pf-hero-proof-c {
        gap: 1rem;
    }

    .pf-hero-btns-c {
        flex-direction: column;
        align-items: stretch;
        padding: 0 2rem;
    }
}

/* Teklif Sayfası - Proposal Features Grid */
.pf-hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .pf-hero-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pf-hf-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pf-hf-item:hover {
    transform: translateY(-5px);
    border-color: #8C5CFB;
    box-shadow: 0 20px 40px -10px rgba(140, 92, 251, 0.1);
}

.pf-hf-icon {
    width: 40px;
    height: 40px;
    background: #f5f3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #8C5CFB;
    font-size: 1.25rem;
}

.pf-hf-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.pf-hf-desc {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Teklif Sayfası - Features Section */
.pf-features-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    /* Prevent horizontal scroll from overflowing swiper */
}

.pf-features-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.pf-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pf-features-title {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    padding-top: 20px;
}

.pf-features-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Grid Consolidated */
.pf-features-grid-outer {
    margin: 4rem auto;
    /* Ensure horizontal auto persists for centering */
}

.pf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .pf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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




.pf-feature-content {
    padding: 0 0.5rem;
}

.pf-feature-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}


/* One-to-One Visual Mockups */
/* Card 1: Cloud Upload */
.mock-upload-box {
    position: relative;
    width: 80%;
    height: 75%;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mock-cloud-icon {
    font-size: 4.5rem;
    color: #a855f7;
}

.mock-upload-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #fef08a;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mock-cursor {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 1.25rem;
    color: #111827;
}

/* Card 2: Workflow */
.mock-workflow-box {
    width: 85%;
    height: 75%;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2.5rem;
}

.mock-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.mock-delete-bar {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 0.875rem 1.25rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.mock-delete-btn {
    background: #fca5a5;
    color: #fff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
}

/* Card 3: Search */
.mock-search-list {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-search-item {
    background: #fff;
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.mock-search-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mock-search-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1.25rem;
}

.mock-progress-track {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.mock-progress-fill {
    height: 100%;
    border-radius: 3px;
}

/* Card 4: Team */
.mock-team-box {
    width: 85%;
    height: 75%;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mock-green-icon {
    width: 80px;
    height: 80px;
    background: #bef264;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #3f6212;
    margin-bottom: 4rem;
}

.mock-connect {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mock-avatars-row {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    align-items: center;
}

.mock-avatar-tiny {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mock-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

/* Card 5: Analytics */
.mock-analytics-box {
    width: 85%;
    height: 75%;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mock-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mock-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.mock-bar-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mock-bar-label {
    font-size: 0.8125rem;
    color: #9ca3af;
    width: 80px;
}

.mock-bar-line {
    flex: 1;
    height: 10px;
    border-radius: 5px;
    background: #f1f5f9;
}

.mock-bar-fill {
    height: 100%;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .pf-features-container {
        padding: 0 2rem;
    }



    .pf-features-grid,
    .pf-features-grid.bottom-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Teklif Sayfası - Integrations Section */
.pf-integrations-section {
    padding: 10rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pf-integrations-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
    position: relative;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pf-int-content {
    max-width: 650px;
    z-index: 10;
    position: relative;
}

.pf-int-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #111827;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
}

.pf-int-desc {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-inline: auto;
}

.pf-btn-int {
    background: #111827;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.pf-btn-int:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Minimal Logo Circles */
.pf-int-icons {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.pf-floating-icon {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid #f8fafc;
    transition: transform 0.3s ease;
}

.pf-floating-icon:hover {
    transform: scale(1.1);
}

.pf-floating-icon img {
    width: 45%;
    height: 45%;
    object-fit: contain;
}

/* Precise Positions from Ref Image */
.icon-1 {
    top: 18%;
    left: 16%;
    width: 100px;
    height: 100px;
}

/* Google Meet */
.icon-2 {
    top: 38%;
    left: 10%;
    width: 90px;
    height: 90px;
}

/* Gmail */
.icon-3 {
    top: 35%;
    left: 24%;
    width: 85px;
    height: 85px;
}

/* Messenger */
.icon-4 {
    bottom: 25%;
    left: 15%;
    width: 105px;
    height: 105px;
}

/* Jira */
.icon-5 {
    bottom: 12%;
    left: 22%;
    width: 110px;
    height: 110px;
}

/* LV */
.icon-6 {
    bottom: 8%;
    left: 34%;
    width: 95px;
    height: 95px;
}

/* Edge */
.icon-7 {
    bottom: 8%;
    right: 35%;
    width: 100px;
    height: 100px;
}

/* Microsoft */
.icon-8 {
    bottom: 10%;
    right: 24%;
    width: 115px;
    height: 115px;
}

/* Figma */
.icon-9 {
    bottom: 30%;
    right: 18%;
    width: 95px;
    height: 95px;
}

/* Teams */
.icon-10 {
    top: 40%;
    right: 10%;
    width: 95px;
    height: 95px;
}

/* Snapchat */
.icon-11 {
    top: 30%;
    right: 28%;
    width: 85px;
    height: 85px;
}

/* Slack */
.icon-12 {
    top: 18%;
    right: 20%;
    width: 100px;
    height: 100px;
}

/* Jira v2 */
.icon-13 {
    bottom: 35%;
    right: 32%;
    width: 90px;
    height: 90px;
}

/* Google G */
.icon-14 {
    top: 12%;
    right: 38%;
    width: 40px;
    height: 40px;
    display: none;
}

/* tiny filler */

@media (max-width: 1024px) {
    .pf-int-title {
        font-size: 2.5rem;
    }

    .pf-integrations-section {
        padding: 4rem 0;
    }

    .pf-int-icons {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 3rem;
        inset: auto;
        height: auto;
    }

    .pf-floating-icon {
        position: relative;
        width: 60px !important;
        height: 60px !important;
        inset: auto !important;
    }
}

/* Anasayfa - Hero Section Styles (from index.blade.php) */
.pf-hero-section {
    padding: 8rem 0 8rem;
    position: relative;
    overflow: visible;
    background-size: cover;
}

.pf-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.pf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.pf-hero-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: #62737d;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.pf-hero-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-hero-desc {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pf-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pf-btn-hero-primary {
    background: #4f46e5;
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pf-btn-hero-primary:hover {
    transform: translateY(-2px);
    background: #1e293b;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    color: #fff;
}

.pf-btn-hero-secondary {
    background: white;
    color: #0f172a;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pf-btn-hero-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pf-hero-visual {
    position: relative;
    margin-top: 2rem;
    perspective: 1000px;
}

.pf-hero-frame {
    background: #0f172a;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-hero-img {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 1px solid #334155;
}

.pf-float-widget {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 5;
    animation: pfFloat 6s ease-in-out infinite;
    border: 1px solid #e2e8f0;
}

.pf-float-left {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.pf-float-right {
    bottom: 20%;
    right: -20px;
    animation-delay: 3s;
}

@keyframes pfFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pf-hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1001;
    max-width: 1534px;
    margin: 0 auto;
}

.pf-line-x {
    position: absolute;
    top: -140px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1) 15%, rgba(15, 23, 42, 0.1) 85%, transparent);
}

.pf-line-y {
    position: absolute;
    top: -140px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.1) 15%, rgba(15, 23, 42, 0.1) 85%, transparent);
}

.pf-line-y.left {
    left: 40px;
}

.pf-line-y.right {
    right: 40px;
}

.pf-line-marker {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.2);
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.marker-tl {
    top: -140px;
    left: 40px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.marker-tr {
    top: -140px;
    right: 40px;
    transform: translate(50%, -50%) rotate(45deg);
}

@media (max-width: 1200px) {
    .pf-float-widget {
        display: none;
    }

    .pf-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .pf-hero-lines {
        display: none;
    }
}

/* Neden Payfoni - Features Styles (from whypayfoni.blade.php) */
.minimal-feature-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .minimal-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .minimal-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.minimal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border-color: #cbd5e1;
}

.minimal-card .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #f1f5f9;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.minimal-card:hover .icon-box {
    background-color: #4f46e5;
    color: white;
    transform: scale(1.1) rotate(-3deg);
}

.minimal-card .card-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.minimal-card .card-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Social Proof & Floating Widgets (from index.blade.php) */
.pf-trust-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.pf-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
    border-radius: 99px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.pf-trust-avatars {
    display: flex;
    margin-right: 0.5rem;
}

.pf-trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pf-trust-avatar:not(:first-child) {
    margin-left: -10px;
}

.pf-trust-avatar-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0f172a;
    color: white;
    border: 2px solid white;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pf-trust-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.pf-trust-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
    color: #F59E0B;
}

.pf-trust-stars i {
    font-size: 12px;
}

.pf-trust-text {
    font-size: 0.825rem;
    color: #475569;
    font-weight: 500;
}

.pf-widget-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pf-widget-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-widget-icon i {
    font-size: 1.25rem;
}

.pf-widget-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.pf-widget-icon.indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.pf-widget-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.pf-widget-value {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 700;
}

/* Pricing/Integration Header (from whypayfoni.blade.php) */
.pf-pricing-header {
    text-align: center;
    margin-top: 4rem;
}

.pf-pricing-badge {
    display: block;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.pf-pricing-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Features Scroll (from features_scroll.blade.php) */
.pf-scroll-features-section {
    padding: 0;
    background-color: #ffffff;
    font-family: 'Albert Sans', sans-serif;
}

.pf-scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.pf-scroll-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
}

.pf-testi-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.pf-scroll-row {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 1;
    transform: none;
    overflow: hidden;
}

.pf-scroll-row:nth-child(1) {
    z-index: 10;
}

.pf-scroll-row:nth-child(2) {
    z-index: 20;
}

.pf-scroll-row:nth-child(3) {
    z-index: 30;
}

.pf-scroll-row:nth-child(4) {
    z-index: 40;
}

.pf-scroll-row:nth-child(5) {
    z-index: 50;
}

.pf-scroll-row:last-child {
    margin-bottom: 0;
    box-shadow: none;
}

@media (min-width: 992px) {
    .pf-scroll-row {
        flex-direction: row;
        gap: 8rem;
    }

    .pf-scroll-row:nth-child(even) {
        flex-direction: row-reverse;
    }
}

@media (max-width: 991px) {
    .pf-scroll-row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem 0;
    }

    .pf-scroll-visual {
        margin-bottom: 3rem;
    }
}

.pf-scroll-visual {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pf-visual-card {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1/1;
    border-radius: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.pf-browser-mockup {
    width: 100%;
    height: auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.pf-browser-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.pf-browser-header {
    height: 24px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding-left: 12px;
    gap: 6px;
}

.pf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.pf-floating-icon-card {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    width: 80px;
    height: 80px;
    background: #0f172a;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    z-index: 20;
    transform: rotate(-5deg);
}

.pf-scroll-content {
    flex: 1;
    max-width: 480px;
    text-align: left;
}

.pf-content-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.pf-content-title {
    font-family: 'Albert Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.pf-content-desc {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.pf-link-group {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e2e8f0;
}

.pf-arrow-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    color: #0f172a;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.2s;
}

.pf-arrow-link:hover {
    color: #4f46e5;
}

.pf-arrow-link i {
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.pf-arrow-link:hover i {
    transform: translateX(4px);
}

/* Solutions Modern (from solutions_modern.blade.php) */
/* Solutions Modern (Refined & Premium) */
.pf-solutions-section {
    padding: 8rem 0;
    font-family: 'Albert Sans', sans-serif;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Subtle background glowing orb/blob for depth */
.pf-solutions-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(39, 187, 78, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.pf-solutions-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.pf-solutions-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 5rem;
}

.pf-header-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(39, 187, 78, 0.1);
    color: #27BB4E;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(39, 187, 78, 0.2);
}



@media (max-width: 768px) {
    .pf-solutions-title {
        font-size: 2.25rem;
    }
}

.pf-solutions-desc {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

.pf-solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .pf-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}



.pf-solutions-section::before {
    display: none;
}


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

.pf-header-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: #ffffff;
    color: #0f172a;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pf-solutions-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.pf-solutions-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.pf-solutions-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .pf-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .pf-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 4 Column Grid */
    }
}

/* COMPACT CARD STYLES */
.pf-feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 0;
    /* Compact padding */
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Minimized height */
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08);
    border-color: rgba(39, 187, 78, 0.3);
}

.pf-feature-badge {
    background: #f3f4f6;
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: none;
}

.pf-feature-title {
    font-size: 1.25rem;
    /* Much smaller title */
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-family: 'Albert Sans', sans-serif;
}

.pf-feature-desc {
    font-size: 0.9rem;
    /* Smaller desc */
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pf-feature-list {
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* tighter gap */
}

.pf-feature-item {
    font-size: 0.85rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.pf-check-icon {
    color: #27BB4E;
    font-size: 1rem;
    margin-top: 2px;
}

.pf-feature-link {
    color: #27BB4E;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pf-feature-link:hover {
    text-decoration: underline;
}

/* COMPACT VISUAL AREA */
.pf-feature-visual {
    margin-top: auto;
    width: calc(100% + 3rem);
    /* Matches 1.5rem padding x 2 */
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    /* Small visual area */
    position: relative;
    border-top: 1px solid #f3f4f6;
}

.pf-feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.5s ease;
}

.pf-feature-card:hover .pf-feature-img {
    transform: scale(1.03);
}



/* Dynamic Plans (from dynamic_plans.blade.php) */
.pricing-container {
    font-family: 'Albert Sans', sans-serif;
    width: 100%;
    max-width: 100% !important;
    padding: 4rem 1rem;
    box-sizing: border-box;
}

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

.pricing-wrapper {
    max-width: 1435px;
    margin: 0 auto;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .pricing-header {
        flex-direction: row;
        text-align: left;
    }
}

.pricing-title {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.pricing-subtitle {
    color: #64748b;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.5;
    max-width: 600px;
}

.billing-toggle {
    display: inline-flex;
    background: #fff;
    padding: 0.375rem;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.billing-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #64748b;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    outline: none;
}

.billing-btn:hover {
    color: #334155;
}

.billing-btn.active {
    background: #0f172a;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}

.discount-badge {
    font-size: 0.625rem;
    background: #d1fae5;
    color: #047857;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plan-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: auto;
    overflow: hidden;
}

.plan-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.plan-card.popular {
    border: 2px solid #4f46e5;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
    z-index: 10;
    margin-top: -1.5rem;
}

@media (max-width: 1023px) {
    .plan-card.popular {
        margin-top: 0;
    }
}

.plan-card-body {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-card.popular .plan-card-body {
    padding-top: 2rem;
}

.popular-tag {
    background: #4f46e5;
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    width: 100%;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.plan-desc {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
    min-height: 3rem;
    margin-bottom: 2rem;
}

.price-area {
    margin-bottom: 2rem;
    min-height: 80px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.05em;
    line-height: 1;
}

.period {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    height: 1.25rem;
}

.free-months {
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    background: #ecfdf5;
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
}

.plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.plan-btn.primary {
    background: #4f46e5;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1), 0 2px 4px -1px rgba(79, 70, 229, 0.06);
}

.plan-btn.primary:hover {
    background: #4338ca;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

.plan-btn.secondary {
    background: white;
    border-color: #0f172a;
    color: #0f172a;
}

.plan-btn.secondary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.features-list-wrapper {
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.5;
}

.check-icon {
    color: #22c55e;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.limit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #334155;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.limit-icon {
    color: #94a3b8;
    font-size: 1.25rem;
}

.new-badge {
    background: #e0e7ff;
    color: #4f46e5;
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.toggle-features {
    background: none;
    border: none;
    padding: 0;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    transition: color 0.2s;
    width: 100%;
    justify-content: center;
}

.toggle-features:hover {
    color: #4f46e5;
}

.toggle-features i {
    font-size: 1.25rem;
}

/* Tahsilat Entegrasyon Sayfası (from tahsilat.blade.php) */
.integratedTypes {
    scroll-margin-top: 150px;
    padding-top: 20px;
}

.integration-tabs::-webkit-scrollbar {
    height: 4px;
}

.integration-tabs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.integration-tabs-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.pf-tab-btn {
    display: inline-flex;
    align-items: center;
    padding: 24px 60px;
    border-radius: 9999px;
    background-color: #f1f5f9;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    margin-right: 10px;
}

.pf-tab-btn:hover {
    background-color: #e2e8f0;
    color: #475569;
    transform: translateY(-1px);
}

.pf-tab-btn.active {
    background-color: #4f46e5;
    color: white;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Marquee / Carousel Styles (from tahsilat.blade.php) */
@keyframes loop-scroll {
    from {
        transform: translateX(0);
    }

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

.marquee-section {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.marquee-track-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: loop-scroll 40s linear infinite;
    width: max-content;
    padding: 1rem 0;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: default;
}

.marquee-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.marquee-item:hover .icon-box {
    transform: scale(1.1);
}

.icon-blur {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2);
    filter: blur(4px);
    border-radius: 9999px;
    transform: scale(0);
    transition: transform 0.5s;
}

.marquee-item:hover .icon-blur {
    transform: scale(1.5);
}

.icon-i {
    position: relative;
    z-index: 10;
}

.marquee-text {
    font-weight: 700;
    color: #334155;
    font-size: 0.875rem;
}

/* Color Utilities (from tahsilat.blade.php) */
.bg-red-500 {
    background-color: #ef4444;
}

.bg-purple-500 {
    background-color: #a855f7;
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-sky-500 {
    background-color: #0ea5e9;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.bg-rose-500 {
    background-color: #f43f5e;
}

.bg-sky-400 {
    background-color: #38bdf8;
}

.bg-indigo-600 {
    background-color: #4f46e5;
}

/* Hero Impact (from hero_whypayfoni.blade.php) */
.pf-hero-impact {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    font-family: 'Albert Sans', sans-serif;
}

.pf-impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pf-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.pf-orb-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: #e0e7ff;
}

.pf-orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #dbeafe;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 30px);
    }
}

.pf-impact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .pf-impact-container {
        grid-template-columns: 1fr 1fr;
    }
}

.pf-impact-content {
    text-align: center;
}

@media (min-width: 992px) {
    .pf-impact-content {
        text-align: left;
    }
}

.pf-impact-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    color: #4f46e5;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 99px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    animation: pfFadeInDown 0.8s ease-out;
    border: 1px solid #e2e8f0;
}

.pf-impact-title {
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.pf-impact-title span {
    color: #4f46e5;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .pf-impact-title {
        font-size: 3.75rem;
    }
}

.pf-impact-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.pf-impact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

@media (min-width: 640px) {
    .pf-impact-actions {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .pf-impact-actions {
        justify-content: flex-start;
    }
}

.pf-btn-impact-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #4f46e5;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.pf-btn-impact-primary:hover {
    transform: translateY(-2px);
    background-color: #4338ca;
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
    color: white;
}

.pf-impact-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    animation: pfFadeIn 1s ease-out 0.5s backwards;
}

.pf-cards-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.pf-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: hoverCard 6s ease-in-out infinite;
}

.pf-card-1 {
    top: 15%;
    right: 10%;
    z-index: 30;
    width: 240px;
    animation-delay: 0s;
}

.pf-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pf-icon-success {
    background: #dcfce7;
    color: #16a34a;
}

.pf-card-2 {
    top: 45%;
    left: 5%;
    z-index: 20;
    padding: 2rem;
    width: 200px;
    flex-direction: column;
    align-items: flex-start;
    animation-delay: -2s;
}

.pf-card-3 {
    bottom: 10%;
    right: 15%;
    z-index: 25;
    width: 260px;
    animation-delay: -4s;
}

.pf-icon-support {
    background: #fee2e2;
    color: #dc2626;
}

@keyframes hoverCard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

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

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

@keyframes pfFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pf-deco-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.pf-impact-card-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.9rem;
}

.pf-impact-card-meta {
    font-size: 0.8rem;
    color: #64748b;
}

.pf-impact-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.pf-impact-value {
    font-size: 2rem;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
}

.pf-impact-trend {
    font-size: 0.75rem;
    color: #22c55e;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

/* FAQ Modern (from faq_modern.blade.php) */
.pf-faq-modern-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    font-family: 'Albert Sans', sans-serif;
}

.pf-faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pf-faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pf-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.pf-faq-title {
    font-size: 1.875rem;
    line-height: 1.25;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 768px) {
    .pf-faq-title {
        font-size: 2.25rem;
    }
}

.pf-faq-desc {
    margin-top: 1rem;
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
}

.pf-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .pf-faq-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pf-faq-card {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pf-faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pf-faq-btn:hover {
    background-color: #f8fafc;
}

.pf-faq-question {
    font-weight: 500;
    color: #0f172a;
    font-size: 1.125rem;
    text-align: left;
}

.pf-faq-icon {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pf-faq-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.pf-faq-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.625;
}

.pf-faq-card.active .pf-faq-icon {
    transform: rotate(180deg);
    color: #4f46e5;
}

.pf-faq-card.active .pf-faq-icon::before {
    content: "\ecb4";
}

/* Dark Features Section (from features_dark.blade.php) */
.pf-dark-features-section {
    padding: 6rem 0;
    background-color: #100b26;
    color: white;
    font-family: 'Albert Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.pf-top-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 600px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(124, 58, 237, 0.25) 0%, rgba(16, 11, 38, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.pf-dark-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.pf-ai-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.pf-ai-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pf-ai-title {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.pf-ai-desc {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.pf-ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6d28d9;
    color: white;
    padding: 1rem 3rem;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pf-ai-btn:hover {
    background: #5b21b6;
    transform: scale(1.02);
    color: white;
}

.pf-banner-card {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border-radius: 1.5rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    margin-bottom: 8rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pf-banner-title {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    z-index: 2;
}

.pf-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.pf-features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (min-width: 992px) {
    .pf-features-layout {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.pf-feat-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pf-feat-icon-box i {
    font-size: 1.75rem;
    color: #a78bfa;
}

.pf-col-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: white;
}

.pf-acc-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.5rem 0;
    transition: all 0.3s;
}

.pf-acc-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pf-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    cursor: pointer;
}

.pf-acc-body {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: block;
}

.pf-acc-link {
    font-size: 0.9rem;
    color: #a78bfa;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.pf-acc-link:hover {
    text-decoration: underline;
}

.pf-toggle-icon {
    font-size: 1.25rem;
    color: white;
    font-weight: 300;
}

.pf-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .pf-stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pf-stat-box {
    background: #6d28d9;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    transition: transform 0.3s;
}

.pf-stat-box:hover {
    transform: translateY(-5px);
    background: #5b21b6;
}

.pf-stat-val {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1;
}

.pf-stat-txt {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.4;
}

/* Hero Modern (from hero_modern.blade.php) */
.pf-hero-modern-section {
    position: relative;
    padding: 8rem 0 4rem;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    text-align: center;
    font-family: 'Albert Sans', sans-serif;
}

.pf-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pf-hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
}

.pf-hc-1 {
    width: 400px;
    height: 400px;
}

.pf-hc-2 {
    width: 700px;
    height: 700px;
}

.pf-hc-3 {
    width: 1100px;
    height: 1100px;
    opacity: 0.5;
}

.pf-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pf-hero-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    color: #4c1d95;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(76, 29, 149, 0.1);
}

.pf-hero-modern-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    color: #62737d;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .pf-hero-modern-title {
        font-size: 4rem;
    }
}

.pf-hero-modern-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .pf-hero-modern-desc {
        font-size: 1.25rem;
    }
}

.pf-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .pf-hero-actions {
        flex-direction: row;
    }
}

.pf-hero-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.pf-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Modern Header (from header_modern.blade.php) */
.pf-modern-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.pf-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pf-logo img {
    height: 40px;
    width: auto;
}

.pf-nav {
    display: none;
}

@media (min-width: 992px) {
    .pf-nav {
        display: block;
    }
}

.pf-nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pf-nav-link {
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.pf-nav-link:hover {
    color: #4f46e5;
}

.pf-header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pf-login-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.95rem;
}

@media(min-width: 768px) {
    .pf-login-link {
        display: flex;
    }
}

.pf-login-link:hover {
    color: #4f46e5;
}

.pf-login-link i {
    font-size: 1.25rem;
}

.pf-header-btn-primary {
    background-color: #0f172a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.2s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.pf-header-btn-primary:hover {
    background-color: #1e293b;
    transform: translateY(-1px);
    color: white;
}

.pf-mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #0f172a;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 992px) {
    .pf-mobile-toggle {
        display: none;
    }
}

.pf-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.pf-mobile-menu.active {
    right: 0;
}

.pf-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.pf-close-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #64748b;
    cursor: pointer;
}

.pf-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pf-mobile-list a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    display: block;
}

.pf-mobile-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 0.5rem 0;
}

.pf-mobile-cta {
    color: #4f46e5 !important;
    font-weight: 700;
}

/* Footer CTA & Modal (from footer.blade.php) */
.pf-footer-cta-wrapper {
    margin-bottom: 4rem;
}

.pf-cta-card {
    background-color: #f5f3ff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #ede9fe;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

@media (min-width: 900px) {
    .pf-cta-card {
        flex-direction: row;
        text-align: left;
        padding: 4rem;
        justify-content: space-between;
        align-items: center;
        min-height: 374px;
    }

    .pf-cta-content {
        max-width: 50%;
        z-index: 10;
    }

    .pf-cta-visual {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 50%;
        pointer-events: none;
    }
}

.pf-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4c1d95;
}

.pf-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1e1b4b;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.pf-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 900px) {
    .pf-cta-buttons {
        justify-content: flex-start;
    }
}

.pf-footer-btn-primary {
    background-color: #4f46e5;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.4);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.pf-footer-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.5);
    background-color: #4338ca;
    color: white;
}

.pf-footer-btn-white {
    background-color: white;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.pf-footer-btn-white:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

@keyframes pfOrbit {
    from {
        transform: translateY(-50%) scale(1) rotate(0deg);
    }

    to {
        transform: translateY(-50%) scale(1) rotate(360deg);
    }
}

@keyframes pfCounterOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@media (min-width: 900px) {
    .pf-circle-wrapper {
        position: absolute;
        right: -10%;
        top: 50%;
        transform: translateY(-50%) scale(0.8);
        width: 800px;
        height: 800px;
        animation: pfOrbit 60s linear infinite;
        transform-origin: center center;
    }
}

@media (min-width: 1200px) {
    .pf-circle-wrapper {
        right: -5%;
    }
}

.pf-orbit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    animation: pfSpin 120s linear infinite;
}

@keyframes pfSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pfCounterSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.pf-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
}

.pf-c1 {
    width: 300px;
    height: 300px;
}

.pf-c2 {
    width: 500px;
    height: 500px;
}

.pf-c3 {
    width: 700px;
    height: 700px;
}

.pf-avatar-bubble {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: visible;
    background-color: #e2e8f0;
    animation: pfCounterSpin 120s linear infinite;
}

.pf-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.pf-avatar-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
}

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

    .pf-cta-card {
        min-height: auto;
        padding: 3rem 1.5rem;
    }
}

/* Footer Modal Styles */
.pf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: pfFadeIn 0.3s ease;
}

.pf-modal-container {
    background: white;
    width: 100%;
    max-width: 420px;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: pfSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.pf-modal-close:hover {
    color: #0f172a;
}

.pf-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pf-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-family: 'Albert Sans', sans-serif;
}

.pf-modal-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.4;
}

.pf-input-group {
    margin-bottom: 1rem;
    position: relative;
}

.pf-modal-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    color: #0f172a;
    transition: all 0.2s;
    outline: none;
    background: #f8fafc;
}

.pf-modal-input:focus {
    background: white;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.phone-group {
    display: flex;
    align-items: stretch;
}

.pf-flag-prefix {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 0.75rem 0 0 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.phone-input {
    border-radius: 0 0.75rem 0.75rem 0;
}

.pf-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    cursor: pointer;
    line-height: 1.4;
}

.pf-checkbox-label input {
    margin-top: 0.2rem;
    cursor: pointer;
}

.pf-modal-submit {
    width: 100%;
    background: #4f46e5;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.pf-modal-submit:hover {
    background: #4338ca;
}

@keyframes pfFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Pricing Plans Extra (from plans_hostinger.blade.php) */
.pf-pricing-label {
    display: block;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
}


.pf-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pf-plan-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pf-price-wrapper {
    margin-bottom: 1.5rem;
}

.pf-old-price {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.pf-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pf-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}


.pf-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pf-bonus-text {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pf-select-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 2rem;
}




.pf-select-btn.popular {
    background: #4f46e5;
    color: white;
}

.pf-select-btn.popular:hover {
    background: #4338ca;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.pf-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.pf-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
}

.pf-check {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.pf-feature-bold {
    color: #0f172a;
    font-weight: 700;
}

.pf-new-badge {
    display: inline-block;
    padding: 0.125rem 0.375rem;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    margin-left: 0.375rem;
    vertical-align: middle;
}

.pf-toggle-more {
    background: none;
    border: none;
    padding: 0;
    color: #4f46e5;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.5rem;
}

.pf-comparison-section {
    margin-top: 4rem;
    text-align: center;
}

.pf-compare-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.pf-compare-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.pf-comparison-table-wrapper {
    display: none;
    margin-top: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.pf-comparison-table-wrapper.active {
    display: block;
    animation: pfFadeIn 0.3s ease;
}

.pf-comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: fixed;
}

.pf-comp-table th,
.pf-comp-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.pf-comp-table th {
    background: #f8fafc;
    vertical-align: top;
}

.pf-comp-search-box {
    position: relative;
    margin: -0.5rem 0;
}

.pf-comp-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.125rem;
}

.pf-comp-search-input {
    width: 100%;
    padding: 0.625rem 0.75rem 0.625rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.pf-comp-search-input:focus {
    border-color: #4f46e5;
}

.pf-th-plan-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.pf-th-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: #f5f3ff;
    color: #4f46e5;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.pf-th-price-block {
    margin-bottom: 1.25rem;
}

.pf-th-price-lg {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.pf-th-period {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.pf-th-btn {
    display: block;
    width: 100%;
    padding: 0.625rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #4f46e5;
    color: #4f46e5;
}

.pf-th-btn.dark {
    background: #0f172a;
    border-color: #0f172a;
    color: white;
}

.pf-th-btn:hover {
    transform: translateY(-1px);
}

.pf-comp-check {
    color: #10b981;
    font-size: 1.5rem;
}

.pf-comp-dash {
    color: #cbd5e1;
    font-size: 1.5rem;
}

/* Stacking Cards Section (Teklif Page) */
.pf-stack-section {
    padding: 8rem 0;
    background: #ffffff;
    font-family: 'Albert Sans', sans-serif;
    overflow: visible;
    /* Important for sticky */
}

.pf-stack-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .pf-stack-container {
        grid-template-columns: 1fr 1fr;
    }
}

.pf-stack-left {
    position: sticky;
    top: 100px;
    padding-bottom: 2rem;
    height: fit-content;
}

.pf-stack-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    color: #4f46e5;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.pf-stack-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.pf-stack-title span {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-stack-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.pf-stack-right {
    position: relative;
    padding-bottom: 100px;
}

.pf-stack-card {
    position: sticky;
    top: 100px;
    /* Base top, will be overridden by inline styles */
    background: #ffffff;
    /* Pure white */
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    margin-bottom: 15vh;
    /* Space for the next card to scroll up */
    border: 1px solid rgba(0, 0, 0, 0.05);

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center top;
}

/* Hover effect to highlight stacking */
.pf-stack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

/* Gradient Borders for Cards */
.pf-stack-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    opacity: 0.5;
}

.pf-sc-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #4f46e5;
    margin-bottom: 2rem;
}

.pf-sc-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.pf-sc-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

.pf-sc-visual {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 991px) {
    .pf-stack-left {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 4rem;
    }

    .pf-stack-card {
        position: relative;
        top: 0 !important;
        margin-bottom: 2rem;
        padding: 2rem;
    }
}

/* High-Fidelity Redesign Utilities (Stacking Cards) */
.pf-stack-badge-green {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ecfccb;
    /* Lime 100 */
    color: #4d7c0f;
    /* Lime 700 */
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 99px;
    margin-bottom: 2rem;
}

.pf-btn-dark-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: #18181b;
    /* Zinc 900 */
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.2s;
}

.pf-btn-dark-pill:hover {
    background: #27272a;
    transform: scale(1.02);
    color: white;
}



/* Fuchsia */

/* Mini Visual Components */
.pf-lightning-3d {
    position: relative;
    width: 60px;
    height: 100px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    clip-path: polygon(40% 0%, 100% 0%, 60% 45%, 90% 45%, 0% 100%, 40% 55%, 10% 55%);
    filter: drop-shadow(0 10px 10px rgba(249, 115, 22, 0.4));
    transform: perspective(1000px) rotateY(10deg);
}

.pf-mini-kpi {
    background: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 140px;
}

.pf-mini-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.pf-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    background: #18181b;
    color: white;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pf-play-btn-large {
    width: 50px;
    height: 50px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

/* --- Exact Design Parity: Stacking Cards --- */

/* Refined Section Spacing */
.pf-stack-section {
    padding: 10rem 0;
    background: #fff;
}

.pf-stack-left {
    top: 100px;
}

/* Exact Card Parity */
.pf-stack-card {
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    overflow: hidden;
}

/* Gradient Top Border - Subtler */
.pf-stack-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* Default subtle gray */
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    z-index: 10;
}


/* Blue gray subtle */

/* Inner Visual Container */
.pf-sc-visual-box {
    background: #f8fafc;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

/* Background Aura - Toned Down */
.pf-aura-blue {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, rgba(248, 250, 252, 0) 70%);
}

.pf-aura-purple {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.05) 0%, rgba(248, 250, 252, 0) 70%);
}

.pf-aura-orange {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.05) 0%, rgba(248, 250, 252, 0) 70%);
}

/* QR Mockup */
.pf-qr-card {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 140px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pf-qr-img {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.pf-qr-text {
    font-size: 0.6rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.pf-qr-btn {
    background: #111;
    color: #fff;
    font-size: 0.5rem;
    padding: 0.3rem;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

/* Skeleton Loader */
.pf-skeleton-box {
    width: 80%;
}

.pf-skeleton-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.pf-skeleton-pills {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.pf-skeleton-pill {
    padding: 0.4rem 0.8rem;
    background: #bef264;
    color: #3f6212;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Vector Cursor */
.pf-cursor-mock {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M7 2l12 11.2-5.8.1 3.3 5.4-2.5 1.5-3.3-5.4-3.7 3.7V2z'/%3E%3C/svg%3E") no-repeat;
    z-index: 5;
}

/* --- Advanced Animations for Stacking Cards --- */

@keyframes pf-draw-line {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes pf-pulse-subtle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes pf-slide-up-fade {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pf-pop-in-bounce {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pf-chart-height {
    0% {
        height: 0;
    }

    100% {
        height: var(--target-height);
    }
}

@keyframes pf-phone-scroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes pf-cursor-move {
    0% {
        transform: translate(0, 0);
    }

    30% {
        transform: translate(40px, 10px);
    }

    60% {
        transform: translate(20px, 40px);
    }

    100% {
        transform: translate(50px, 20px);
    }
}

@keyframes pf-ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Component Classes */
.pf-anim-draw {
    animation: pf-draw-line 1.5s ease-out forwards;
}

.pf-anim-pop {
    animation: pf-pop-in-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pf-anim-slide {
    animation: pf-slide-up-fade 0.8s ease-out forwards;
}

.pf-anim-pulse {
    animation: pf-pulse-subtle 3s infinite ease-in-out;
}

.pf-anim-float {
    animation: pf-pulse-subtle 4s infinite ease-in-out;
}

/* Realism Assets */
.pf-document-mock {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.pf-chart-bar {
    width: 25px;
    background: #6366f1;
    border-radius: 4px 4px 0 0;
    animation: pf-chart-height 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

.pf-chat-bubble {
    background: #f1f5f9;
    padding: 0.6rem 1rem;
    border-radius: 1rem 1rem 1rem 0;
    font-size: 0.75rem;
    max-width: 80%;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.pf-phone-frame {
    width: 80px;
    height: 140px;
    background: #18181b;
    border-radius: 1.5rem;
    border: 4px solid #27272a;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.pf-ripple-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: pf-ripple 1s infinite linear;
}

/* --- High-Fidelity iPhone Mockup --- */
.pf-iphone-mockup {
    width: 140px;
    height: 280px;
    background: #111;
    border-radius: 2rem;
    border: 6px solid #27272a;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin: 0 auto;
}

/* Screen */
.pf-iphone-screen {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Notch */
.pf-iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 18px;
    background: #27272a;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    z-index: 10;
}

/* Payfoni App UI */
.pf-app-header {
    height: 40px;
    padding: 1.2rem 0.8rem 0.5rem;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.6rem;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pf-app-content {
    flex: 1;
    padding: 0.8rem;
    overflow-y: hidden;
}

.pf-app-card {
    background: #f8fafc;
    border-radius: 0.8rem;
    padding: 0.6rem;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pf-app-status {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    font-size: 0.45rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pf-app-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.pf-app-info {
    font-size: 0.45rem;
    color: #64748b;
}

.pf-app-bottom {
    height: 35px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #cbd5e1;
    font-size: 0.8rem;
}

.pf-app-active {
    color: #6366f1;
}


/* --- High-Fidelity Mini-Portal Mockup --- */
.pf-portal-mockup {
    width: 220px;
    height: 160px;
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Browser Header */
.pf-portal-browser-top {
    height: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 0.6rem;
    gap: 0.3rem;
}

.pf-portal-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

/* Portal Layout */
.pf-portal-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* Sidebar */
.pf-portal-sidebar {
    width: 40px;
    background: #fdfdfe;
    border-right: 1px solid #f1f5f9;
    padding: 0.6rem 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pf-portal-side-item {
    height: 4px;
    width: 100%;
    background: #f1f5f9;
    border-radius: 2px;
}

.pf-portal-side-item.active {
    background: #6366f1;
    width: 80%;
}

/* Main Content */
.pf-portal-content {
    flex: 1;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pf-portal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.pf-portal-stat-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 0.4rem;
    border-radius: 0.4rem;
}

.pf-portal-stat-label {
    height: 3px;
    width: 40%;
    background: #f1f5f9;
    margin-bottom: 0.3rem;
}

.pf-portal-stat-value {
    height: 6px;
    width: 70%;
    background: #1e293b;
    border-radius: 2px;
}

.pf-portal-chart-area {
    flex: 1;
    background: #fafafa;
    border-radius: 0.4rem;
    padding: 0.4rem;
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
    border: 1px solid #f1f5f9;
}

.pf-portal-sparkline {
    flex: 1;
    background: #e0e7ff;
    border-radius: 2px 2px 0 0;
    animation: pf-chart-height 1.5s ease-out forwards;
}


/* --- High-Fidelity Clean Feature Grid --- */
/* Consolidated Grid handled in early sections */

.pf-clean-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pf-clean-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
    transform: translateY(-5px);
}

.pf-clean-card-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.pf-clean-card-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.pf-clean-card-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    /* Precise rectangular design */
    color: #475569;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin-top: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.pf-clean-card-btn:hover {
    background: #fff;
    border-color: #cbd5e1;
    color: #0f172a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* High-Fidelity Visuals Core */
.pf-clean-visual-container {
    height: 220px;
    background: radial-gradient(circle at 10% 10%, #f1f5f9, #fff);
    border-radius: 1.25rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    perspective: 1000px;
}

/* Legacy WhatsApp Visuals Removed - Replaced with Kinetic Flow */

/* 2. Support Visual */
.pf-v-support {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-v-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transform: translateY(-20px);
}

.pf-v-glass-card img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.pf-v-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pf-pulse-green 2s infinite;
}

.pf-v-chat-stack {
    position: absolute;
    bottom: 30px;
    width: 220px;
    background: #fff;
    padding: 15px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transform: rotateX(5deg);
}

.pf-v-bubble {
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
}

.pf-v-typing {
    display: flex;
    gap: 4px;
}

.pf-v-typing span {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    animation: pf-typing 1s infinite alternate;
}

.pf-v-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.pf-v-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

/* 3. Orbital Connect */
.pf-v-orbital {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-v-core {
    width: 60px;
    height: 60px;
    background: #6366f1;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 5;
    animation: pf-core-pulse 2s infinite;
}

.pf-v-orbit {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: pf-rotate 10s linear infinite;
}

.pf-v-sat {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.pf-v-sat img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s2 {
    bottom: 20%;
    left: 0;
}

.s3 {
    bottom: 20%;
    right: 0;
}

/* 4. Teamwork Sync */
.pf-v-teamwork {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-v-doc-preview {
    width: 200px;
    height: 140px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.pf-v-line {
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
    width: 100%;
}

.pf-v-line.short {
    width: 60%;
}

.pf-v-cursor {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pf-v-cursor i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pf-v-cursor span {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

.c1 {
    top: 40px;
    left: 30px;
    animation: pf-cursor-1 4s infinite ease-in-out;
}

.c1 i {
    color: #8b5cf6;
}

.c1 span {
    background: #8b5cf6;
}

.c2 {
    bottom: 40px;
    right: 30px;
    animation: pf-cursor-2 4s infinite ease-in-out;
}

.c2 i {
    color: #f43f5e;
}

.c2 span {
    background: #f43f5e;
}

.pf-v-toast {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0f172a;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: pf-toast-in 3s infinite;
}

/* 5. Analytics Glass */
.pf-v-analytics {
    width: 240px;
    height: 160px;
    background: #fff;
    border-radius: 1rem;
    padding: 20px;
    position: relative;
    border: 1px solid #f1f5f9;
}

.pf-v-stat {
    margin-bottom: 20px;
}

.pf-v-stat .label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

.pf-v-stat .val {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.pf-v-stat .trend {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pf-v-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 60px;
}

.pf-v-bar {
    flex: 1;
    background: #e2e8f0;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.pf-v-bar:nth-child(even) {
    background: #6366f1;
}

.pf-v-glass-overlay {
    position: absolute;
    inset: 10px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

/* Animations */
@keyframes pf-pop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pf-typing {
    to {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes pf-core-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

@keyframes pf-cursor-1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, 20px);
    }
}

@keyframes pf-cursor-2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -20px);
    }
}

@keyframes pf-toast-in {

    0%,
    90% {
        transform: translateY(20px);
        opacity: 0;
    }

    95%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pf-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* 6. Advanced Reporting (THE PULSE) - Hyper Kinetic */
.pf-v-pulse-reporting {
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pf-v-chart-bg {
    width: 100%;
    height: 120px;
    position: relative;
    opacity: 0.8;
}

.pf-v-svg-pulse {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.pf-v-pulse-line {
    fill: none;
    stroke: url(#pf-pulse-grad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: pf-draw 3.5s ease-in-out infinite alternate;
}

.pf-v-pulse-fill {
    fill: rgba(99, 102, 241, 0.05);
    opacity: 0;
    animation: pf-fade-in 3.5s ease-in-out infinite alternate;
}

.pf-v-stat-plaque {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 5;
}

.pf-v-stat-plaque.p1 {
    top: 15%;
    left: 10%;
    animation: pf-float 3s ease-in-out infinite;
}

.pf-v-stat-plaque.p2 {
    bottom: 15%;
    right: 10%;
    animation: pf-float 4s ease-in-out infinite reverse;
}

.pf-v-stat-plaque span {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pf-v-stat-plaque strong {
    font-size: 16px;
    color: #1e293b;
    font-weight: 800;
}

.pf-v-glow-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px #6366f1, 0 0 40px #6366f1;
    offset-path: path("M0,80 Q25,80 50,40 T100,60 T150,20 T200,40");
    animation: pf-follow-path 3.5s ease-in-out infinite alternate;
}

/* 7. Custom Domain (THE SECURE GATEWAY) - Hyper Kinetic */
.pf-v-secure-gateway {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1200px;
}

.pf-v-orbital-ring {
    position: absolute;
    width: 240px;
    height: 160px;
    border: 3px solid rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    transform: rotateX(75deg);
}

.pf-v-browser-core {
    width: 240px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: rotateX(10deg);
    /* Static professional skew */
}

.pf-v-b-lock-pulse {
    color: #10b981;
    font-size: 22px;
}

.pf-v-b-url-kinetic {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.01em;
}

.pf-v-shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: rgba(16, 185, 129, 0.04);
    z-index: 1;
}

/* 8. Delivery Hub (THE MULTI-STREAM) - Hyper Kinetic */
.pf-v-multi-stream {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pf-v-stream-hub {
    width: 70px;
    height: 70px;
    background: #6366f1;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    z-index: 5;
    position: relative;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.pf-v-hub-waves span {
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.5);
    border-radius: 1.5rem;
    animation: pf-waves-kinetic 3s ease-out infinite;
}

.pf-v-hub-waves span:nth-child(2) {
    animation-delay: 1s;
}

.pf-v-hub-waves span:nth-child(3) {
    animation-delay: 2s;
}

.pf-v-device {
    position: absolute;
    font-size: 40px;
    color: #e2e8f0;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.pf-v-device.phone {
    left: 30px;
    top: 30px;
    animation: pf-float 3s ease-in-out infinite;
}

.pf-v-device.laptop {
    right: 30px;
    bottom: 30px;
    animation: pf-float 4s ease-in-out infinite reverse;
}

.pf-v-particles .pt {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    filter: blur(1px);
    z-index: 3;
}

.pt.p1 {
    animation: pf-stream-phone-hyper 2s linear infinite;
}

.pt.p2 {
    animation: pf-stream-phone-hyper 2s linear infinite 0.6s;
}

.pt.p3 {
    animation: pf-stream-phone-hyper 2s linear infinite 1.2s;
}

.pt.p4 {
    animation: pf-stream-laptop-hyper 2.5s linear infinite;
}

.pt.p5 {
    animation: pf-stream-laptop-hyper 2.5s linear infinite 0.8s;
}

.pt.p6 {
    animation: pf-stream-laptop-hyper 2.5s linear infinite 1.6s;
}

/* Hyper Visual Keyframes */
@keyframes pf-draw {
    0% {
        stroke-dashoffset: 600;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes pf-fade-in {

    0%,
    5% {
        opacity: 0;
    }

    50%,
    100% {
        opacity: 1;
    }
}

@keyframes pf-follow-path {
    0% {
        offset-distance: 0%;
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        offset-distance: 100%;
        transform: scale(1);
    }
}

@keyframes pf-skew-float {

    0%,
    100% {
        transform: translateY(0) rotateX(10deg);
    }

    50% {
        transform: translateY(-20px) rotateX(15deg) rotateY(12deg) scale(1.02);
    }
}

@keyframes pf-waves-kinetic {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes pf-stream-phone-hyper {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translate(-100px, -80px) scale(0.5);
        opacity: 0;
    }
}

@keyframes pf-stream-laptop-hyper {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translate(120px, 100px) scale(0.5);
        opacity: 0;
    }
}

@keyframes pf-rotate-ring {
    from {
        transform: rotateX(75deg) rotate(0deg);
    }

    to {
        transform: rotateX(75deg) rotate(-360deg);
    }
}

/* Global Additions for Logic */
@keyframes pf-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pf-chart-height {
    from {
        height: 0;
    }

    to {
        height: var(--h);
    }
}

/* REDESIGNED WhatsApp kinetic flow visual styles */
.pf-v-wa-flow {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-v-wa-path-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
    opacity: 0.1;
}

.pf-v-wa-glow-path {
    fill: none;
    stroke: #25d366;
    stroke-width: 3;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: pf-wa-draw 4s ease-in-out infinite alternate;
}

.pf-v-wa-bubble-glass {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    z-index: 5;
}

.pf-v-wa-bubble-glass.b1 {
    top: 25%;
    left: 15%;
    animation: pf-wa-bubble-pop 3s ease-in-out infinite;
}

.pf-v-wa-bubble-glass.b2 {
    bottom: 25%;
    right: 15%;
    animation: pf-wa-bubble-pop 3s ease-in-out infinite 1.5s;
}

.pf-v-wa-bubble-glass i {
    color: #25d366;
    font-size: 1.1rem;
}

.pf-v-wa-particles .p_wa {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    z-index: 2;
}

.p_wa.p1 {
    offset-path: path("M20,140 C60,140 80,40 120,40 C160,40 200,100 220,20");
    animation: pf-wa-particle-flow 4s linear infinite;
}

.p_wa.p2 {
    offset-path: path("M20,140 C60,140 80,40 120,40 C160,40 200,100 220,20");
    animation: pf-wa-particle-flow 4s linear infinite 1.3s;
}

.p_wa.p3 {
    offset-path: path("M20,140 C60,140 80,40 120,40 C160,40 200,100 220,20");
    animation: pf-wa-particle-flow 4s linear infinite 2.6s;
}

.pf-v-wa-core {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    z-index: 10;
    animation: pf-core-pulse 2s infinite;
}

@keyframes pf-wa-draw {
    from {
        stroke-dashoffset: 600;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pf-wa-bubble-pop {

    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scale(1.05) translateY(-5px);
    }
}

@keyframes pf-wa-particle-flow {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* --- Animated Feature Finale CTA --- */
.pf-feature-cta-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pf-feature-cta-card {
    background: #0f172a;
    border-radius: 2.5rem;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.3);
}

.pf-feature-cta-content {
    position: relative;
    z-index: 5;
}

.pf-feature-cta-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.pf-feature-cta-desc {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pf-cta-btn-kinetic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #0f172a;
    padding: 1.25rem 2.5rem;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-cta-btn-kinetic:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
    background: #f8fafc;
}

.pf-cta-btn-kinetic i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.pf-cta-btn-kinetic:hover i {
    transform: translateX(5px);
}

/* Visual Orbs */
.pf-cta-visual-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pf-cta-orb {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: pf-orb-float 10s ease-in-out infinite alternate;
}

.pf-cta-orb.orb-1 {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: -100px;
    right: -50px;
}

.pf-cta-orb.orb-2 {
    width: 250px;
    height: 250px;
    background: #a855f7;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.pf-cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

@keyframes pf-orb-float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

@media (max-width: 768px) {
    .pf-feature-cta-title {
        font-size: 2rem;
    }

    .pf-feature-cta-card {
        padding: 3.5rem 1.5rem;
    }
}

/* Mega Menu Modernization */
.megaMenu.megaMenu1 {
    padding: 1.5rem 0 !important;
    background: white;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pf-mm-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background: white;
    height: 100%;
    cursor: pointer;
}

.pf-mm-item:hover {
    background-color: #f8fafc !important;
    border-color: #e2e8f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.pf-mm-icon-box {
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.pf-mm-item:hover .pf-mm-icon-box {
    transform: scale(1.05);
}

/* Icon Color Variants */
.pf-mm-icon-blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.pf-mm-icon-fuchsia {
    background-color: #fdf4ff;
    color: #d946ef;
}

.pf-mm-icon-rose {
    background-color: #fff1f2;
    color: #f43f5e;
}

.pf-mm-icon-sky {
    background-color: #f0f9ff;
    color: #0ea5e9;
}

.pf-mm-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.pf-mm-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.pf-mm-badge {
    font-size: 0.65rem;
    background-color: #dcfce7;
    color: #166534;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 8px;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* 
   -----------------------------------------
   SaaS Fintech Hero Redesign (Blue Gradient)
   -----------------------------------------
*/

.pf-hero-fintech {
    position: relative;
    width: 100%;
    min-height: 850px;
    /* Taller for the fan effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Start from top */
    padding-top: 6rem;
    overflow: hidden;
    margin-bottom: 4rem;
    border-radius: 0 0 40px 40px;
    /* Curved bottom like reference */
}

.pf-hero-fintech-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #ffffff 30%, #000000 100%);
    z-index: -1;
}

.pf-hero-fintech-container {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* Rounded Pill: People Joined */
.pf-joined-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 16px 6px 6px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #dbeafe;
}

.pf-avatars {
    display: flex;
    align-items: center;
}

.pf-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #2d4a8a;
    /* Match bg roughly */
    margin-left: -10px;
}

.pf-avatars img:first-child {
    margin-left: 0;
}

.pf-joined-text strong {
    color: #fff;
    font-weight: 600;
}

/* Typography */
.pf-hero-fintech-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.pf-hero-fintech-desc {
    font-size: 1.1rem;
    color: #93c5fd;
    /* Soft blue-grey */
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* Buttons */
.pf-hero-fintech-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pf-btn-fintech-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pf-btn-fintech-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pf-btn-fintech-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pf-btn-fintech-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 
   Card Fan Animation 
*/
.pf-card-fan-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    /* Space for the fan */
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.pf-card-fan {
    position: relative;
    width: 300px;
    height: 180px;
    transform-style: preserve-3d;
}

.pf-f-card {
    position: absolute;
    width: 280px;
    height: 170px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Courier New', monospace;
    /* Monospace for numbers */
    color: #475569;
    transform-origin: center bottom;
    transition: all 0.5s ease-out;
}

/* Card Styles */
.pf-f-card .chip {
    width: 40px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 6px;
    margin-bottom: 20px;
}

.pf-f-card .number {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #334155;
    font-weight: bold;
}

.pf-f-card .name {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
}

.pf-f-card .logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    align-self: flex-end;
}

/* Fan positioning - Scattered Pile ("Card Duruşları") */
.pf-card-fan {
    position: relative;
    width: 300px;
    height: 180px;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
    /* Slight perspective tilt */
}

/* Center Card - Tilted Left */
.pf-f-card.c3 {
    z-index: 6;
    transform: translateX(0px) translateY(0px) rotate(-5deg);
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Left - Tilted Left More */
.pf-f-card.c2 {
    z-index: 5;
    transform: translateX(-90px) translateY(30px) rotate(-15deg);
    background: linear-gradient(135deg, #64748b, #475569);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.pf-f-card.c2 .number,
.pf-f-card.c2 .name {
    color: #fff;
}

/* Far Left - Buried */
.pf-f-card.c1 {
    z-index: 4;
    transform: translateX(-160px) translateY(80px) rotate(-35deg);
    background: linear-gradient(135deg, #94a3b8, #64748b);
    opacity: 0.8;
}

/* Right - Tilted Right */
.pf-f-card.c4 {
    z-index: 5;
    transform: translateX(90px) translateY(30px) rotate(15deg);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Far Right - Buried */
.pf-f-card.c5 {
    z-index: 4;
    display: flex;
    /* Enable c5 */
    transform: translateX(160px) translateY(80px) rotate(35deg);
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    opacity: 0.8;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effect: Explode */
.pf-card-fan:hover .c3 {
    transform: translateY(-10px) rotate(0deg) scale(1.05);
}

.pf-card-fan:hover .c2 {
    transform: translateX(-110px) translateY(20px) rotate(-20deg);
}

.pf-card-fan:hover .c1 {
    transform: translateX(-200px) translateY(90px) rotate(-45deg);
}

.pf-card-fan:hover .c4 {
    transform: translateX(110px) translateY(20px) rotate(20deg);
}

.pf-card-fan:hover .c5 {
    transform: translateX(200px) translateY(90px) rotate(45deg);
}


/* Responsive */
@media (max-width: 768px) {
    .pf-hero-fintech-title {
        font-size: 2.2rem;
    }

    .pf-f-card {
        width: 200px;
        height: 120px;
        padding: 10px;
    }

    .pf-f-card .chip {
        width: 30px;
        height: 20px;
    }

    .pf-f-card .number {
        font-size: 0.9rem;
    }

    .pf-card-fan-wrapper {
        height: 250px;
    }
}

/* 
   -----------------------------------------
   Animated Payment Flow Hero (Light Theme)
   -----------------------------------------
*/

.pf-hero-payment-flow.light-mode {
    position: relative;
    padding: 6rem 0 4rem 0;
    background-color: #ffffff;
    overflow: hidden;
    min-height: 800px;
    border-bottom: 1px solid #f1f5f9;
}

.pf-payment-bg-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle grid pattern */
    background-image:
        linear-gradient(#f1f5f9 1px, transparent 1px),
        linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    z-index: 0;
    opacity: 0.6;
}

/* Ensure container is above bg */
.pf-payment-container {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

/* Text Content - Light Mode */
.pf-payment-badge.light {
    background: #ecfdf5;
    /* Green 50 */
    border: 1px solid #d1fae5;
    color: #059669;
    /* Emerald 600 */
}

.pf-payment-title.light {
    color: #0f172a;
    /* Slate 900 */
}

.pf-payment-title .highlight-anim-light {
    background: linear-gradient(to right, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-payment-desc.light {
    color: #475569;
    /* Slate 600 */
}

/* Actions - Light Mode */
.pf-btn-flow-primary.light {
    background: #10b981;
    color: #fff;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.pf-btn-flow-primary.light:hover {
    background: #059669;
    color: #fff;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

/* Stats - Light Mode */
.pf-payment-stats.light .stat-item strong {
    color: #0f172a;
}

.pf-payment-stats.light .stat-item span {
    color: #64748b;
}

.pf-payment-stats.light .stat-divider {
    background: #e2e8f0;
}


/* 
   -----------------
   ANIMATED VISUAL (Light)
   -----------------
*/
.pf-flow-visual-wrapper.light {
    /* Scale down slightly for cleaner white space */
    transform: scale(0.9);
}

/* Central Hub - Light */
.pf-hub-core.light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #10b981;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pf-hub-pulse.light,
.pf-hub-ring.light {
    border-color: rgba(16, 185, 129, 0.2);
}

.pf-hub-ring.light {
    border-color: #cbd5e1;
    /* Slate 300 dashed */
    border-style: dashed;
}

/* Orbit Patterns - Light */
.pf-orbit-track.light {
    border-color: #e2e8f0;
    /* Slate 200 */
}

.pf-orbit-item.light {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    color: #64748b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Specific Items */
.t2.light .pf-orbit-item.light {
    background: #fff;
    color: #f59e0b;
    /* Amber */
}

.t3.light .pf-orbit-item.light {
    background: #fff;
    color: #10b981;
    /* Green */
}


/* Floating Success Cards - Light */
.pf-float-success.light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    color: #0f172a;
}

.pf-float-success.light .text span {
    color: #64748b;
}

.pf-float-success.light .text strong {
    color: #0f172a;
}

/* Keep Animations */
.pf-flow-particles .p {
    background: #10b981;
}

.pf-flow-visual-wrapper.light .p2 {
    background: #3b82f6;
}

.pf-flow-visual-wrapper.light .p3 {
    background: #f59e0b;
}

/* Mobile */
@media (max-width: 991px) {
    .pf-hero-payment-flow.light-mode {
        min-height: auto;
        padding-bottom: 6rem;
    }

    .pf-payment-title {
        font-size: 2.5rem;
    }
}

@keyframes pulseSubtle {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes particleFly {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(200px, -200px);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .pf-flow-visual-wrapper {
        height: 400px;
        transform: scale(0.8);
    }

    .pf-payment-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   Online Tahsilat Page Styles (Payfoni)
   ========================================= */

/* Bento Grid Features Section */
.pf-bento-section {
    padding: 6rem 0;
    background: linear-gradient(1deg, #f1f0f0ff, #ffffff);
    font-family: 'Inter', sans-serif;
}

.pf-bento-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.pf-bento-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.pf-bento-title span {
    color: #a1a1aa;
}

.pf-bento-desc {
    font-size: 1.1rem;
    color: #52525b;
    margin-top: 1.5rem;
    max-width: 500px;
}

.pf-explore-btn {
    background: #18181b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.pf-explore-btn:hover {
    background: #27272a;
    color: #fff;
    transform: translateY(-2px);
}

/* Grid Layout */
.pf-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card Common */
.pf-b-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pf-b-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
}

.pf-b-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #18181b;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.pf-b-desc {
    font-size: 0.95rem;
    color: #71717a;
    line-height: 1.5;
}

/* Complex Grid Areas */
.pf-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pf-top-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pf-top-left {
    height: 100%;
}

.pf-top-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pf-bottom-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

/* Visual Mocks */
.pf-mock-api {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    gap: 20px;
    position: relative;
}

.pf-api-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    z-index: 2;
    color: #18181b;
}

.pf-api-line {
    height: 2px;
    width: 40px;
    background: #e4e4e7;
}

.pf-api-center {
    width: 60px;
    height: 60px;
    background: #18181b;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(24, 24, 27, 0.1);
}

/* Sanal POS Mock */
.pf-mock-pos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    opacity: 0.9;
}

.pf-pos-item {
    background: #f4f4f5;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid #e4e4e7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pf-pos-item i {
    font-size: 2rem;
}

/* Dealer Network Mock */
.pf-mock-network {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 10px;
    align-items: center;
}

.pf-net-node {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pf-net-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pf-net-label {
    background: #f4f4f5;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #52525b;
}

.pf-net-arrow {
    color: #d4d4d8;
    font-size: 1.5rem;
    margin-top: -20px;
}

/* Link Payment Mock */
.pf-mock-link-sent {
    margin-top: auto;
    background: #f0fdf4;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid #dcfce7;
    position: relative;
    bottom: 0;
}

.pf-ls-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pf-ls-icon {
    background: #dcfce7;
    color: #166534;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-ls-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #14532d;
}

.pf-ls-box {
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #dcfce7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pf-ls-url {
    font-size: 0.8rem;
    color: #71717a;
}

/* Reporting Mock */
.pf-mock-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 100px;
    margin-top: auto;
    margin-bottom: 2rem;
    width: 100%;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f4f4f5;
    /* Container is now visible */
    padding-bottom: 10px;
    /* Lift bars slightly */
}

.pf-chart-bar {
    width: 14px;
    background: #a1a1aa;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-height: 10px;
}

.pf-chart-bar.active {
    background: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Security Mock */
.pf-mock-mic {
    width: 70px;
    height: 70px;
    background: #18181b;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pf-sec-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    opacity: 0.1;
    background: repeating-linear-gradient(45deg, #000, #000 1px, transparent 1px, transparent 10px);
    mask-image: linear-gradient(to top, black, transparent);
}

@media (max-width: 991px) {

    .pf-top-area,
    .pf-bottom-area {
        grid-template-columns: 1fr;
    }

    .pf-top-left {
        min-height: 350px;
    }

    .pf-b-card {
        min-height: 280px;
    }
}

/* Integrations Marquee Section */
.pf-int-section {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
}

.pf-int-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.pf-int-badge {
    background: #8D5CF6;
    color: #fff;
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pf-int-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1c1c1c;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pf-int-desc {
    color: #52525b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Marquee Container */
.pf-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.pf-marquee-row {
    display: flex;
    gap: 30px;
    width: max-content;
}

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

.pf-marquee-track {
    display: flex;
    gap: 30px;
}

/* Duration increased to maintain speed with longer track */
.pf-scroll-left {
    animation: pf-scroll-left 80s linear infinite;
}

.pf-scroll-right {
    animation: pf-scroll-right 80s linear infinite;
}

@keyframes pf-scroll-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes pf-scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Logo Card */
.pf-logo-card {
    width: 100px;
    height: 100px;
    background: #fafafa;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #52525b;
    transition: all 0.3s ease;
    border: 1px solid #f4f4f5;
}

.pf-logo-card:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


/* =========================================
   Sector Marquee Section (Scrolling)
   ========================================= */
.pf-sector-section {
    padding: 6rem 0;
    background: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.pf-sector-header {
    margin-bottom: 3rem;
    padding-left: 5%;
    /* Align slightly left like reference */
}

.pf-sector-title {
    font-size: 3rem;
    font-weight: 500;
    color: #18181b;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 600px;
}

.pf-sector-title span {
    color: #a1a1aa;
    /* Muted color for second line part */
}

.pf-sector-subtitle {
    font-size: 1rem;
    color: #71717a;
    margin-top: 1rem;
    max-width: 500px;
}

/* Marquee Container */
.pf-sector-marquee {
    display: flex;
    gap: 24px;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.pf-sector-track {
    display: flex;
    gap: 24px;
    /* Infinite Scroll Animation */
    animation: pf-scroll-sector 40s linear infinite;
    width: max-content;
}

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

@keyframes pf-scroll-sector {
    0% {
        transform: translateX(0);
    }

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

/* Sector Card */
.pf-sector-card {
    width: 320px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #f4f4f5;
    transition: transform 0.3s ease;
}

.pf-sector-card:hover {
    transform: translateY(-5px);
}

.pf-sector-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-sector-card:hover .pf-sector-img {
    transform: scale(1.05);
}

.pf-sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 40%);
    pointer-events: none;
}

.pf-sector-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pf-premium-widget {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: auto;
}

.pf-pw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pf-pw-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #52525b;
}

.pf-pw-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #18181b;
    letter-spacing: -0.5px;
}

.pf-pw-badge {
    background: #ecfccb;
    color: #3f6212;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pf-pw-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    gap: 4px;
    padding-top: 10px;
}

.pf-pw-bar {
    flex: 1;
    background: #f4f4f5;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-height: 8px;
    position: relative;
}

.pf-pw-bar.active {
    background: linear-gradient(to top, #18181b, #3f3f46);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tooltip on active bar */
.pf-pw-bar.active::after {
    content: "₺28.4K";
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #18181b;
    color: #fff;
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 4px;
    white-space: nowrap;
}

/* --- Pricing 2026 Styles --- */
.pf-feature-cell {
    text-align: left !important;
    vertical-align: top !important;
    padding: 16px 15px !important;
}

.pf-feature-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-feature-home {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 20px;
    color: #1e293b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}


.pf-feature-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    font-weight: 400;
}

.pf-comp-table td {
    vertical-align: top;
}

/* Enhanced Vibrant Badge */
.pf-vibrant-badge-wrapper {
    perspective: 1000px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.pf-installment-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4f46e5, #8b5cf6, #0ea5e9, #4f46e5);
    background-size: 400% 400%;
    color: white !important;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.4);
    animation: pf-gradient-flow 8s ease infinite, pf-float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.pf-badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pf-badge-text {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 15px;
}

/* Countdown Mini Style */
.pf-countdown-mini {
    display: flex;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}

.pf-cd-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 45px;
    justify-content: center;
}

.pf-cd-item b {
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}

.pf-vibrant-icon {
    font-size: 1.6rem;
    color: #fbbf24;
    animation: pf-icon-shake 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
}

@keyframes pf-gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pf-float {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }

    50% {
        transform: translateY(-5px) rotateX(5deg);
    }
}

@keyframes pf-icon-shake {

    0%,
    100% {
        transform: scale(1) rotate(0);
    }

    25% {
        transform: scale(1.2) rotate(-10deg);
    }

    75% {
        transform: scale(1.2) rotate(10deg);
    }
}

.pf-pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

/* Tooltip Design based on Reference Image - Fix for Visibility */
.pf-plan-card {
    overflow: visible !important;
    border-radius: 1rem !important;
    position: relative;
    z-index: 1;
    transition: z-index 0s;
}

.pf-plan-card:hover {
    z-index: 50 !important;
    /* Bring hovered card to front */
}

.pf-popular-header {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.pf-features-list {
    overflow: visible !important;
}

.pf-feature-item {
    position: relative;
    overflow: visible !important;
}

.pf-feature-info-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    position: relative;
    vertical-align: middle;
    margin-left: 6px;
}

.pf-feature-info-wrap i {
    font-size: 16px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.pf-feature-info-wrap:hover i {
    color: #4f46e5;
}

.pf-feature-info-wrap::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1a1f2c;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
    width: 220px;
    white-space: normal;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    pointer-events: none;
}

.pf-feature-info-wrap::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #1a1f2c transparent transparent transparent;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    pointer-events: none;
}

.pf-feature-info-wrap:hover::before,
.pf-feature-info-wrap:hover::after {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.pf-comp-table th {
    vertical-align: top !important;
    text-align: left !important;
    padding: 20px !important;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #f1f5f9;
}

.pf-comp-table th:last-child {
    border-right: none;
}

/* Search Box Style */
.pf-comp-search-box {
    position: relative;
    width: 100%;
}

.pf-comp-search-input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #334155;
    outline: none;
    transition: all 0.2s;
}

.pf-comp-search-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.pf-comp-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #94a3b8;
}

/* Plan Header Card */
.pf-th-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    height: 100%;
    padding: 24px 20px;
    border-radius: 12px;
    background: white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pf-th-card.premium {
    background: #0f172a;
}

.pf-th-card.premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    animation: pf-premium-rotate 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes pf-premium-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pf-th-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.pf-th-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.pf-th-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.pf-th-card.premium .pf-th-name {
    color: white !important;
}

.pf-th-badge {
    background: #6366f1;
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pf-th-price-area {
    display: flex;
    flex-direction: column;
}

.pf-th-price-main {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.pf-th-card.premium .pf-th-price-main {
    color: white !important;
}

.pf-th-period-sm {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 2px;
}

.pf-th-plus-vat {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    margin-left: 4px;
}

.pf-th-yearly-detail {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

.pf-th-strike {
    text-decoration: line-through;
    margin-right: 6px;
    opacity: 0.7;
}

.pf-th-yearly-price {
    color: #475569;
    font-weight: 600;
}

/* Premium Style - Static & Professional */
.pf-plan-card.premium,
.pf-th-card.premium {
    position: relative;
    background-color: #000 !important;
    border: 1px solid rgba(99, 102, 241, 0.4) !important;
    overflow: visible !important;
    /* Ensure tooltips show */
    z-index: 1;
}

.pf-plan-card.premium::before,
.pf-th-card.premium::before {
    display: none;
    /* Cancelled animation */
}

.pf-plan-card.premium .pf-card-body,
.pf-plan-card.premium .pf-popular-header,
.pf-th-card.premium .pf-th-content,
.pf-th-card.premium .pf-th-btn,
.pf-plan-card.premium .pf-card-body * {
    position: relative;
    z-index: 2;
}

.pf-plan-card.premium .pf-popular-header {
    background: #000 !important;
    color: white !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2) !important;
    text-align: center;
}

.pf-plan-card.premium .pf-select-btn {
    background: #6366f1 !important;
    color: white !important;
    border: none !important;
}

/* Button */
.pf-th-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.pf-th-btn:hover {
    background: #f8fafc;
    color: #6366f1;
    border-color: #6366f1;
}

.pf-th-btn.dark {
    background: #1e293b;
    color: white;
    border-color: #1e293b;
}

.pf-th-card.premium .pf-th-btn.dark {
    background: #6366f1;
    border-color: #6366f1;
}

.pf-th-btn.dark:hover {
    background: #0f172a;
    border-color: #0f172a;
}

/* Highlighted Popular Column */
.pf-th-popular-col {
    background-color: #f5f3ff !important;
    border-top: 2px solid #8b5cf6 !important;
}

/* Featured List Style */
.pf-th-features {
    margin-top: 15px;
}

.pf-th-feat-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    display: block;
}

.pf-th-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-th-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.pf-th-feat-icon {
    color: #64748b;
    font-size: 1rem;
    min-width: 16px;
}

/* --- Premium Elite Design Styles --- */
.pf-premium-elite {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%) !important;
    border: 1px solid rgba(129, 140, 248, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.pf-premium-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: white;
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.pf-plan-header-elite {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pf-plan-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    font-size: 1.5rem;
}

.pf-plan-title-wrap .pf-plan-name {
    color: white !important;
    margin-bottom: 4px;
}

.pf-plan-title-wrap .pf-plan-desc {
    color: #94a3b8 !important;
    font-size: 0.85rem;
    margin: 0;
}

.pf-price-wrapper.elite {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pf-quote-label {
    font-size: 0.75rem;
    color: #6366f1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.pf-amount-quote {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.pf-quote-sub {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.pf-elite-btn {
    background: white !important;
    color: #0f172a !important;
    height: 52px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
    margin-bottom: 30px !important;
    transition: all 0.3s ease !important;
}

.pf-elite-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    background: #f8fafc !important;
}

.pf-elite-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pf-elite-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.pf-elite-divider span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pf-features-list.elite .pf-feature-item {
    padding: 8px 0;
}

.pf-features-list.elite .pf-feature-text {
    color: #cbd5e1 !important;
}

.pf-check-elite {
    color: #6366f1;
    font-size: 1.1rem;
}

/* Modern Mobile Menu Overlay */
.pf-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(15, 23, 42, 0.6);
    /* Backdrop */
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pf-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.pf-mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    /* Drawer width */
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 25px -5px rgba(0, 0, 0, 0.1);
}

.pf-mobile-menu.active .pf-mobile-menu-inner {
    transform: translateX(0);
}

/* Mobile Header */
.pf-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.pf-mobile-logo img {
    height: 28px;
    width: auto;
}

.pf-mobile-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

.pf-mobile-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.pf-mobile-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Mobile Content */
.pf-mobile-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.pf-mobile-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pf-mobile-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.pf-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.pf-mobile-link:hover {
    background: #f1f5f9;
    color: #27BB4E;
}

.pf-mobile-link i {
    font-size: 1.25rem;
    color: #64748b;
}

.pf-mobile-link:hover i {
    color: #27BB4E;
}

.badge-new {
    font-size: 0.65rem;
    font-weight: 700;
    background: #e0f2fe;
    color: #0284c7;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

/* Mobile Footer Buttons */
.pf-mobile-footer {
    padding: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #ffffff;
}

.pf-mobile-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    background: #0f172a;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background 0.2s;
}

.pf-mobile-btn-primary:hover {
    background: #1e293b;
    color: white;
}

.pf-mobile-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem;
    background: white;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.pf-mobile-btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

/* Sectors Section */
.pf-sectors-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    z-index: 10;
}

.pf-sectors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pf-sectors-header {
    margin-bottom: 60px;
    text-align: left;
}

.pf-sectors-label {
    display: inline-block;
    padding: 6px 14px;
    background: #e0e7ff;
    color: #4338ca;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.pf-sectors-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'AlbertSans', sans-serif;
}

.pf-sectors-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
}

.pf-sectors-grid {
    display: flex;
    gap: 16px;
    height: 600px;
}

.pf-sector-card {
    position: relative;
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pf-sector-card.wide {
    flex: 2.8;
}

.pf-sector-card:hover {
    flex: 2.8;
}

.pf-sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 60%);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.pf-sector-card:hover .pf-sector-overlay {
    opacity: 0.9;
}

.pf-sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pf-sector-card:hover .pf-sector-content {
    transform: translateY(0);
}

.pf-sector-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    white-space: nowrap;
    font-family: 'Syne', sans-serif;
}

.pf-sector-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
    max-width: 380px;
}

.pf-sector-card.wide .pf-sector-desc,
.pf-sector-card:hover .pf-sector-desc {
    opacity: 1;
}

@media (max-width: 1200px) {
    .pf-sectors-grid {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .pf-sectors-grid {
        flex-direction: column;
        height: auto;
    }

    .pf-sector-card {
        height: 350px;
        flex: none !important;
    }

    .pf-sector-desc {
        opacity: 1;
        max-width: 100%;
    }

    .pf-sectors-title {
        font-size: 32px;
    }
}

/* Bento Hero Scetion */
.pf-bento-hero {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(147, 197, 253, 0.15) 0%, rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at bottom left, rgba(165, 180, 252, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: hidden;
}

.pf-bento-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left Side */
.pf-bento-info {
    max-width: 540px;
}

.pf-bento-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: -0.02em;
}

.pf-bento-desc {
    font-size: 19px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
    font-family: 'Albert Sans', sans-serif;
}

.pf-bento-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.pf-btn-bento-primary {
    padding: 16px 32px;
    background: #0f172a;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pf-btn-bento-primary:hover {
    transform: translateY(-2px);
    background: #1e293b;
    color: white;
}

.pf-powered-by {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
}

.pf-powered-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

/* Right Side: Bento Grid */
.pf-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 120px);
    gap: 16px;
    position: relative;
}

.pf-bento-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 36px;
    padding: 30px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 15px -3px rgba(0, 0, 0, 0.03),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pf-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.pf-bento-card:hover::before {
    left: 100%;
}

.pf-bento-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
}

/* Card Specifics */
.pf-card-avatars {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-bento-avatars-wrap {
    display: flex;
}

.pf-bento-avatars-wrap img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
}

.pf-bento-avatars-wrap img:first-child {
    margin-left: 0;
}

.pf-card-welcome {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
}

.pf-card-photo {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background-size: cover;
    background-position: center;
}

.pf-card-sales-chart {
    grid-column: 1 / 2;
    grid-row: 2 / 5;
    display: flex;
    flex-direction: column;
}

.pf-card-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 12px;
}

.pf-sales-amount {
    font-size: 32px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 24px;
    font-family: 'Albert Sans', sans-serif;
    letter-spacing: -0.03em;
}

.pf-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    margin-top: auto;
}

.pf-bar {
    flex: 1;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 8px 8px 4px 4px;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pf-bar.active {
    background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.3);
}

.pf-card-main-logo {
    grid-column: 2 / 3;
    grid-row: 2 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.pf-bento-logo-icon {
    font-size: 100px;
    color: #0f172a;
    opacity: 0.05;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pf-card-amount {
    grid-column: 3 / 4;
    grid-row: 3 / 5;
}

.pf-amount-value {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

/* Floating Widgets Animations */
.pf-floating-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 24px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 50;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.pf-floating-widget:hover {
    transform: scale(1.05) translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.pf-widget-teklif {
    top: 50px;
    left: -40px;
    animation: floatAnim 4s infinite ease-in-out;
}

.pf-widget-siparis {
    bottom: 30px;
    right: -20px;
    animation: floatAnim 5s infinite ease-in-out reverse;
}

.pf-widget-tahsilat {
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    animation: floatAnim 6s infinite ease-in-out 1s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.pf-widget-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.pf-widget-teklif .pf-widget-icon {
    background: #eff6ff;
    color: #3b82f6;
}

.pf-widget-siparis .pf-widget-icon {
    background: #fef2f2;
    color: #ef4444;
}

.pf-widget-tahsilat .pf-widget-icon {
    background: #ecfdf5;
    color: #10b981;
}

.pf-widget-text {
    display: flex;
    flex-direction: column;
}

.pf-widget-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.pf-widget-val {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 1200px) {
    .pf-bento-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .pf-bento-info {
        margin: 0 auto;
    }

    .pf-bento-actions {
        justify-content: center;
    }

    .pf-powered-by {
        justify-content: center;
    }

    .pf-bento-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pf-bento-title {
        font-size: 36px;
    }

    .pf-bento-grid {
        grid-template-rows: repeat(6, 100px);
    }

    .pf-card-avatars {
        grid-column: 1 / 3;
    }

    .pf-card-welcome {
        grid-column: 3 / 4;
        font-size: 14px;
    }

    .pf-card-photo {
        grid-column: 1 / 3;
        grid-row: 2 / 5;
    }

    .pf-card-sales-chart {
        grid-column: 3 / 4;
        grid-row: 2 / 5;
    }

    .pf-card-main-logo {
        grid-column: 1 / 4;
        grid-row: 5 / 6;
    }

    .pf-card-amount {
        grid-column: 1 / 4;
        grid-row: 6 / 7;
    }

    .pf-floating-widget {
        display: none;
    }
}

/* Modern Pera Aesthetic Hero */
.pf-modern-hero {
    background: #e9f5ff;
    padding: 100px 0;
    font-family: 'Albert Sans', sans-serif;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pf-m-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side Content */
.pf-m-content {
    animation: mFadeIn 0.8s ease-out;
}

.pf-m-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.pf-m-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 380px;
    font-weight: 500;
}

.pf-m-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0f172a;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
    margin-bottom: 120px;
}

.pf-m-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.pf-m-powered {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.pf-m-powered img {
    height: 18px;
    filter: grayscale(1) brightness(0.5);
    opacity: 0.7;
}

/* Right Side: Bento Grid Layout */
.pf-m-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 60px);
    gap: 20px;
    position: relative;
}

.pf-m-card {
    background: #fff;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Specific Card Layouts */
.pf-m-card-avatars {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    justify-content: center;
    align-items: center;
}

.pf-m-avatars-group {
    display: flex;
}

.pf-m-avatars-group img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}

.pf-m-avatars-group img:first-child {
    margin-left: 0;
}

.pf-m-card-greet {
    grid-column: 4 / 8;
    grid-row: 1 / 3;
    background: #dbeafe;
    /* Light blue bg as in image */
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    border: none;
}

.pf-m-card-photo {
    grid-column: 8 / 12;
    grid-row: 1 / 9;
    padding: 0;
    background-size: cover;
    background-position: center;
}

.pf-m-card-daily {
    grid-column: 1 / 5;
    grid-row: 3 / 10;
}

.pf-m-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 24px;
}

.pf-m-amount-pill {
    display: inline-flex;
    align-items: center;
    background: #7bd3b4;
    color: #fff;
    padding: 6px 16px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 30px;
}

.pf-m-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
    margin-top: auto;
}

.pf-m-bar {
    flex: 1;
    background: #f1f5f9;
    border-radius: 4px;
}

.pf-m-bar.active {
    background: #7bd3b4;
    height: 100% !important;
}

.pf-m-card-process {
    grid-column: 5 / 8;
    grid-row: 3 / 10;
    justify-content: center;
    align-items: center;
}

.pf-m-process-icon {
    font-size: 140px;
    color: #1e293b;
    opacity: 0.9;
}

.pf-m-card-total {
    grid-column: 8 / 12;
    grid-row: 9 / 12;
}

.pf-m-big-val {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.03em;
}

.pf-m-card-cats {
    grid-column: 1 / 8;
    grid-row: 10 / 12;
    background: rgba(255, 255, 255, 0.4);
}

.pf-m-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: auto;
}

.pf-m-cat-item {
    display: flex;
    flex-direction: column;
}

.pf-m-cat-name {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.pf-m-cat-val {
    font-size: 16px;
    color: #1e293b;
    font-weight: 800;
}

/* Floating Calendar */
.pf-m-calendar {
    position: absolute;
    top: 55%;
    left: 45%;
    background: #8fbdf5;
    padding: 20px;
    border-radius: 24px;
    color: #fff;
    transform: rotate(-15deg) translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(143, 189, 245, 0.4);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 800;
}

.pf-m-cal-month {
    font-size: 14px;
    opacity: 0.9;
}

.pf-m-cal-day {
    font-size: 32px;
    line-height: 1;
}

/* Discovery Button */
.pf-m-discovery {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 20px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

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

/* Mobile Fixes */
@media (max-width: 1200px) {
    .pf-m-container {
        grid-template-columns: 1fr;
        padding: 60px 40px;
    }

    .pf-m-content {
        text-align: center;
        margin-bottom: 60px;
    }

    .pf-m-desc {
        margin: 0 auto 40px;
    }

    .pf-m-powered {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pf-m-bento {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .pf-m-card {
        height: 300px;
    }

    .pf-m-calendar {
        display: none;
    }
}

/* Hyper-Modern Hero v3 */
.pf-h-hero {
    position: relative;
    padding: 140px 0 100px;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Albert Sans', sans-serif;
}

.pf-h-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 100px;
}

/* Background Elements */
.pf-h-bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
    filter: blur(80px);
}

/* Left Content */
.pf-h-content {
    flex: 1;
    z-index: 10;
    position: relative;
}

.pf-h-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 99px;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 32px;
}

.pf-h-title {
    font-size: 64px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.pf-h-title span {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pf-h-desc {
    font-size: 20px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 520px;
}

.pf-h-actions {
    display: flex;
    gap: 20px;
}

.pf-btn-h-primary {
    padding: 18px 36px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.pf-btn-h-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
    color: #ffffff;
}

/* Floating Features Button - Glass Effect */
.pf-h-glass-btn-wrap {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.pf-btn-h-glass {
    position: relative;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 99px;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pf-btn-h-glass:hover {
    padding: 14px 40px;
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Right Side: Realistic Animations */
.pf-h-visual {
    flex: 1.2;
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.pf-h-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Card Stack with Realistic Physics-like Floating */
.pf-h-main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 440px;
    height: 320px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%) rotateY(-10deg) rotateX(10deg);
    padding: 32px;
    z-index: 5;
    animation: mainFloat 8s infinite ease-in-out;
}

.pf-h-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 16px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 10;
}

/* Realsitic Floating with staggered delays */
.pf-h-w-1 {
    top: -40px;
    right: -20px;
    animation: floatX 5s infinite ease-in-out;
}

.pf-h-w-2 {
    bottom: -60px;
    left: -40px;
    animation: floatY 6s infinite ease-in-out 1s;
}

.pf-h-w-3 {
    top: 40%;
    left: -80px;
    animation: floatX 7s infinite ease-in-out 0.5s;
}

@keyframes mainFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateY(-10deg) rotateX(10deg);
    }

    50% {
        transform: translate(-50%, -55%) rotateY(-12deg) rotateX(12deg);
    }
}

@keyframes floatX {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(15px) translateY(-10px);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Internal Card Styles */
.pf-h-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.pf-h-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}

.pf-h-card-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
}

.pf-h-bar {
    flex: 1;
    background: #f1f5f9;
    border-radius: 6px;
    position: relative;
}

.pf-h-bar.active {
    background: linear-gradient(to top, #6366f1, #818cf8);
    height: 80% !important;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* Realistic Shadows */
.pf-h-visual::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 20%;
    width: 60%;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    filter: blur(20px);
    border-radius: 50%;
    animation: shadowScale 8s infinite ease-in-out;
}

@keyframes shadowScale {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .pf-h-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .pf-h-visual {
        height: 400px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .pf-h-main-card {
        width: 340px;
        height: 260px;
    }

    .pf-h-w-3 {
        display: none;
    }
}

/* Realistic Floating Animations for Bento Widgets */
.pf-floating-widget {
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95) !important;
}

.pf-widget-teklif {
    animation: realisticFloat 6s infinite ease-in-out;
}

.pf-widget-siparis {
    animation: realisticFloat 7s infinite ease-in-out 0.5s reverse;
}

.pf-widget-tahsilat {
    animation: realisticFloat 8s infinite ease-in-out 1.2s;
}

@keyframes realisticFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(10px, -15px) rotate(1deg);
    }

    66% {
        transform: translate(-5px, -10px) rotate(-1deg);
    }
}

/* Glass Button Integration for Bento Section */
.pf-bento-hero .pf-h-glass-btn-wrap {
    bottom: 20px;
}

/* Hero Action Buttons Refinement */
.pf-bento-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.pf-btn-hero-sign {
    background: #0f172a;
    color: white !important;
    border-radius: 99px;
    padding: 1rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #0f172a;
    font-size: 15px;
}

.pf-btn-hero-sign:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pf-btn-hero-outline {
    background: transparent;
    color: #0f172a !important;
    border: 1px solid #e2e8f0;
    border-radius: 99px;
    padding: 1rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.pf-btn-hero-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Realistic 3D Scene Hero */
.pf-bento-visual {
    perspective: 2000px;
    position: relative;
}

.pf-bento-grid {
    transform: rotateY(-12deg) rotateX(10deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.pf-bento-card {
    transform: translateZ(20px);
    transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.pf-bento-card:hover {
    transform: translateZ(60px);
}

/* More Realistic Floating for Widgets with Depth */
.pf-floating-widget {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.pf-widget-teklif {
    transform: translateZ(100px);
    animation: depthFloat 7s infinite ease-in-out;
}

.pf-widget-siparis {
    transform: translateZ(120px);
    animation: depthFloat 8s infinite ease-in-out 1s reverse;
}

.pf-widget-tahsilat {
    transform: translateZ(140px);
    animation: depthFloat 9s infinite ease-in-out 2s;
}

@keyframes depthFloat {

    0%,
    100% {
        transform: translateZ(100px) translateY(0);
    }

    50% {
        transform: translateZ(140px) translateY(-20px);
    }
}

/* Liquid Light Refraction Effect */
.pf-bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-100%) skewX(-30deg);
    transition: transform 0.8s ease;
}

.pf-bento-card:hover::after {
    transform: translateX(100%) skewX(-30deg);
}

/* Realistic Chart Pulse */
.pf-bar.active {
    animation: chartPulse 2s infinite ease-in-out;
}

@keyframes chartPulse {

    0%,
    100% {
        filter: brightness(1);
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    }

    50% {
        filter: brightness(1.2);
        box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
    }
}

/* Refined Zen-Tech Hero v4 */
.pf-zen-hero {
    position: relative;
    padding: 120px 0 160px;
    background: #f8fafc;
    overflow: hidden;
    font-family: 'Albert Sans', sans-serif;
}

.pf-zen-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left side: Clean Typography */
.pf-zen-info {
    max-width: 580px;
    z-index: 20;
}

.pf-zen-title {
    font-size: 62px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.pf-zen-desc {
    font-size: 20px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 500;
}

/* Right side: Realistic App Layers */
.pf-zen-visual {
    position: relative;
    width: 600px;
    height: 540px;
    z-index: 10;
}

.pf-app-window {
    position: absolute;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-win-main {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 400px;
    transform: translate(-50%, -50%);
    z-index: 5;
    padding: 30px;
}

/* Realistic Floating UI Elements */
.pf-ui-layer {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 20px;
    z-index: 15;
    transition: all 0.5s ease;
}

.pf-layer-chart {
    bottom: -20px;
    right: -40px;
    width: 280px;
    animation: smoothFloat 6s infinite ease-in-out;
}

.pf-layer-invoices {
    top: -40px;
    left: -20px;
    width: 240px;
    animation: smoothFloat 8s infinite ease-in-out reverse;
}

.pf-layer-stat {
    top: 40%;
    right: -60px;
    width: 180px;
    animation: smoothFloat 7s infinite ease-in-out 1s;
}

@keyframes smoothFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

/* Glass Buttons */
.pf-btn-zen-group {
    display: flex;
    gap: 16px;
}

.pf-btn-zen-p {
    padding: 16px 32px;
    background: #0f172a;
    color: white !important;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.pf-btn-zen-s {
    padding: 16px 32px;
    background: white;
    color: #475569 !important;
    border-radius: 99px;
    border: 1px solid #e2e8f0;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

/* Bottom Features Nav */
.pf-zen-scroll-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pf-glass-scroll {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    border-radius: 99px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.pf-glass-scroll:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
}

/* UI Content Mockups */
.pf-mock-header {
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    width: 40%;
    margin-bottom: 20px;
}

.pf-mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.pf-mock-bar {
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px;
}

.pf-mock-bar.active {
    background: #6366f1;
}

@media (max-width: 1024px) {
    .pf-zen-container {
        flex-direction: column;
        text-align: center;
    }

    .pf-zen-visual {
        width: 100%;
        height: 400px;
        margin-top: 60px;
    }

    .pf-win-main {
        width: 80%;
    }

    .pf-layer-stat {
        display: none;
    }
}

/* Installment Badge */
.pf-installment-badge {
    background: #e0f2fe;
    /* sky-100 */
    color: #0369a1;
    /* sky-700 */
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 9px;
    font-weight: 900;
    margin-left: 8px;
    border: 1px solid #bae6fd;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Force Alignment Fixes - Added at end to override any other rules */
.pf-plan-card {
    display: flex !important;
    flex-direction: column !important;
}

.pf-card-body {
    padding: 2.5rem 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.pf-plan-header-area {
    height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding-bottom: 20px !important;
}

.pf-price-wrapper {
    height: 311px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 1rem 0 !important;
    margin-bottom: 2rem !important;
    border-top: 1px solid #f8fafc !important;
    border-bottom: 1px solid #f8fafc !important;
    overflow: hidden !important;
}

.pf-price-content-top {
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 85px !important;
}

.pf-price-row {
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    margin-bottom: 0px !important;
}

.pf-amount {
    font-size: 2.75rem !important;
    /* Larger like Startup */
    font-weight: 600 !important;
    color: #0f172a !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
}

.pf-currency {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    align-self: flex-start !important;
    margin-top: 6px !important;
}

.pf-period {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
}

.pf-old-price {
    height: 20px !important;
    font-size: 0.875rem !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    opacity: 0.6 !important;
    margin-bottom: 4px !important;
}

.pf-bonus-text {
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
}

.pf-old-price {
    height: 20px !important;
    min-height: 20px !important;
    margin-bottom: 5px !important;
    font-size: 0.85rem !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
}

.pf-select-btn {
    margin-bottom: 2rem !important;
    display: block !important;
}

.pf-popular-header {
    margin-bottom: 0 !important;
}


/* Refined Installment Badge Style */
.pf-installment-badge {
    background: #eef2ff !important;
    color: #4f46e5 !important;
    border: 1px solid #c7d2fe !important;
    font-size: 11px !important;
    padding: 2px 8px !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    box-shadow: 0 1px 2px rgba(79, 70, 229, 0.1) !important;
    margin-left: 0.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

/* Elite card specific badge colors */
.pf-plan-card.premium .pf-installment-badge {
    background: rgba(99, 102, 241, 0.2) !important;
    color: #a5b4fc !important;
    border-color: rgba(165, 180, 252, 0.3) !important;
}

/* Table Alignment Fixes */
.pf-feature-row td:not(.pf-feature-cell) {
    text-align: center !important;
}

.pf-th-card {
    min-height: 250px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: center !important;
    padding: 24px 16px !important;
}

.pf-th-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.pf-th-top {
    height: 50px !important;
    /* Fixed height for plan name in table */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.pf-th-price-area {
    /* Fixed height for price in table */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Final Professional Table Header Polish */
.pf-th-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 1rem !important;
    margin: 8px !important;
    padding: 32px 24px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.pf-th-name {
    font-size: 1.1rem !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
}

.pf-th-price-main {
    font-size: 1.85rem !important;
    color: #1e293b !important;
    font-weight: 800 !important;
}

.pf-th-yearly-price {
    color: #64748b !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

.pf-th-btn {
    margin-top: 1.5rem !important;
    border-radius: 0.75rem !important;
    padding: 12px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

/* Remove any remaining background highlights in table cell */
.pf-comp-table th {
    background: #f8fafc !important;
    /* Very subtle grey for header row bg */
    border: none !important;
}

.pf-th-card .pf-installment-badge {
    margin-bottom: 1rem !important;
    display: inline-flex !important;
}

/* Limit Box Styling */
.pf-limit-box {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    padding: 12px !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    margin-bottom: 24px !important;
    gap: 8px !important;
}

.pf-limit-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 !important;
}

.pf-limit-val {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    display: block !important;
}

.pf-limit-label {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.025em !important;
    white-space: nowrap !important;
}

/* Dividing line between limit items */
.pf-limit-item:not(:last-child) {
    border-right: 1px solid #e2e8f0 !important;
}

/* Ultra Minimal Table Header */
.pf-th-card {
    background: #ffffff !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 24px 16px !important;
    box-shadow: none !important;
    text-align: left !important;
}

.pf-th-name {
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    letter-spacing: 0.05em !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.pf-th-name i {
    display: none !important;
    /* Remove icons for minimalism */
}

.pf-th-price-main {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.pf-th-yearly-price {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
}

.pf-th-btn {
    border: 1px solid #e2e8f0 !important;
    background: white !important;
    color: #475569 !important;
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
}

.pf-th-btn:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}

.pf-installment-badge {
    font-size: 8px !important;
    background: #f1f5f9 !important;
    color: #64748b !important;
    padding: 2px 6px !important;
    margin-top: 4px !important;
}

/* Force All Plan Selection Buttons to Black */
.pf-select-btn,
.pf-th-btn {
    background-color: #0f172a !important;
    /* Dark Black/Navy */
    color: #ffffff !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.pf-select-btn:hover,
.pf-th-btn:hover {
    background-color: #1e293b !important;
    transform: translateY(-1px) !important;
}

/* Minimal Limit Box Style */
.pf-limit-box {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    padding: 12px !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    margin: 15px 0 !important;
    gap: 10px !important;
}

.pf-limit-item {
    text-align: center !important;
    flex: 1 !important;
}

.pf-limit-val {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    line-height: 1 !important;
}

.pf-limit-label {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
    display: block !important;
    margin-top: 2px !important;
}

.pf-limit-item:not(:last-child) {
    border-right: 1px solid #e2e8f0 !important;
}

/* Force Indigo Background for All Buttons */
.pf-select-btn,
.pf-th-btn {
    background: #6366f1 !important;
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    padding: 20px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 10px -2px rgba(99, 102, 241, 0.2) !important;
}

.pf-select-btn:hover,
.pf-th-btn:hover {
    background: #4f46e5 !important;
    box-shadow: 0 8px 15px -3px rgba(99, 102, 241, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* Remove icons from plan names for minimalism */
.pf-plan-name i,
.pf-th-name i {
    display: none !important;
}

/* Fix spacing in Minimal Header */
.pf-th-card {
    padding: 24px 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.pf-th-name {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 8px !important;
}

/* Hediye Badge Styling */
.pf-gift-badge {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #f0fdf4 !important;
    /* Light Lime/Green */
    color: #166534 !important;
    /* Dark Green */
    border: 1px solid #bbf7d0 !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    margin-left: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    box-shadow: 0 1px 2px rgba(22, 101, 52, 0.05) !important;
}

/* Enterprise Matrix Head Styling */
.pf-th-card.enterprise {
    background: #0f172a !important;
    color: white !important;
    border: none !important;
}

.pf-th-card.enterprise .pf-th-name,
.pf-th-card.enterprise .pf-th-price-main,
.pf-th-card.enterprise .pf-th-period-sm {
    color: white !important;
}

.pf-th-card.enterprise .pf-th-btn {
    background: white !important;
    color: #0f172a !important;
}

/* Interactive Tooltip Structure */
.pf-feature-info-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    cursor: help !important;
    margin-left: 4px !important;
}

.pf-feature-info-wrap i {
    font-size: 14px !important;
    color: #94a3b8 !important;
}

.pf-tooltip-content {
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    bottom: 140% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    padding: 12px !important;
    border-radius: 8px !important;
    width: 220px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 9999 !important;
    pointer-events: none !important;
    text-align: center !important;
}

.pf-tooltip-text {
    display: block !important;
    font-size: 13px !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
    text-transform: none !important;
}

.pf-feature-info-wrap:hover .pf-tooltip-content {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
}

/* Tooltip Arrow */
.pf-tooltip-content::after {
    content: "" !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    margin-left: -6px !important;
    border-width: 6px !important;
    border-style: solid !important;
    border-color: #ffffff transparent transparent transparent !important;
}

/* Small Indigo Details Button */
.pf-btn-indigo-sm {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #6366f1 !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
}

.pf-btn-indigo-sm:hover {
    background: #4f46e5 !important;
    transform: translateY(-1px) !important;
    color: white !important;
}

/* Module Badges Label */
.pf-modules-label {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
}

/* Pricing Module Badges */
.pf-module-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px solid #f1f5f9 !important;
    align-content: flex-start !important;
    margin-bottom: 5px !important;
    justify-content: flex-start !important;
    width: 100% !important;
    flex-shrink: 0 !important;
}

.pf-module-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border: 1px solid transparent !important;
    transition: all 0.3s !important;
}

.pf-badge-tahsilat {
    background: #eef2ff !important;
    color: #4f46e5 !important;
    border-color: rgba(79, 70, 229, 0.1) !important;
}

.pf-badge-teklif {
    background: #ecfdf5 !important;
    color: #10b981 !important;
    border-color: rgba(16, 185, 129, 0.1) !important;
}

.pf-badge-siparis {
    background: #eff6ff !important;
    color: #3b82f6 !important;
    border-color: rgba(59, 130, 246, 0.1) !important;
}

.pf-badge-banka {
    background: #fffbeb !important;
    color: #d97706 !important;
    border-color: rgba(217, 119, 6, 0.1) !important;
}

.pf-badge-b2b {
    background: #f5f3ff !important;
    color: #7c3aed !important;
    border-color: rgba(124, 58, 237, 0.1) !important;
}

.pf-badge-enterprise {
    background: #f8fafc !important;
    color: #475569 !important;
    border-color: rgba(71, 85, 105, 0.1) !important;
}

/* Mobile overrides - remove fixed heights so badges are fully visible */
@media (max-width: 1024px) {
    .pf-price-wrapper {
        height: auto !important;
        min-height: unset !important;
        overflow: visible !important;
        padding: 0.75rem 0 !important;
    }

    .pf-price-content-top {
        min-height: unset !important;
    }

    .pf-module-badges {
        flex-shrink: unset !important;
    }
}

/* Minimal Sliding Indigo Border for Business Plan */
.pf-plan-card.business {
    border: none !important;
    position: relative;
}

.pf-plan-card.business .pf-card-body {
    background: white;
    margin: 2px;
    border-radius: calc(1rem - 2px);
    position: relative;
    z-index: 2;
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    flex: 1;
}

.pf-border-glow-wrapper {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: #e2e8f0;
}

.pf-border-glow-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 75%, rgba(99, 102, 241, 0.9) 100%);
    animation: pf-border-slide 6s linear infinite;
}

@keyframes pf-border-slide {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}