/* ========================================
   FOLLOWYAB TEMPLATE - main.css
   Modern, clean, RTL-first website template
   ======================================== */

/* ── Font Face ── */
@font-face {
    font-family: 'OriginalFont';
    font-weight: normal;
    src: url('../Fonts/Vazir-FD.eot?');
    src: url('../Fonts/Vazir-FD.eot?#iefix') format('embedded-opentype'),
         url('../Fonts/Vazir-FD.woff2') format('woff2'),
         url('../Fonts/Vazir-FD.woff') format('woff'),
         url('../Fonts/Vazir-FD.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'OriginalFont';
    font-weight: bold;
    src: url('../Fonts/Vazir-Bold-FD.eot?');
    src: url('../Fonts/Vazir-Bold-FD.eot?#iefix') format('embedded-opentype'),
         url('../Fonts/Vazir-Bold-FD.woff2') format('woff2'),
         url('../Fonts/Vazir-Bold-FD.woff') format('woff'),
         url('../Fonts/Vazir-Bold-FD.ttf') format('truetype');
    font-display: swap;
}

/* ── Global ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    direction: rtl;
}

body {
    font-family: 'OriginalFont', Tahoma, sans-serif;
    direction: rtl;
    text-align: right;
    color: #1e293b;
    background: #fff;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

a {
    color: #6366f1;
    text-decoration: none;
    transition: color .2s ease;
}

a:hover,
a:focus {
    color: #4f46e5;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0;
}

/* ═══════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════ */
.bold { font-weight: 700; }
.fy-section { padding: 70px 0; }
.fy-section-dark { background: #0f172a; color: #e2e8f0; }
.fy-section-alt { background: #1e293b; color: #e2e8f0; }
.fy-section-light { background: #f8fafc; }
.fy-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: inherit;
}
.fy-section-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 40px;
}
.fy-section-dark .fy-section-subtitle {
    color: #94a3b8;
}

/* ── Buttons ── */
.fy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
    line-height: 1.5;
}

.fy-btn-primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, .3);
}

.fy-btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: #fff;
    box-shadow: 0 6px 25px rgba(99, 102, 241, .45);
    transform: translateY(-1px);
}

.fy-btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #c7d2fe;
}

.fy-btn-outline:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.fy-btn-outline-light {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid rgba(255, 255, 255, .25);
}

.fy-btn-outline-light:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

.fy-btn-telegram {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 136, 204, .3);
}

.fy-btn-telegram:hover {
    background: #006daa;
    color: #fff;
    box-shadow: 0 6px 25px rgba(0, 136, 204, .45);
    transform: translateY(-1px);
}

.fy-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .25);
}

.fy-btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

.fy-scrolled .fy-btn-ghost {
    color: #475569;
    border-color: #e2e8f0;
}

.fy-scrolled .fy-btn-ghost:hover {
    background: #f1f5f9;
    color: #6366f1;
    border-color: #c7d2fe;
}

.fy-btn-lg {
    padding: 14px 30px;
    font-size: 15px;
    border-radius: 12px;
}

/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */
.fy-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 18px 0;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 4px 24px rgba(0, 0, 0, .05);
}

.fy-scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 4px 24px rgba(0, 0, 0, .05);
    padding: 12px 0;
}

.fy-navbar-wrap {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.fy-brand {
    flex-shrink: 0;
    margin-left: 36px;
    transition: opacity .2s;
}

.fy-brand:hover {
    opacity: .85;
}

.fy-brand img {
    height: 42px;
    width: auto;
}

/* ── Nav Links ── */
.fy-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    gap: 4px;
}

.fy-nav-links li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    transition: all .2s ease;
    position: relative;
}

.fy-nav-links li a span {
    font-size: 17px;
    opacity: .7;
    transition: opacity .2s;
}

.fy-nav-links li a:hover span {
    opacity: 1;
}

.fy-nav-links li a:hover {
    color: #6366f1;
    background: #f1f5f9;
}

.fy-scrolled .fy-nav-links li a {
    color: #475569;
}

.fy-scrolled .fy-nav-links li a:hover {
    color: #6366f1;
    background: #f1f5f9;
}

/* ── Nav Actions ── */
.fy-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.fy-nav-actions .fy-btn {
    padding: 10px 24px;
    font-size: 14px;
}

.fy-nav-actions .fy-btn span {
    font-size: 16px;
}

