/*
Theme Name: Nova Sales
Theme URI: https://nova-sales-canvas.lovable.app/
Author: Antigravity
Author URI: https://google.com
Description: A premium dark-mode SaaS theme with glassmorphism and vibrant gradients.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, glassmorphism, saas, landing-page, responsive
Text Domain: nova-sales
*/

:root {
    --bg-main: #06070a;
    --text-heading: #f8fafc;
    --text-body: #7588a3;
    --primary-gradient: linear-gradient(135deg, #7156F5 0%, #B83DF5 50%, #F425AF 100%);
    --glass-bg: rgba(15, 18, 26, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-glow: rgba(113, 86, 245, 0.3);
    --font-heading: Inter, system-ui, sans-serif;
    --font-body: Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
    border: none;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-heading);
    border-radius: 20px;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

/* Header */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    /* Restrict max width specific to header pill */
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(19, 22, 32, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(19, 22, 32, 0.9);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    top: 10px;
    /* Slight movement on scroll */
}

/* Header Layout - Flexbox with Absolute Center for Menu */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 0;
    position: relative;
    /* Context for absolute nav */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    text-decoration: none;
    z-index: 2;
    /* Ensure above nav if overlap */
}

/* Menu Items */
.main-nav {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 4px;
    /* Small gap for pills */
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #94a3b8;
    /* Muted slate */
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: inline-block;
}

.main-nav a:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.05);
}

/* Header Actions */
.header-actions {
    justify-self: end;
    display: flex;
    gap: 12px;
}

.header-actions .btn {
    padding: 5px 20px;
    font-size: 14px;
    border-radius: 14px;
    /* Matching the rounded vibe */
}

