/*
Theme Name: TrueByte
Theme URI: https://truebyteinnovation.com
Author: TrueByte Innovation
Author URI: https://truebyteinnovation.com
Description: A modern, professional WordPress theme designed for corporate software companies. Features a clean, responsive design with smooth animations and seamless page transitions.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: truebyte
Tags: corporate, business, software, modern, responsive, clean, professional
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #00d4aa;
    --accent-color: #6366f1;
    --text-dark: #0f172a;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 3rem; 
    font-weight: 800;
    line-height: 1.1;
}

h2 { 
    font-size: 2.25rem; 
    font-weight: 700;
}

h3 { 
    font-size: 1.875rem; 
}

h4 { 
    font-size: 1.5rem; 
}

h5 { 
    font-size: 1.25rem; 
}

h6 { 
    font-size: 1rem; 
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    font-size: 1.0625rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

/* Ensure header container is always consistent */
.site-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    width: 100%;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

.branding-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
}

.branding-link:hover {
    opacity: 0.9;
}

.custom-logo,
.branding-link img {
    max-height: 45px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.branding-link .custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 1;
}

.site-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    letter-spacing: -0.01em;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.site-logo {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.main-navigation {
    flex-shrink: 0;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 300px);
    padding: 4rem 0;
}

/* Remove default padding for pages that start with hero sections */
.site-main.landing-page,
.site-main.product-page,
.site-main.pricing-page,
.site-main.signup-page,
.site-main.careers-page,
.site-main.job-detail-page {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* Ensure careers page sections are full width but content is constrained */
.careers-page section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Ensure sections use proper container spacing */
.careers-page section .container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Hide ALL default WordPress page content for careers page */
/* But NOT the job cards (position-card-innovative) */
.careers-page .entry-title,
.careers-page h1.entry-title,
.careers-page .entry-header,
.careers-page .page,
.careers-page article.page:not(.position-card-innovative),
.careers-page article[class*="post-"]:not(.position-card-innovative),
.careers-page article[class*="type-page"]:not(.position-card-innovative),
.careers-page article[class*="hentry"]:not(.position-card-innovative),
.careers-page article[id^="post-"]:not(.position-card-innovative),
.careers-page article[id*="post-"]:not(.position-card-innovative),
.careers-page article.status-publish:not(.position-card-innovative),
.careers-page article[id="post-15"]:not(.position-card-innovative),
.careers-page article.post-15:not(.position-card-innovative),
.careers-page header.entry-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ensure job cards are visible */
.careers-page article.position-card-innovative {
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    position: relative !important;
    left: auto !important;
    width: auto !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.careers-page .content-area {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide any default WordPress content wrapper for careers */
.careers-page .entry-content {
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
}

/* Ensure careers page containers have proper spacing */
.careers-page .container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    width: 100% !important;
}

/* Show only the shortcode content */
.careers-page > *:not(section) {
    display: none !important;
}

.careers-page section {
    display: block !important;
}

.content-area {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Override content-area for careers page */
.careers-page .content-area {
    max-width: 100%;
    width: 100%;
}

/* Posts and Pages */
.post, .page {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.post:hover, .page:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.entry-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.entry-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.entry-title a:hover {
    color: var(--primary-color);
}

.entry-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.entry-content {
    line-height: 1.8;
    color: var(--text-medium);
    font-size: 1.0625rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content a:hover {
    color: var(--primary-dark);
}

.post-thumbnail {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.post-thumbnail a:hover img {
    transform: scale(1.02);
}

.entry-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.entry-footer .entry-meta {
    font-size: 0.875rem;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.entry-footer .cat-links a,
.entry-footer .tags-links a {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-light);
    color: var(--text-medium);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.entry-footer .cat-links a:hover,
.entry-footer .tags-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   BUTTON SYSTEM - Consolidated & Optimized
   ============================================ */

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Button Content (text, icons) */
.btn * {
    position: relative;
    z-index: 2;
    transition: inherit;
}

/* Button Variants */

/* Primary Button - White background with primary color text (for dark backgrounds) */
.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary * {
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #f8fafc;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover * {
    color: var(--primary-color);
}

/* Primary Button - Solid primary color (for light backgrounds) */
.btn-primary.solid,
.product-cta .btn-primary,
.pricing-cta-content .btn-primary,
.product-cta-section .btn-primary,
.product-hero-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
}

.btn-primary.solid *,
.product-cta .btn-primary *,
.pricing-cta-content .btn-primary *,
.product-cta-section .btn-primary *,
.product-hero-buttons .btn-primary * {
    color: white;
}

.btn-primary.solid:hover,
.product-cta .btn-primary:hover,
.pricing-cta-content .btn-primary:hover,
.product-cta-section .btn-primary:hover,
.product-hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.btn-primary.solid:hover *,
.product-cta .btn-primary:hover *,
.pricing-cta-content .btn-primary:hover *,
.product-cta-section .btn-primary:hover *,
.product-hero-buttons .btn-primary:hover * {
    color: white;
}

/* Outline Button - Transparent with border (for dark backgrounds) */
.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

.btn-outline * {
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.btn-outline:hover * {
    color: white;
}

/* Outline Button - Primary color border (for light backgrounds) */
.btn-outline.primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    backdrop-filter: none;
}

.btn-outline.primary * {
    color: var(--primary-color);
}

.btn-outline.primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-outline.primary:hover * {
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary * {
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover * {
    color: white;
}

/* Button Sizes */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Button States */
.btn:active {
    transform: translateY(0);
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Button Icon Animation */
.btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Special Effects - Ripple (for product CTA) */
.product-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.product-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-cta .btn span,
.product-cta .btn svg {
    z-index: 3;
    pointer-events: none;
}

/* Pagination */
.posts-navigation,
.pagination {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.posts-navigation .nav-links,
.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.posts-navigation a,
.pagination a,
.posts-navigation span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--bg-white);
    color: var(--text-medium);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.posts-navigation a:hover,
.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.posts-navigation .current,
.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 0;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #64748b;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-copyright p {
    margin: 0;
}

.footer-legal {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-legal-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-legal-menu li {
    margin: 0;
}

.footer-legal-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal-menu a:hover {
    color: white;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.search-form button {
    padding: 0.875rem 1.5rem;
}

/* No Results */
.no-results {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.no-results .entry-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }

    .site-main {
        padding: 2rem 0;
    }

    .post, .page {
        padding: 0;
    }

    h1 { 
        font-size: 2rem; 
    }
    
    h2 { 
        font-size: 1.75rem; 
    }
    
    h3 { 
        font-size: 1.5rem; 
    }

    .entry-title {
        font-size: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-legal-menu {
        justify-content: center;
        gap: 1.5rem;
    }

    .content-area {
        max-width: 100%;
    }
}

/* Smooth Page Transitions */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Landing Page Styles */
/* Consistent Page Layout - All Pages */
.landing-page,
.product-page,
.pricing-page,
.signup-page {
    padding: 0;
    margin: 0;
}

/* Ensure no top margin/padding on hero sections - they should start immediately after header */
.landing-page .hero-section,
.product-page .product-hero-section,
.pricing-page .pricing-hero-section,
.signup-page .signup-hero-section {
    margin-top: 0 !important;
    padding-top: 10rem;
}

/* Ensure product page main has no top spacing */
.product-page {
    margin-top: 0;
    padding-top: 0;
}

/* Ensure first section in product page has no top margin */
.product-page > section:first-child {
    margin-top: 0;
}

/* Hero Section - Landing Page */
.hero-section {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 50%, #6366f1 100%);
    color: white;
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.03em;
}

.hero-title .title-line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(120deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Button styles moved to consolidated section above */

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title .title-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
}

.services-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Services Layout - No Boxes */
.services-modern {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 6rem;
}

.service-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.service-modern.service-left .service-content {
    order: 1;
}

.service-modern.service-left .service-visual {
    order: 2;
}

.service-modern.service-right .service-content {
    order: 2;
}

.service-modern.service-right .service-visual {
    order: 1;
}

.service-content {
    position: relative;
}

.service-number-large {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 0;
    pointer-events: none;
}

.service-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.service-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-points li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.25rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.service-modern:hover .service-points li::before {
    transform: scale(1);
}

.service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Image Styles */
.service-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.service-modern:hover .service-image {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Service Image Placeholder */
.service-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: 2px dashed rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modern:hover .service-image-placeholder {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%);
    transform: translateY(-8px);
}

.service-image-placeholder .service-icon-large {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-modern:hover .service-image-placeholder .service-icon-large {
    opacity: 0.3;
    transform: scale(1.1) rotate(5deg);
}

.service-image-placeholder .placeholder-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(0, 102, 255, 0.6);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    white-space: nowrap;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-modern:hover .service-icon-large {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

/* Compact Services Grid */
.services-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.service-compact {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    transition: transform 0.3s ease;
}

.service-compact:hover {
    transform: translateX(8px);
}

.service-compact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-compact:hover .service-compact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.1);
}

.service-compact-content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.service-compact-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* Staggered Animation for Services */
.service-modern {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-modern:nth-child(1) { animation-delay: 0.1s; }
.service-modern:nth-child(2) { animation-delay: 0.3s; }
.service-modern:nth-child(3) { animation-delay: 0.5s; }

.service-compact {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.service-compact:nth-child(1) { animation-delay: 0.7s; }
.service-compact:nth-child(2) { animation-delay: 0.8s; }
.service-compact:nth-child(3) { animation-delay: 0.9s; }

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.about-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.1;
}

.about-text .section-badge {
    margin-bottom: 1.5rem;
}

.about-text .section-title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.contact-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-intro p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Responsive Landing Page */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-support {
        grid-column: 1 / -1;
    }
}

@media (max-width: 968px) {
    .hero-section {
        padding: 6rem 0 5rem;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .title-line {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .features-section,
    .services-section,
    .about-section,
    .contact-section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

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

    .services-modern {
        gap: 5rem;
    }

    .service-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-modern.service-left .service-content,
    .service-modern.service-right .service-content {
        order: 1;
    }

    .service-modern.service-left .service-visual,
    .service-modern.service-right .service-visual {
        order: 2;
    }

    .service-number-large {
        font-size: 6rem;
        top: -1.5rem;
    }

    .service-content h3 {
        font-size: 2rem;
    }

    .service-image,
    .service-image-placeholder {
        max-width: 100%;
    }

    .service-image-placeholder {
        aspect-ratio: 16 / 9;
    }

    .service-image-placeholder .service-icon-large {
        width: 120px;
        height: 120px;
    }

    .service-image-placeholder .placeholder-label {
        font-size: 0.65rem;
        padding: 3px 8px;
        bottom: 12px;
    }

    .services-compact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Blog Page Styles */
.blog-page {
    padding: 0;
}

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Blog Content Section */
.blog-content-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8125rem;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Featured Post */
.featured-post {
    margin-bottom: 4rem;
}

.featured-post-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.featured-post-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.featured-post-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-content:hover .featured-post-image img {
    transform: scale(1.05);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-post-content:hover .post-overlay {
    opacity: 1;
}

.featured-post-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-text .post-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.featured-post-text .post-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.featured-post-text .post-title a:hover {
    color: var(--primary-color);
}

.featured-post-text .post-excerpt {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Blog Posts Grid */
.blog-post {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.blog-post:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-post .post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-thumbnail img {
    transform: scale(1.1);
}

.blog-post .post-thumbnail .post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 255, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post:hover .post-thumbnail .post-overlay {
    opacity: 1;
}

.post-read-time {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    z-index: 2;
}

.post-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta-category {
    margin-bottom: 1rem;
}

.post-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.post-category:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-title a {
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta svg {
    color: var(--text-light);
}

.post-excerpt {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.post-read-more:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.post-read-more svg {
    transition: transform 0.3s ease;
}

.post-read-more:hover svg {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: var(--bg-white);
    color: var(--text-medium);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-decoration: none;
}

.blog-pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.blog-pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* No Results */
.no-results-content {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.no-results-content svg {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.no-results-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.no-results-content p {
    color: var(--text-medium);
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

/* Responsive Blog */
@media (max-width: 968px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1.125rem;
    }

    .featured-post-content {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        min-height: 300px;
    }

    .featured-post-text {
        padding: 2rem;
    }

    .featured-post-text .post-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 4rem 0 3rem;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-filters {
        padding: 1rem;
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .blog-content-section {
        padding: 3rem 0;
    }

    .featured-post {
        margin-bottom: 3rem;
    }

    .featured-post-text {
        padding: 1.5rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .post-title {
        font-size: 1.25rem;
    }
}

/* Blog Landing Page - Technology News Style */
.blog-landing-page {
    padding: 0;
    background: var(--bg-light);
}

/* Blog Landing Hero */
.blog-landing-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.blog-landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.blog-hero-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.section-title svg {
    color: var(--primary-color);
}

.post-count {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.view-all-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.view-all-link svg {
    transition: transform 0.3s ease;
}

.view-all-link:hover svg {
    transform: translateX(4px);
}

/* Featured Posts Section */
.featured-posts-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.main-featured {
    grid-row: 1 / 3;
}

.featured-post-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.featured-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.main-featured .featured-post-image {
    aspect-ratio: 16 / 10;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-card:hover .featured-post-image img {
    transform: scale(1.08);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-post-card:hover .post-overlay {
    opacity: 1;
}

.post-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.featured-post-content {
    padding: 2rem;
}

.main-featured .featured-post-content {
    padding: 2.5rem;
}

.featured-post-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: var(--transition);
}

.main-featured .featured-post-title {
    font-size: 2.25rem;
}

.featured-post-card:hover .featured-post-title {
    color: var(--primary-color);
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.featured-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-post-meta svg {
    color: var(--text-light);
}

.featured-post-excerpt {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.main-featured .featured-post-excerpt {
    font-size: 1.125rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.featured-post-card:hover .read-more-btn {
    gap: 0.75rem;
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.featured-post-card:hover .read-more-btn svg {
    transform: translateX(4px);
}

/* Recent Posts Section */
.recent-posts-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.recent-post-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.recent-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.recent-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.recent-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-post-card:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-card:hover .post-overlay {
    opacity: 1;
}

.recent-post-content {
    padding: 1.5rem;
}

.post-category-tag {
    margin-bottom: 0.75rem;
}

.post-category-tag span {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.recent-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.recent-post-card:hover .recent-post-title {
    color: var(--primary-color);
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.recent-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.recent-post-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Category Posts Section */
.category-posts-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.category-posts-section:nth-child(even) {
    background: var(--bg-light);
}

.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-post-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.category-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.category-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-post-card:hover .category-post-image img {
    transform: scale(1.1);
}

.category-post-card:hover .post-overlay {
    opacity: 1;
}

.category-post-content {
    padding: 1.5rem;
}

.category-post-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.category-post-card:hover .category-post-title {
    color: var(--primary-color);
}

.category-post-meta {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.category-post-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.read-more-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.category-post-card:hover .read-more-link {
    transform: translateX(4px);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.blog-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.blog-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog CTA buttons use base .btn-primary styles */

/* Responsive Blog Landing */
@media (max-width: 1024px) {
    .featured-posts-grid {
        grid-template-columns: 1fr;
    }

    .main-featured {
        grid-row: 1;
    }

    .recent-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-landing-hero {
        padding: 3rem 0 2.5rem;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1.125rem;
    }

    .featured-posts-section,
    .recent-posts-section,
    .category-posts-section {
        padding: 3rem 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .featured-post-content {
        padding: 1.5rem;
    }

    .main-featured .featured-post-content {
        padding: 2rem;
    }

    .featured-post-title {
        font-size: 1.5rem;
    }

    .main-featured .featured-post-title {
        font-size: 1.75rem;
    }

    .recent-posts-grid,
    .category-posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-cta-content h2 {
        font-size: 2rem;
    }

    .blog-cta-content p {
        font-size: 1.125rem;
    }
}

/* Product Showcase Section */
.product-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Hero-like transparent background overlay */
.product-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 82, 204, 0.06) 50%, rgba(99, 102, 241, 0.08) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Floating shapes similar to hero section but more transparent */
.product-showcase-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: float 25s infinite ease-in-out;
}

/* Container styles moved above */

/* Optional: Add floating shapes to product showcase section */
.product-showcase-section .product-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.product-showcase-section .product-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    animation: float 30s infinite ease-in-out;
    filter: blur(40px);
}

.product-showcase-section .product-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.product-showcase-section .product-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation-delay: 8s;
    background: rgba(99, 102, 241, 0.08);
}

.product-showcase-section .product-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 20%;
    animation-delay: 15s;
    background: rgba(0, 102, 255, 0.06);
}

/* Modern Product Features Layout - No Boxes */
.product-features-modern {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 6rem;
}

.product-feature-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.product-feature-modern.feature-left .feature-content {
    order: 1;
}

.product-feature-modern.feature-left .feature-visual {
    order: 2;
}

.product-feature-modern.feature-right .feature-content {
    order: 2;
}

.product-feature-modern.feature-right .feature-visual {
    order: 1;
}

.feature-content {
    position: relative;
}

.feature-number {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 0;
    pointer-events: none;
}

.feature-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.feature-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-points li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.feature-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.25rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.product-feature-modern:hover .feature-points li::before {
    transform: scale(1);
}

.feature-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Image Styles */
.feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.product-feature-modern:hover .feature-image {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Feature Image Placeholder */
.feature-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: 2px dashed rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-feature-modern:hover .feature-image-placeholder {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%);
    transform: translateY(-8px);
}

.feature-image-placeholder .feature-icon-large {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-feature-modern:hover .feature-image-placeholder .feature-icon-large {
    opacity: 0.3;
    transform: scale(1.1) rotate(5deg);
}

.placeholder-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(0, 102, 255, 0.6);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    white-space: nowrap;
}

.feature-icon-large {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-feature-modern:hover .feature-icon-large {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

/* Compact Feature Grid */
.product-features-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.feature-compact {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 0;
    transition: transform 0.3s ease;
}

.feature-compact:hover {
    transform: translateX(8px);
}

.feature-compact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-compact:hover .feature-compact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: scale(1.1);
}

.feature-compact-content h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-compact-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.product-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

/* Enhanced Product Section Header */
.product-showcase-section .section-header {
    margin-bottom: 5rem;
    position: relative;
}

.product-showcase-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.product-showcase-section .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.product-showcase-section .section-badge:hover::before {
    left: 100%;
}

.product-showcase-section .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.product-showcase-section .section-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Staggered Animation for Modern Features */
.product-feature-modern {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.product-feature-modern:nth-child(1) { animation-delay: 0.1s; }
.product-feature-modern:nth-child(2) { animation-delay: 0.3s; }
.product-feature-modern:nth-child(3) { animation-delay: 0.5s; }

.feature-compact {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.feature-compact:nth-child(1) { animation-delay: 0.7s; }
.feature-compact:nth-child(2) { animation-delay: 0.8s; }
.feature-compact:nth-child(3) { animation-delay: 0.9s; }

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

/* Old card styles removed - using modern layout above */

/* Product CTA button styles are defined in the consolidated button section above */

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0 3rem;
    background: var(--bg-light);
}

.how-it-works-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    padding: 2rem 0 1rem;
}

/* Steps Arrow Background */
.steps-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    color: var(--primary-color);
    overflow: visible;
}

.steps-arrow .arrow-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawArrow 2s ease-in-out forwards;
}

@keyframes drawArrow {
    to {
        stroke-dashoffset: 0;
    }
}

.step-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.step-card h3 {
    font-size: 1.375rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.pricing-cta-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.pricing-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Pricing CTA buttons use base .btn-outline styles */

/* Page Template Styles - Consistent Structure */
/* ============================================
   CONSISTENT PAGE TEMPLATE STYLES
   All template pages (Product, Pricing, Signup) 
   use the same header/footer and follow consistent design
   ============================================ */

/* Consistent Page Styles - All Template Pages */
/* Consistent Page Styles - All Template Pages */
.product-page,
.pricing-page,
.signup-page {
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
}

/* Consistent Container Styles - All Pages Use Same Container */
.landing-page section .container,
.product-page section .container,
.pricing-page section .container,
.signup-page section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Ensure header and footer always maintain their own container styles */
.site-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   CONSISTENT HERO SECTION STYLES
   All pages use the same hero section design
   ============================================ */
.product-hero-section,
.pricing-hero-section,
.signup-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-color) 100%);
    padding: 10rem 0 8rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.product-hero-section .container,
.pricing-hero-section .container,
.signup-hero-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.product-hero-section::before,
.pricing-hero-section::before,
.signup-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.product-hero-content,
.pricing-hero-content,
.signup-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.product-hero-badge,
.pricing-hero-badge,
.signup-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-hero-title,
.pricing-hero-title,
.signup-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: white;
    line-height: 1.1;
}

.product-hero-subtitle,
.pricing-hero-subtitle,
.signup-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Product hero styles consolidated above in consistent hero section */

.product-hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Overview Section - Consistent with Landing Page Sections */
.product-overview-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.product-overview-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.product-overview-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.product-overview-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.highlight-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.product-overview-image {
    position: relative;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.1;
}

/* Product Features Detailed */
.product-features-detailed {
    padding: 8rem 0;
    background: var(--bg-light);
}

.product-features-detailed .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-detailed-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-detailed-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-detailed-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-detailed-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-detailed-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-detailed-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.feature-detailed-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Comparison Section */
.comparison-section {
    padding: 8rem 0;
    background: var(--bg-white);
}

.comparison-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.comparison-table {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.comparison-row:hover {
    background: var(--bg-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-value {
    text-align: center;
    color: var(--text-medium);
}

.comparison-value.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-product.highlight {
    color: var(--primary-color);
}

/* Product CTA Section */
.product-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.product-cta-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.product-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

/* Pricing Page Styles - Hero styles consolidated above */

/* Pricing Plans Section */
.pricing-plans-section {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: var(--transition);
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    z-index: 2;
}

.pricing-card-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plan-description {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card-body {
    padding: 2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-medium);
}

.plan-features svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card-footer {
    padding: 0 2rem 2rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.pricing-faq {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.pricing-faq h3 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Signup Page Styles */
/* Signup page styles consolidated above - all pages use consistent styling */

/* Signup Form Section */
.signup-form-section {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.signup-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.signup-form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.selected-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.signup-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.signup-intro {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkbox-group {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-hint {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.signup-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.signup-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.signup-divider span {
    background: var(--bg-white);
    padding: 0 1rem;
    color: var(--text-light);
    position: relative;
}

.signup-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.signup-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Signup Benefits */
.signup-benefits {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.signup-benefits h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefits-list svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.benefits-list p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.trust-indicators {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-indicators h4 {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Responsive Product & Pricing Pages */
@media (max-width: 1024px) {
    .product-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-overview-image {
        order: -1;
    }

    .signup-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .product-hero-title,
    .pricing-hero-title,
    .signup-hero-title {
        font-size: 2.5rem;
    }

    .product-features-modern {
        gap: 5rem;
    }

    .product-feature-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-feature-modern.feature-left .feature-content,
    .product-feature-modern.feature-right .feature-content {
        order: 1;
    }

    .product-feature-modern.feature-left .feature-visual,
    .product-feature-modern.feature-right .feature-visual {
        order: 2;
    }

    .feature-number {
        font-size: 6rem;
        top: -1.5rem;
    }

    .feature-content h3 {
        font-size: 2rem;
    }

    .product-features-compact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-image,
    .feature-image-placeholder {
        max-width: 100%;
    }

    .feature-image-placeholder {
        aspect-ratio: 16 / 9;
    }

    .feature-image-placeholder .feature-icon-large {
        width: 120px;
        height: 120px;
    }

    .placeholder-label {
        font-size: 0.65rem;
        padding: 3px 8px;
        bottom: 12px;
    }

    .features-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-showcase-section {
        padding: 5rem 0;
    }

    .product-showcase-section .section-title {
        font-size: 2.5rem;
    }

    .product-feature-card {
        padding: 2rem;
    }

    .product-feature-card .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .steps-arrow {
        display: none; /* Hide arrow on mobile for cleaner look */
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .comparison-value {
        text-align: left;
    }

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

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

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

/* ============================================
   COOKIE CONSENT NOTIFICATION
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-top: 2px solid var(--primary-color);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text svg {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.cookie-btn-dismiss {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hide cookie consent when dismissed */
.cookie-consent.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.25rem 1.5rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .cookie-consent-text {
        min-width: 100%;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.error-404-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.error-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.error-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.error-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

.error-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.error-404-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-404-visual {
    margin-bottom: 3rem;
    position: relative;
}

.error-number {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.error-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    color: var(--primary-color);
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

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

.error-404-text {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.error-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-message {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.error-message p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.error-message p:last-child {
    margin-bottom: 0;
}

.error-message strong {
    color: var(--text-dark);
    font-weight: 700;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.error-search {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-search p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.error-search .search-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.error-search .search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.error-search .search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.error-search .search-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.error-search .search-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.error-404-helpful-links {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.error-404-helpful-links h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.helpful-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.helpful-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-medium);
    transition: var(--transition);
    font-weight: 500;
}

.helpful-link svg {
    color: var(--primary-color);
    transition: var(--transition);
}

.helpful-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    color: var(--text-dark);
}

.helpful-link:hover svg {
    transform: scale(1.1);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .error-404-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .error-number {
        font-size: 8rem;
    }

    .error-icon {
        width: 80px;
        height: 80px;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-subtitle {
        font-size: 1.125rem;
    }

    .error-404-text {
        padding: 2rem 1.5rem;
    }

    .error-message {
        padding: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }

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