/* Outline button (logged-in: panel) */
.fy-btn-outline {
    background: transparent;
    color: #6366f1;
    border: 1.5px solid #c7d2fe;
    border-radius: 10px;
}

.fy-btn-outline:hover {
    background: #eef2ff;
    border-color: #a5b4fc;
    color: #6366f1;
}

.fy-scrolled .fy-btn-outline {
    color: #6366f1;
    border-color: #c7d2fe;
}

.fy-scrolled .fy-btn-outline:hover {
    background: #eef2ff;
    border-color: #a5b4fc;
}

/* Glow on register button */
.fy-btn-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, .35);
}

.fy-btn-glow:hover {
    box-shadow: 0 0 28px rgba(99, 102, 241, .5);
}

.fy-scrolled .fy-btn-glow {
    box-shadow: 0 0 16px rgba(99, 102, 241, .25);
}

/* ── Toggler ── */
.fy-toggler {
    display: none;
    background: none;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: all .2s;
}

.fy-toggler:hover {
    background: #f1f5f9;
    border-color: #c7d2fe;
    color: #6366f1;
}

.fy-scrolled .fy-toggler {
    color: #475569;
    border-color: #e2e8f0;
}

.fy-scrolled .fy-toggler:hover {
    background: #f1f5f9;
    border-color: #c7d2fe;
    color: #6366f1;
}

/* ── Mobile Menu ── */
#fyMobileMenu {
    background: #0f172a;
    border-radius: 0 0 12px 12px;
    margin: 0 -15px;
    padding: 0 15px;
}

.fy-scrolled #fyMobileMenu {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.fy-mobile-links {
    list-style: none;
    padding: 14px 0 10px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.fy-scrolled .fy-mobile-links {
    border-top-color: #f1f5f9;
}

.fy-mobile-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    border-radius: 10px;
    transition: all .2s ease;
}

.fy-mobile-links li a span {
    font-size: 18px;
    width: 22px;
    text-align: center;
    opacity: .6;
}

.fy-mobile-links li a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.fy-mobile-links li a:hover span {
    opacity: 1;
}

.fy-scrolled .fy-mobile-links li a {
    color: #475569;
}

.fy-scrolled .fy-mobile-links li a:hover {
    background: #f1f5f9;
    color: #6366f1;
}

/* Mobile auth buttons */
.fy-mobile-auth {
    padding: 10px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fy-btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    padding: 12px 20px;
    font-size: 15px;
}

.fy-btn-ghost-dark {
    background: transparent;
    color: #94a3b8;
    border: none;
    font-size: 14px;
}

.fy-btn-ghost-dark:hover {
    color: #6366f1;
}

.fy-scrolled .fy-btn-ghost-dark {
    color: #64748b;
}

.fy-scrolled .fy-btn-ghost-dark:hover {
    color: #6366f1;
}

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.fy-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    padding: 140px 0 90px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.fy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, .15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fy-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, .1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fy-hero-content {
    position: relative;
    z-index: 1;
}

.fy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, .15);
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: 50px;
    font-size: 13px;
    color: #a5b4fc;
    margin-bottom: 24px;
}

.fy-hero-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fy-hero-brand {
    color: #a5b4fc;
}

.fy-hero-subtitle {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.fy-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.fy-hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #cbd5e1;
    width: calc(50% - 14px);
    padding: 4px 0;
}

.fy-hero-features li span {
    color: #34d399;
    font-size: 16px;
    flex-shrink: 0;
}

.fy-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.fy-hero-visual {
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fy-hero-glow {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(99, 102, 241, .25), transparent 70%);
    border-radius: 50%;
    animation: fyPulse 4s ease-in-out infinite;
}

@keyframes fyPulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ═══════════════════════════════════
   STATS / TRUST INDICATORS
   ═══════════════════════════════════ */
.fy-stats-section {
    padding: 50px 0;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.fy-stat-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s ease;
    margin-bottom: 20px;
}

.fy-stat-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(99, 102, 241, .3);
    transform: translateY(-3px);
}

.fy-stat-icon {
    display: block;
    font-size: 28px;
    color: #818cf8;
    margin-bottom: 12px;
}

.fy-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 4px;
    direction: ltr;
}

.fy-stat-label {
    font-size: 13px;
    color: #94a3b8;
}

/* ═══════════════════════════════════
   HOW IT WORKS (STEPS)
   ═══════════════════════════════════ */
.fy-steps-section {
    background: #f8fafc;
}

.fy-step-card {
    text-align: center;
    padding: 30px 16px;
    margin-bottom: 20px;
}

