/* Inner pages — load after SiftSphere-base.css */

body.no-scroll {
    overflow: hidden;
}

a.blog-card-image {
    position: relative;
    display: block;
    color: inherit;
}

/* Blog list / related: base theme hides last card at tablet — restore for full archives */
@media (max-width: 1024px) {
    .page-blog .blog-grid .blog-card:last-child,
    .page-blog-post .blog-grid .blog-card:last-child {
        display: block !important;
    }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative;
    padding: 140px 0 64px;
    background: var(--dark-bg);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 15% -10%, rgba(255, 123, 0, 0.12), transparent),
        radial-gradient(ellipse 50% 40% at 95% 70%, rgba(255, 123, 0, 0.06), transparent);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-breadcrumb a {
    color: var(--text-secondary);
}

.page-breadcrumb a:hover {
    color: rgba(var(--accent));
}

.page-breadcrumb span.sep {
    opacity: 0.5;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-hero-title .accent {
    background: linear-gradient(135deg, rgba(var(--accent)), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-lede {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

.navbar-links a.nav-active {
    color: var(--white);
}

.navbar-links a.nav-active::after {
    width: 100%;
}

.section-header-left {
    text-align: left;
}



/* ---------- Article (blog single) ---------- */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-meta .meta-tag {
    background: rgba(var(--accent));
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.article-body {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.85;
}

.article-body h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: clamp(24px, 3vw, 30px);
    margin: 44px 0 18px;
    letter-spacing: -0.5px;
}

.article-body h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 21px;
    margin: 32px 0 12px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    border-left: 3px solid rgba(var(--accent));
    padding-left: 22px;
    margin: 28px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
}

.article-lead {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: 28px;
}

.article-thumb {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    border: 1px solid var(--dark-border);
}

.article-thumb img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--white);
}

.sidebar-share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sidebar-share a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.sidebar-share a:hover {
    border-color: rgba(var(--accent));
    color: rgba(var(--accent));
}

.sidebar-recent {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-recent-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.sidebar-recent-item:hover {
    opacity: 0.8;
}

.sidebar-recent-img {
    width: 64px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.sidebar-recent-date {
    font-size: 12px;
    color: var(--text-muted);
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

.article-tags span {
    font-size: 13px;
    color: var(--text-muted);
    margin-right: 4px;
}

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

    .article-sidebar {
        position: static;
        order: -1;
    }
}

/* ---------- Product Single ---------- */
.product-page .section-title , .product-page .service-title{
    font-family: var(--font-body) !important;
}
.product-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.product-detail-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
}

.product-detail-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-detail-head .inline-badge {
    display: inline-block;
    background: rgba(255, 123, 0, 0.92);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin: 20px 0 28px;
    flex-wrap: wrap;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: rgba(var(--accent));
}

.product-price-note {
    font-size: 14px;
    color: var(--text-muted);
}

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

.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-check-list li i {
    color: rgba(var(--accent));
    margin-top: 3px;
    flex-shrink: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.spec-cell {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.spec-value {
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 768px) {
    .product-detail-hero {
        grid-template-columns: 1fr;
    }
}

/* ---------- About: values / team ---------- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: rgba(255, 123, 0, 0.2);
    transform: translateY(-4px);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 123, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: rgba(var(--accent));
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

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

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.team-member-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.team-member-card:hover {
    border-color: rgba(255, 123, 0, 0.2);
    transform: translateY(-4px);
}

.team-member-img {
    height: 220px;
    overflow: hidden;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-member-card:hover .team-member-img img {
    transform: scale(1.05);
}

.team-member-body {
    padding: 24px;
}

.team-member-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 13px;
    font-weight: 600;
    color: rgba(var(--accent));
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 12px;
}

.team-member-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

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

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

/* ---------- Blog pagination ---------- */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.blog-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
    text-decoration: none;
}

.blog-page-btn:hover {
    background: rgba(255, 123, 0, 0.1);
    border-color: rgba(255, 123, 0, 0.3);
    color: rgba(var(--accent));
}

.blog-page-btn.active {
    background: rgba(var(--accent));
    border-color: rgba(var(--accent));
    color: var(--white);
}

.blog-page-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ---------- CTA strip ---------- */
.cta-strip {
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.12), rgba(26, 26, 26, 0.95));
    border: 1px solid rgba(255, 123, 0, 0.22);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    margin-top: 48px;
}

.cta-strip h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 12px;
    color: var(--white);
}

.cta-strip p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-strip .btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

 /* ===== HERO ===== */
.pro-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    background-image: radial-gradient(125% 125% at 50% 90%, #00000000 40%, rgba(var(--accent)) 100%);
}

.pro-hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.pro-hero-bg-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(var(--accent));
    top: -100px;
    right: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

.pro-hero-bg-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(var(--accent));
    bottom: -50px;
    left: -100px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.pro-hero-bg-orb.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(var(--accent));
    top: 50%;
    left: 40%;
    animation: floatOrb 6s ease-in-out infinite 2s;
    z-index:20;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.pro-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(var(--accent), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent), 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.pro-hero .container {
    align-items: center;
    position: relative;
    z-index: 1;
}