/* Mobile Responsive Header */
@media (max-width: 1024px) {
    .site-header {
        width: 100%;
        top: 0;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: 16px 20px;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
    }

    .main-nav {
        display: none;
        /* Hide menu on mobile for now */
    }

    .header-actions {
        display: none;
        /* Hide actions or simplify */
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
    /* Stretch to make side cards equal height */
    max-width: 1152px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(15, 18, 26, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin: 24px 0;
    /* Creates the shorter height effect relative to Featured */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 80px rgba(113, 86, 245, 0.6), inset 0 0 30px rgba(113, 86, 245, 0.1);
}

.pricing-card.featured {
    border: 1px solid rgba(118, 92, 255, 0.5);
    box-shadow: 0 0 80px rgba(113, 86, 245, 0.4), inset 0 0 30px rgba(113, 86, 245, 0.1);
    /* Enhanced Glow */
    transform: scale(1.05);
    position: relative;
    background: rgba(19, 23, 33, 0.8);
    padding-top: 42px;
    padding-bottom: 42px;
    z-index: 10;
    margin: 0;
    /* Full height */
}


/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.pricing-price {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
}

/* Feature List */
.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.pricing-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 15px;
}

.pricing-features li svg {
    color: #b83df5;
    /* Feature check color */
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.pricing-card.featured .pricing-features li svg {
    color: #f425af;
    /* Different tint for Pro */
}

/* Buttons */
.btn-pricing {
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Standard Plan Button */
.btn-pricing.outline {
    background: rgba(113, 86, 245, 0.05);
    border: 1px solid rgba(113, 86, 245, 0.3);
    color: #a78bfa;
}

.btn-pricing.outline:hover {
    background: rgba(113, 86, 245, 0.1);
    color: white;
    border-color: rgba(113, 86, 245, 0.6);
}

/* Featured Plan Button */
.btn-pricing.gradient {
    background: var(--primary-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(113, 86, 245, 0.4);
}

.btn-pricing.gradient:hover {
    box-shadow: 0 6px 30px rgba(113, 86, 245, 0.6);
    transform: translateY(-2px);
}

/* Pricing Icon & Header Styles */
.pricing-header.centered-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.plan-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: white;
}

.plan-icon.gradient-blue {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    box-shadow: 0 8px 16px -4px rgba(56, 189, 248, 0.4);
}

.plan-icon.gradient-purple {
    background: linear-gradient(135deg, #7156f5 0%, #f425af 100%);
    box-shadow: 0 8px 16px -4px rgba(113, 86, 245, 0.4);
}

.plan-icon.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 8px 16px -4px rgba(249, 115, 22, 0.4);
}

.plan-subtitle {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.plan-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Update SVG size inside icon */
.plan-icon svg {
    width: 32px;
    height: 32px;
}

/* New Pricing Price Styles */
.pricing-price-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.price-value {
    font-size: 46px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.price-unit {
    font-size: 18px;
    font-weight: 400;
    color: #94a3b8;
    vertical-align: baseline;
    margin-left: 6px;
}

.price-subtext {
    color: #64748b;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

/* Check Icon Styles */
.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* margin-right: 12px; */
}

.check-icon svg {
    width: 10px;
    height: 10px;
    color: white !important;
}

.check-icon.gradient-blue {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
}

.check-icon.gradient-purple {
    background: linear-gradient(135deg, #7156f5 0%, #f425af 100%);
}

.check-icon.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Section Tag Badge */
.section-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 18, 26, 0.8);
    border: 1px solid rgba(113, 86, 245, 0.2);
    border-radius: 20px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(113, 86, 245, 0.1);
}

.section-tag-badge svg {
    color: #a78bfa;
    width: 16px;
    height: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(15, 18, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 18, 26, 0.6);
    border-color: rgba(113, 86, 245, 0.3);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-heading);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 18px;
}

.author-avatar.gradient-blue {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
}

.author-avatar.gradient-purple {
    background: linear-gradient(135deg, #7156f5 0%, #f425af 100%);
}

.author-avatar.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.author-info h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.author-info span {
    color: #94a3b8;
    font-size: 14px;
}

/* Cross Platform Section */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.platform-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.platform-item:hover .platform-icon-box {
    background: rgba(113, 86, 245, 0.1);
    border-color: rgba(113, 86, 245, 0.5);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(113, 86, 245, 0.3);
}

.platform-item span {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 992px) {
    #cross-platform>.container>div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .platform-grid {
        justify-content: center;
    }
}

/* Cross-Platform Download Buttons (Pill Design) */
.btn-platform-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: rgba(14, 16, 21, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    /* Purple tint border */
    border-radius: 50px;
    color: #a78bfa;
    /* Light purple text */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-platform-download svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-platform-download:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

/* News Section Styles */
.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    /* Glassmorphic Dark Card */
    background: rgba(14, 16, 21, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);

    /* Rounded Box */
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
    /* Ensures equal height in grid */
}

@media (max-width: 1024px) {
    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .news-grid-3 {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.news-thumb {
    position: relative;
    padding-top: 60%;
    /* Aspect Ratio */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
    transform: scale(1.05);
}

.news-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f472b6;
    /* Pink/Red accent */
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: block;
}

.news-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #fff;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.news-title a:hover {
    color: #a78bfa;
}

.news-excerpt {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.news-link:hover {
    gap: 12px;
    color: #c4b5fd;
}

.btn-news-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: rgba(14, 16, 21, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-news-view-more:hover {
    background: rgba(139, 92, 246, 0.1);
    color: white;
    border-color: #8b5cf6;
    gap: 12px;
}

/* Hero Button Customizations */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 36px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    /* Pill shape */
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1;
}

/* Primary Button: Purple -> Pink Gradient */
.hero-btn-primary {
    background: linear-gradient(to right, #8b5cf6, #d946ef);
    color: white;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.5);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(139, 92, 246, 0.6);
    filter: brightness(1.1);
}

/* Secondary Button: Dark with Play Circle */
.hero-btn-secondary {
    background: #0f121a;
    /* Very dark background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding-left: 8px;
    /* Less padding on left to accommodate the circle */
    padding-right: 24px;
}

.hero-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: #161b26;
    transform: translateY(-2px);
}

.play-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.play-icon-wrapper svg {
    fill: white;
    width: 12px;
    height: 12px;
    margin-left: 2px;
    /* Optical centering */
}

/* Hero Notes Styles */
.hero-notes {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-note-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    /* Muted slate text */
    font-size: 12px;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(250 89% 65%) 0%, hsl(280 90% 60%) 50%, hsl(320 90% 55%) 100%);
    /* Pink/Purple accent */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.4);
}

/* Feature Card Styles */
.benefit-card {
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.2);
    background: rgba(14, 16, 21, 0.7);
    /* Slightly darker on hover */
    border-color: rgba(139, 92, 246, 0.3);
}