.fy-step-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, .25);
    transition: transform .3s ease;
}

.fy-step-card:hover .fy-step-icon {
    transform: translateY(-4px);
}

.fy-step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e7ff;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    margin-bottom: 12px;
}

.fy-step-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.fy-step-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
}

/* Connector line between steps */
.fy-steps-row {
    position: relative;
}

/* ═══════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════ */
.fy-faq-section {
    background: #fff;
}

.fy-faq-panels {
    max-width: 800px;
    margin: 0 auto;
}

.fy-faq-panels .panel {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 12px;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
}

.fy-faq-panels .panel-heading {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    padding: 14px 20px;
    transition: all .3s ease;
    cursor: pointer;
}

.fy-faq-panels .panel-heading:hover {
    background: #f1f5f9;
    border-color: #c7d2fe;
}

.fy-faq-panels .panel-heading.active {
    background: #312e81;
    border-color: #312e81;
    border-radius: 12px 12px 0 0 !important;
}

.fy-faq-panels .panel-title {
    font-size: 15px;
    margin: 0;
}

.fy-faq-panels .panel-title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.8;
}

.fy-faq-panels .panel-heading.active .panel-title a,
.fy-faq-panels .panel-heading:hover .panel-title a {
    color: #fff;
}

.fy-faq-icon {
    font-size: 20px;
    font-weight: bold;
    margin-left: 12px;
    color: #64748b;
    transition: color .3s ease;
    flex-shrink: 0;
}

.fy-faq-panels .panel-heading.active .fy-faq-icon,
.fy-faq-panels .panel-heading:hover .fy-faq-icon {
    color: #c7d2fe;
}

.fy-faq-panels .panel-body {
    background: #312e81;
    color: #e0e7ff;
    border: none;
    border-radius: 0 0 12px 12px !important;
    padding: 20px 24px;
    font-size: 14px;
    line-height: 2;
}

.fy-faq-panels .panel-body strong {
    color: #c4b5fd;
    font-weight: 700;
}

.fy-faq-panels .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
}

/* ═══════════════════════════════════
   PLATFORMS SECTION
   ═══════════════════════════════════ */
.fy-platforms-section {
    background: #fff;
}

.fy-platform-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 16px;
    text-align: center;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.fy-platform-card:hover {
    border-color: #c7d2fe;
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.fy-platform-card span {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.fy-platform-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.fy-platform-card small {
    font-size: 12px;
    color: #94a3b8;
}

/* ═══════════════════════════════════
   ADVANTAGES SECTION
   ═══════════════════════════════════ */
.fy-advantages-section {
    background: #0f172a;
    color: #e2e8f0;
}

.fy-advantages-section .fy-section-title {
    color: #e2e8f0;
}

.fy-advantages-section .fy-section-subtitle {
    color: #94a3b8;
}

.fy-advantage-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 30px 24px;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.fy-advantage-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(99, 102, 241, .3);
    transform: translateY(-3px);
}

.fy-advantage-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(99, 102, 241, .25);
}

.fy-advantage-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.fy-advantage-card p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.9;
}

/* ═══════════════════════════════════
   BLOG SECTION
   ═══════════════════════════════════ */
.fy-blog-section {
    background: #f8fafc;
}

.fy-blog-card {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    color: inherit;
    margin-bottom: 20px;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid #e2e8f0;
}

.fy-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    color: inherit;
}

.fy-blog-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.fy-blog-featured .fy-blog-image {
    height: 300px;
}

.fy-blog-small .fy-blog-image {
    height: 160px;
}

.fy-blog-content {
    padding: 16px 20px;
}

.fy-blog-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.fy-blog-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0;
    line-height: 1.6;
}

.fy-blog-content p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.8;
}

.fy-blog-more {
    margin-top: 30px;
}

/* ═══════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════ */
.fy-contact-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
}

.fy-contact-section .fy-section-title {
    color: #fff;
}

.fy-contact-section .fy-section-subtitle {
    color: #94a3b8;
}