.pro-hero-content {
    text-align:center;
}

.pro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--accent), 0.15);
    border: 1px solid rgba(var(--accent), 0.3);
    border-radius: 50px;
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 25px;
    font-weight:800;
    font-family: var(--font-heading);
}

.pro-hero-badge::before {
    width: 8px;
    height: 8px;
    background: rgba(var(--accent));
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.pro-hero h1 {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.pro-hero h1 .highlight {
    background: rgba(var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-hero p {
    font-size: 18px;
    color: var(--text);
    margin: 40px auto;
    line-height: 1.8;
    text-align: justify;
}

.pro-hero-buttons {
    display:flex;
    gap: 16px;
    margin-bottom: 50px;
    justify-content: center; 
    
}

.pro-hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    background: rgba(var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.pro-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
}

.pro-hero-card-main {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(var(--accent), 0.15);
    box-shadow: var(--shadow);
    position: relative;
}

.pro-hero-card-main img{
    border-radius:10px;
}

.pro-hero-card-main::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: var(--gradient-1);
    z-index: -1;
    opacity: 0.3;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.card-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.card-name {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.card-role {
    font-size: 12px;
    color: var(--text);
}

.card-status {
    padding: 5px 12px;
    background: rgba(0, 206, 201, 0.15);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-chart {
    height: 120px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100%;
    padding-top: 10px;
}

.chart-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
    position: relative;
}

.chart-bar.active {
    background: var(--gradient-1);
}

.chart-bar.inactive {
    background: rgba(108, 92, 231, 0.15);
}

.card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.metric-box {
    padding: 15px;
    background: rgba(108, 92, 231, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.metric-label {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 5px;
}

.metric-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.metric-change {
    font-size: 12px;
    color: var(--secondary);
    margin-top: 3px;
}

.floating-card {
    position: absolute;
    background: var(--dark-surface);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(var(--accent) 0.15);
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 100px;
    left: -40px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}

.floating-card .fc-icon.green {
    background: rgba(0, 206, 201, 0.15);
}

.floating-card .fc-icon.purple {
    background: rgba(168, 85, 247, 0.15);
}

.floating-card .fc-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.floating-card .fc-sub {
    font-size: 11px;
    color: var(--text);
}

/* ===== SECTION COMMON ===== */

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.12);
    border-radius: 50px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


    /* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pro-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pro-hero-content {
        order: 1;
    }

    .pro-hero-visual {
        order: 2;
    }

    .pro-hero h1 {
        font-size: 48px;
    }

    .pro-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .pro-hero-buttons {
        justify-content: center;
    }

    .pro-hero-stats {
        justify-content: center;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content > p {
        text-align: center;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hamburger {
        display: flex;
    }

    .pro-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .pro-hero p {
        font-size: 16px;
    }

    .pro-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pro-hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }



    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    #features{
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .pro-hero h1 {
        font-size: 30px;
    }

    .stat-item h3 {
        font-size: 26px;
    }
}


/* ============================================
    FAQ
    ============================================ */
.faq {
    position: relative;
    background:var(--dark-surface);
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--dark-card);
    transition: border-color var(--transition-base);
}

.faq-item.open {
    border-color: rgba(var(--accent), 0.25);
}

.faq-q {
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: none;
    transition: color var(--transition-base);
}

.faq-q:hover {
    color: rgba(var(--accent));
}

.faq-q i {
    font-size: 14px;
    color: rgba(var(--accent));
    transition: transform var(--transition-base);
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a-inner {
    padding: 0 22px 22px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================
    CTA BAND
    ============================================ */
.cta-band {
    padding: 80px 0;
    position: relative;
}

.cta-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    background: linear-gradient(135deg, rgba(var(--accent)), rgba(26, 26, 26, 0.95));
    opacity: 0.3;
}

.cta-band-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    max-width: 520px;
}

.cta-band-text p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

#pro-about{
    text-align:center;
}
#pro-about p{
    text-align: left;
}



/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.glass-header {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Dashboard UI CSS Construction */
.sidebar-item-active {
    background: rgba(56, 189, 248, 0.15);
    border-left: 3px solid #38bdf8;
    color: #38bdf8;
}

.bar-chart .bar {
    transition: height 1s ease-in-out;
}

/* Background Grid Pattern */
.bg-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}


/* ///Features */

#features{
  margin: 0 auto;
  position: relative;
  z-index: 10;
  top: -90px;
  padding-bottom:0px !important;
  grid-template-columns: repeat(4, 1fr);
}

#features .service-card{
    padding:20px;
    border-radius:10px;
    background: var(--dark-card);
} 

#features .service-card p{
    margin:20px auto;
    text-align: left;
    font-size:14px;
}

#features .service-card li{
    list-style: disc;
    text-align: left;
    font-size:14px;
    margin-left: 15px;
}