.cross-platform {
    box-shadow: 0 0 80px rgba(113, 86, 245, 0.4), inset 0 0 30px rgba(113, 86, 245, 0.1);
    transition: transform 0.3s ease;
}

.cross-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 80px rgba(113, 86, 245, 0.6), inset 0 0 30px rgba(113, 86, 245, 0.2);
}

/* Glow Pulse Animation */
@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}



.glow-pulse {
    animation: glow-pulse 4s ease-in-out infinite;
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.hero-section .gradient-hero {
    background: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(250 89% 65% / .25) 0%, transparent 60%);
}

.hero-section .gradient-mesh {
    background: radial-gradient(at 40% 20%, hsl(280 90% 60% / .15) 0%, transparent 45%), radial-gradient(at 80% 50%, hsl(199 89% 60% / .12) 0%, transparent 50%), radial-gradient(at 10% 80%, hsl(320 90% 55% / .1) 0%, transparent 45%);
}

.hero-section .inset-0 {
    position: absolute;
    /* top: 0;
    bottom: 0;
    right: 0;
    left: 0; */
}

/* Single Post Layout */
.single-post-container {
    padding-top: 120px;
    /* Space for fixed header */
    padding-bottom: 80px;
}

.single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    /* Content + Sidebar */
    gap: 50px;
}

@media (max-width: 900px) {
    .single-layout {
        grid-template-columns: 1fr;
        /* Stack on mobile/tablet */
    }
}

/* Article Styling */
.single-article {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
}

.single-article .post-thumbnail {
    margin: -1px -1px 0 -1px;
    /* Hug borders */
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    height: 400px;
    /* Reduced Height */
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Mobile Featured Image */
@media (max-width: 768px) {
    .single-article .post-thumbnail {
        height: 200px;
        /* Compact mobile height */
    }
}

.article-content-wrapper {
    padding: 60px;
    /* Increased padding */
}

@media (max-width: 600px) {
    .article-content-wrapper {
        padding: 24px;
    }
}

.entry-meta {
    margin-bottom: 16px;
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.entry-meta span:not(:last-child)::after {
    content: "•";
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.2);
}

/* H1: Main Title */
.entry-title {
    font-size: 36px;
    /* Reduced from 42px */
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .entry-title {
        font-size: 28px;
        /* Mobile size */
    }
}

/* Article Typography */
.entry-content {
    color: #cbd5e1;
    /* Light slate */
    font-size: 18px;
    line-height: 1.8;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

@media (max-width: 768px) {
    .entry-content {
        font-size: 16px;
        /* Slightly smaller text */
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }
}

.entry-content p {
    margin-bottom: 24px;
}

.entry-content h2,
.entry-content h3 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.entry-content h2 {
    font-size: 24px;
    /* Reduced from 28px */
}

.entry-content h3 {
    font-size: 20px;
    /* Reduced from 24px */
}

@media (max-width: 768px) {
    .entry-content h2 {
        font-size: 22px;
    }

    .entry-content h3 {
        font-size: 18px;
    }
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 8px;
}

/* Content Images Responsive */

.entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.entry-content figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
    font-style: italic;
}

/* Laptop/Desktop Limits */
@media (min-width: 1024px) {
    .entry-content img {
        max-height: 600px;
        width: auto;
        /* Allow width to shrink */
        object-fit: contain;
    }
}

/* Mobile Limits */
@media (max-width: 768px) {
    .entry-content img {
        max-height: 400px;
        width: auto;
        object-fit: contain;
    }
}

.entry-content a {
    color: #a78bfa;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.entry-content a:hover {
    color: #c4b5fd;
}

/* Sidebar Styling */
.widget-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    padding: 30px;
    border-radius: 24px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
    display: block;
}