.fy-contact-buttons {
    margin-top: 24px;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.fy-footer {
    background: #0f172a;
    color: #94a3b8;
}

.fy-footer-top {
    padding: 60px 0 40px;
}

.fy-footer-logo {
    max-width: 120px;
    margin-bottom: 16px;
}

.fy-footer-about {
    font-size: 13px;
    line-height: 2;
    color: #94a3b8;
    margin-bottom: 0;
}

.fy-footer-title {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 18px;
}

.fy-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fy-footer-links li {
    margin-bottom: 10px;
}

.fy-footer-links a {
    color: #94a3b8;
    font-size: 13px;
    transition: all .2s ease;
}

.fy-footer-links a:hover {
    color: #e2e8f0;
    padding-right: 4px;
}

.fy-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fy-footer-contact li {
    margin-bottom: 10px;
}

.fy-footer-contact a {
    color: #94a3b8;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s ease;
}

.fy-footer-contact a:hover {
    color: #e2e8f0;
}

.fy-footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ═══════════════════════════════════
   PAGE CONTENT AREA
   (for shared views: Blog, Pages, etc.)
   ═══════════════════════════════════ */
#main {
    padding-top: 0;
    min-height: 50vh;
}

/* ── Page Header Banner ── */
.fy-page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fy-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, .12) 0%, transparent 60%);
    pointer-events: none;
}

.fy-page-header-title {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 12px;
    position: relative;
}

.fy-breadcrumb {
    position: relative;
    font-size: 13px;
    color: #94a3b8;
}

.fy-breadcrumb a {
    color: #a5b4fc;
    text-decoration: none;
    transition: color .2s;
}

.fy-breadcrumb a:hover {
    color: #c7d2fe;
}

.fy-breadcrumb-sep {
    margin: 0 8px;
    color: #475569;
}

/* ── Page Content Area ── */
.fy-page-content {
    padding: 50px 0 70px;
    min-height: 40vh;
}

.fy-page-body {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    line-height: 1.9;
    font-size: 15px;
    color: #334155;
}

.fy-page-body h2,
.fy-page-body h3,
.fy-page-body h4 {
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 12px;
}

.fy-page-body p {
    margin-bottom: 16px;
}

.fy-page-body ul,
.fy-page-body ol {
    padding-right: 24px;
    margin-bottom: 16px;
}

.fy-page-body a {
    color: #6366f1;
}

.fy-page-body a:hover {
    color: #4f46e5;
}

/* ═══════════════════════════════════
   BLOG LIST PAGE
   ═══════════════════════════════════ */
.fy-page-header-desc {
    color: #94a3b8;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 0;
}

.fy-blog-list {
    padding: 50px 0 70px;
}

.fy-blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 16px;
}

.fy-blog-empty span {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

/* ── Post Card ── */
.fy-post-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
    text-decoration: none !important;
    color: inherit;
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1);
}

.fy-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    color: inherit;
}

.fy-post-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
}

.fy-post-info {
    padding: 18px 20px;
}

.fy-post-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.7;
}

.fy-post-excerpt {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fy-post-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #94a3b8;
}

.fy-post-meta span span {
    margin-left: 3px;
}

/* ── Pagination ── */
.fy-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.fy-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
    transition: all .2s;
}

.fy-page-btn:hover {
    background: #f1f5f9;
    color: #6366f1;
    border-color: #c7d2fe;
}

.fy-page-active {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

/* ── Sidebar ── */
.fy-blog-sidebar {
    position: sticky;
    top: 90px;
}

.fy-sidebar-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.fy-sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.fy-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fy-cat-list li {
    margin-bottom: 2px;
}

.fy-cat-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    transition: all .2s;
}

.fy-cat-list li a:hover {
    background: #f8fafc;
    color: #6366f1;
}

.fy-cat-list li.active a {
    background: #eef2ff;
    color: #6366f1;
    font-weight: 600;
}

.fy-cat-list li a span {
    font-size: 15px;
    opacity: .6;
}

/* ── Author Sidebar ── */
.fy-sidebar-author {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.fy-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.fy-sidebar-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}

.fy-sidebar-author p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.fy-author-count {
    display: inline-block;
    font-size: 12px;
    color: #6366f1;
    background: #eef2ff;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ═══════════════════════════════════
   BLOG SINGLE PAGE
   ═══════════════════════════════════ */
.fy-page-header-blog {
    padding-bottom: 36px;
}

.fy-post-header-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #94a3b8;
}

.fy-post-header-meta span span {
    margin-left: 3px;
}

.fy-meta-sep {
    color: #475569;
    opacity: .4;
}