.widget a:hover {
    color: #a78bfa;
    transform: translateX(5px);
}

/* Pagination */
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pagination .page-numbers:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.pagination .page-numbers.current {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
}

/* Archive List Layout */
.archive-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.archive-item {
    display: flex;
    gap: 30px;
    padding: 24px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.archive-item:hover {
    transform: translateY(-5px);
    background: rgba(14, 16, 21, 0.7);
    border-color: rgba(139, 92, 246, 0.3);
}

.archive-item-image {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.archive-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-item:hover .archive-item-image img {
    transform: scale(1.05);
}

.no-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.archive-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.archive-item-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.archive-item-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.archive-item-title a:hover {
    color: #a78bfa;
}

.archive-item-excerpt {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.2s;
}

.read-more-link:hover {
    gap: 12px;
    color: #c4b5fd;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

.cat-link {
    color: #a78bfa;
    font-weight: 600;
}

@media (max-width: 768px) {
    .archive-item {
        flex-direction: column;
        align-items: stretch;
    }

    .archive-item-image {
        width: 100%;
        height: 200px;
    }
}

/* Custom Recent Posts Widget */
.nova-recent-posts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Featured Post (Big) */
.nova-featured-post .nova-fp-thumb {
    display: block;
    width: 100%;
    height: 200px;
    /* Adjust height as needed */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.nova-featured-post .nova-fp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nova-featured-post:hover .nova-fp-thumb img {
    transform: scale(1.05);
}

.nova-fp-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
}

.nova-fp-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.nova-fp-title a:hover {
    color: #a78bfa;
}

/* Grid Posts (Small) */
.nova-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.nova-grid-post {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nova-gp-thumb {
    display: block;
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #1e293b;
}

.nova-gp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nova-gp-title {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nova-gp-title a {
    color: #cbd5e1;
    text-decoration: none;
}

.nova-gp-title a:hover {
    color: #fff;
}

/* Tech Background Container */
.tech-bg-container {
    background: radial-gradient(circle at 50% -20%, #2e1065 0%, #0f172a 60%, #020617 100%) !important;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(118, 92, 255, 0.5);
    box-shadow:
        0 0 80px rgba(113, 86, 245, 0.4), inset 0 0 30px rgba(113, 86, 245, 0.1);
}

.tech-bg-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 80px rgba(113, 86, 245, 0.6), inset 0 0 30px rgba(113, 86, 245, 0.2);
}

.tech-bg-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.tech-bg-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05), transparent 40%);
    animation: tech-pulse 15s infinite linear;
    pointer-events: none;
    z-index: 0;
}

@keyframes tech-pulse {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* CTA Section Styles */
.cta-box {
    padding: 80px;
    text-align: center;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(113, 86, 245, 0.1) 0%, rgba(244, 37, 175, 0.1) 100%);
    z-index: -1;
}

.cta-title {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.cta-desc {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-btn-primary {
    padding: 16px 36px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
}

.cta-btn-outline {
    background: #0f111a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Mobile Responsiveness for CTA */
@media (max-width: 768px) {
    .cta-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .cta-title br {
        display: none;
    }

    .cta-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* Footer Styles */
.site-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    opacity: 0.5;
    font-size: 14px;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* Features Section Styles */
.features-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.feature-item {
    padding: 20px 0 20px 45px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-marker {
    position: absolute;
    left: 11px;
    top: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-item.active .feature-marker {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(113, 86, 245, 0.2);
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.feature-item.active h3 {
    color: #fff;
}

.feature-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    display: none;
    animation: fadeIn 0.3s ease;
}

.feature-item.active .feature-desc {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Features */
@media (max-width: 900px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-image-container {
        order: -1;
        /* Ensure image stays on top */
    }

    .timeline-line {
        left: 9px;
    }

    .feature-item {
        padding-left: 35px;
    }

    .feature-marker {
        left: 5px;
    }
}

/* Mobile Responsiveness for Hero Buttons */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 80%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 12px;

    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

p.wp-caption-text {
    text-align: center;
    font-size: 12px;
}