.fy-post-author-link,
.fy-post-cat-link {
    color: #c7d2fe;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.fy-post-author-link:hover,
.fy-post-cat-link:hover {
    color: #fff;
}

.fy-author-tiny {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.fy-blog-single {
    padding: 50px 0 70px;
}

/* ── Article ── */
.fy-article {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.fy-article-thumb {
    max-height: 420px;
    overflow: hidden;
}

.fy-article-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.fy-article-body {
    padding: 36px 40px;
    line-height: 2;
    font-size: 15px;
    color: #334155;
}

.fy-article-body h2,
.fy-article-body h3,
.fy-article-body h4 {
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 12px;
}

.fy-article-body h2 { font-size: 22px; }
.fy-article-body h3 { font-size: 18px; }
.fy-article-body h4 { font-size: 16px; }

.fy-article-body p {
    margin-bottom: 16px;
}

.fy-article-body ul,
.fy-article-body ol {
    padding-right: 24px;
    margin-bottom: 16px;
}

.fy-article-body a {
    color: #6366f1;
}

.fy-article-body a:hover {
    color: #4f46e5;
}

.fy-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

.fy-article-body blockquote {
    border-right: 4px solid #6366f1;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-style: italic;
    color: #475569;
}

/* ── CTA Box ── */
.fy-article-cta {
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 12px;
    padding: 40px 30px;
    margin-top: 32px;
    color: #e2e8f0;
}

.fy-article-cta h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px;
}

.fy-article-cta p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #94a3b8;
}

/* ── TOC Sidebar ── */
.fy-toc-sticky {
    position: sticky;
    top: 90px;
}

.fy-toc-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.fy-toc-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fy-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fy-toc-list li {
    margin-bottom: 4px;
}

.fy-toc-list li a {
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: all .2s;
    line-height: 1.6;
}

.fy-toc-list li a:hover {
    background: #f8fafc;
    color: #6366f1;
}

.fy-toc-sub {
    padding-right: 14px;
}

.fy-toc-sub a {
    font-size: 12px !important;
    color: #94a3b8 !important;
}

.fy-toc-sub a:hover {
    color: #6366f1 !important;
}

/* ═══════════════════════════════════
   HERO LOGIN CARD
   ═══════════════════════════════════ */
.fy-login-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 32px 28px;
    color: #e2e8f0;
    margin-top: 20px;
}

.fy-login-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fy-login-title span {
    color: #a5b4fc;
    font-size: 20px;
}

.fy-form-group {
    margin-bottom: 18px;
}

.fy-form-group label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
    font-weight: 500;
}

.fy-form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.fy-form-input::placeholder {
    color: #64748b;
}

.fy-form-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .2);
}

.fy-login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #6366f1;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 4px;
}

.fy-login-btn:hover {
    background: #4f46e5;
}

.fy-login-btn:active {
    transform: scale(.98);
}

.fy-login-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.fy-login-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fy-login-error {
    background: rgba(239, 68, 68, .15);
    border: 1px solid rgba(239, 68, 68, .3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #fca5a5;
    margin-top: 14px;
}

.fy-login-identifier-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #c7d2fe;
    direction: ltr;
    text-align: left;
}

.fy-login-change {
    color: #a5b4fc;
    font-size: 12px;
    text-decoration: none;
    direction: rtl;
}

.fy-login-change:hover {
    color: #fff;
}

.fy-form-check {
    margin-bottom: 16px;
}

.fy-form-check label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
    cursor: pointer;
}

.fy-form-check input[type="checkbox"] {
    accent-color: #6366f1;
    width: 16px;
    height: 16px;
}

.fy-login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    color: #94a3b8;
}

.fy-login-footer a {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 600;
    margin-right: 4px;
}

.fy-login-footer a:hover {
    color: #fff;
}

/* Welcome card (logged in) */
.fy-login-welcome {
    text-align: center;
    padding: 16px 0;
}

.fy-welcome-icon {
    font-size: 40px;
    color: #a5b4fc;
    display: block;
    margin-bottom: 12px;
}

.fy-login-welcome h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 8px;
}

.fy-login-welcome p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Spin animation */
@keyframes fySpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fy-spin {
    display: inline-block;
    animation: fySpin .8s linear infinite;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

/* Tablet & below */
@media (max-width: 991px) {
    .fy-nav-links {
        display: none;
    }

    .fy-toggler {
        display: inline-block;
    }

    .fy-page-header {
        padding: 100px 0 32px;
    }

    .fy-page-header-title {
        font-size: 24px;
    }

    .fy-page-body {
        padding: 30px 24px;
    }

    .fy-hero {
        padding: 120px 0 70px;
    }

    .fy-login-card {
        margin-top: 30px;
    }

    .fy-hero-title {
        font-size: 28px;
    }

    .fy-hero-subtitle {
        font-size: 15px;
    }

    .fy-section {
        padding: 50px 0;
    }

    .fy-section-title {
        font-size: 22px;
    }

    .fy-stat-card {
        padding: 20px 16px;
    }

    .fy-stat-number {
        font-size: 24px;
    }

    .fy-post-thumb {
        height: 160px;
    }

    .fy-article-body {
        padding: 28px 24px;
    }

    .fy-blog-sidebar {
        margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .fy-hero {
        padding: 100px 0 40px;
        text-align: center;
    }

    .fy-hero-title {
        font-size: 22px;
        line-height: 1.5;
    }

    .fy-hero-title br {
        display: none;
    }

    .fy-hero-subtitle {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .fy-hero-badge {
        margin-right: auto;
        margin-left: auto;
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 16px;
    }

    .fy-hero-features {
        justify-content: center;
        gap: 4px 0;
        margin-bottom: 20px;
    }

    .fy-hero-features li {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 2px 0;
    }

    .fy-hero-buttons {
        justify-content: center;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    .fy-hero-buttons .fy-btn {
        width: 100%;
        justify-content: center;
    }

    .fy-login-card {
        padding: 22px 18px;
        text-align: right;
        margin-top: 24px;
    }

    .fy-login-title {
        justify-content: center;
        font-size: 16px;
    }

    .fy-login-btn {
        font-size: 14px;
    }

    .fy-section {
        padding: 36px 0;
    }

    .fy-section-title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .fy-section-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    /* Stats */
    .fy-stat-card {
        padding: 16px 10px;
        margin-bottom: 10px;
    }

    .fy-stat-number {
        font-size: 20px;
    }

    .fy-stat-label {
        font-size: 11px;
    }

    /* Platforms */
    .fy-platform-card {
        padding: 16px 10px;
        margin-bottom: 10px;
    }

    .fy-platform-card span {
        font-size: 28px;
    }

    .fy-platform-card h5 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .fy-platform-card small {
        font-size: 11px;
    }

    /* Steps */
    .fy-step-card {
        padding: 20px 14px;
        margin-bottom: 12px;
    }

    .fy-step-card h4 {
        font-size: 15px;
    }

    .fy-step-card p {
        font-size: 13px;
    }

    /* Advantages */
    .fy-advantage-card {
        margin-bottom: 12px;
        padding: 24px 18px;
    }

    .fy-advantage-card h4 {
        font-size: 15px;
    }

    .fy-advantage-card p {
        font-size: 13px;
    }

    /* FAQ */
    .fy-faq-panels .panel-title {
        font-size: 14px;
    }

    .fy-faq-panels .panel-heading {
        padding: 12px 16px;
    }

    .fy-faq-panels .panel-body {
        font-size: 13px;
        padding: 0 16px 16px;
    }

    /* Contact CTA */
    .fy-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .fy-contact-buttons .fy-btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .fy-footer-top .col-md-4,
    .fy-footer-top .col-md-2 {
        margin-bottom: 24px;
    }

    .fy-btn-lg {
        padding: 12px 22px;
        font-size: 14px;
    }

    /* Blog */
    .fy-blog-featured .fy-blog-image { height: 220px; }
    .fy-blog-small .fy-blog-image { height: 140px; }

    .fy-page-header { padding: 90px 0 28px; }
    .fy-page-header-title { font-size: 21px; }
    .fy-page-body { padding: 24px 18px; font-size: 14px; }
    .fy-page-content { padding: 30px 0 50px; }
    .fy-blog-list { padding: 30px 0 50px; }
    .fy-blog-single { padding: 30px 0 50px; }
    .fy-post-thumb { height: 150px; }
    .fy-post-title { font-size: 14px; }
    .fy-article-body { padding: 24px 18px; font-size: 14px; }
    .fy-article-cta { padding: 30px 20px; }
    .fy-article-cta h3 { font-size: 17px; }
    .fy-post-header-meta { font-size: 12px; }
    .fy-blog-sidebar { margin-top: 30px; }
}

/* Extra small */
@media (max-width: 480px) {
    .fy-hero {
        padding: 90px 0 30px;
    }

    .fy-hero-title {
        font-size: 19px;
    }

    .fy-hero-subtitle {
        font-size: 13px;
    }

    .fy-hero-features li {
        font-size: 12px;
    }

    .fy-stat-number {
        font-size: 18px;
    }

    .fy-brand img {
        height: 32px;
    }

    .fy-navbar .fy-nav-actions .fy-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}
