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

html {
    scroll-behavior: smooth;
}

/*
 * MODERN DARK THEME WITH ENHANCED VISUALS
 * Updated for slick, modern, and catchy design
 */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%) fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.03) 3px, transparent 3px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    background-position: 0 0, 50px 50px, 25px 25px;
    animation: twinkle 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1.5rem 0;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Global FAQ Section (homepage) */
.faq-section { padding: 4rem 0; background: linear-gradient(180deg, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0.9) 100%); position: relative; }
.faq-section::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 20% 30%,rgba(99,102,241,.15),transparent 60%),radial-gradient(circle at 80% 70%,rgba(236,72,153,.12),transparent 65%); pointer-events:none; }
.faq-section h2 { text-align:center; font-size:2.3rem; margin:0 0 .75rem; font-weight:800; background:linear-gradient(135deg,#a5b4fc 0%,#c084fc 50%,#f0abfc 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.faq-section .section-subtitle { text-align:center; font-size:1.05rem; margin:0 auto 2.5rem; color:#94a3b8; max-width:820px; }
.faq-grid-alternating { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:1.25rem 1.5rem; max-width:1200px; margin:0 auto; }
.faq-item { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:18px; padding:1.25rem 1.4rem; backdrop-filter:blur(12px); transition:.25s; position:relative; }
.faq-item:hover { border-color:rgba(255,255,255,0.18); transform:translateY(-2px); box-shadow:0 6px 18px -6px rgba(0,0,0,.45); }
.faq-question { display:flex; align-items:center; justify-content:space-between; gap:1rem; cursor:pointer; user-select:none; }
.faq-question h4 { margin:0; font-size:1rem; font-weight:600; line-height:1.35; color:#f1f5f9; }
.faq-toggle { font-size:1.4rem; line-height:1; font-weight:600; color:#818cf8; transition:.3s; }
.faq-item.active .faq-toggle { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease,padding-top .3s ease; }
.faq-item.active .faq-answer { max-height:240px; padding-top:.75rem; }
.faq-answer p { margin:0; font-size:.88rem; line-height:1.6; color:#cbd5e1; }
@media (max-width:680px){
    .faq-section { padding:3rem 0; }
    .faq-section h2 { font-size:2rem; }
    .faq-grid-alternating { gap:1rem; }
    .faq-item { padding:1rem 1.1rem; }
    .faq-question h4 { font-size:.95rem; }
}

.navbar:hover {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #f1f5f9;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 0.5rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::before {
    transform: scale(1);
}

.nav-menu a:hover {
    color: #a78bfa;
    transform: translateY(-2px);
}

/* Font Awesome Icon Styles */
.nav-logo i,
.nav-menu i {
    margin-right: 0.5rem;
    font-size: 1.1em;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-menu a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-logo i {
    color: #667eea;
    font-size: 1.3em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.05) 0%, transparent 70%),
                conic-gradient(from 0deg at 50% 50%, rgba(139, 92, 246, 0.1) 0deg, rgba(59, 130, 246, 0.1) 120deg, rgba(16, 185, 129, 0.1) 240deg, rgba(139, 92, 246, 0.1) 360deg);
    animation: float 20s ease-in-out infinite, rotate 30s linear infinite;
}

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

@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-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: block; /* single column to allow full-width search */
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 20%, #a78bfa 40%, #8b5cf6 60%, #667eea 80%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 2rem !important;
    text-decoration: none;
    font-weight: 600;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    display: inline-block;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.13);
    border: none;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.4), 0 4px 16px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border: 2px solid #a78bfa;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.cta-button i {
    margin-right: 0.5rem;
    font-size: 1em;
    transition: all 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

/* -----------------------------------------------
   Star Rating Visibility Control
   Hide all star/quick rating UI on product profile pages
   EXCEPT the Software Showroom profile (body.showroom-page)
   ----------------------------------------------- */
body.product-page:not(.showroom-page) .quick-rating,
body.product-page:not(.showroom-page) .testimonial-rating,
body.product-page:not(.showroom-page) .testimonial-rating .stars,
body.product-page:not(.showroom-page) .stars {
    display: none !important;
}

.floating-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
    position: relative;
}

.card-demo {
    padding: 1.5rem 2rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1.5px 8px rgba(0,0,0,0.2);
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: cardFlyInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    color: #f1f5f9;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-demo:hover::before {
    opacity: 1;
}

.card-demo:hover {
    transform: translateY(-8px) scale(1.02) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(139, 92, 246, 0.2);
    background: rgba(45, 55, 72, 0.9);
    border-color: rgba(139, 92, 246, 0.3);
}

.card-demo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.card-demo:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

.card-demo.use-case {
    animation-delay: 0.2s;
}

.card-demo.use-case::after {
    content: "🎯";
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-demo.integration {
    animation-delay: 0.5s;
}

.card-demo.integration::after {
    content: "🔗";
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-demo.demo {
    animation-delay: 0.8s;
}

.card-demo.demo::after {
    content: "🎮";
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-demo.integration {
    border-left-color: #3b82f6;
    animation-delay: 0.5s;
}

.card-demo.integration::before {
    content: "🔗";
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-demo.demo {
    border-left-color: #06b6d4;
    animation-delay: 0.8s;
}

.card-demo.demo::before {
    content: "🎮";
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@keyframes cardFlyInUp {
    from { opacity: 0; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* (Former) Search Section styles removed after moving search into hero */
/* Hero integrated search sizing */
.hero-search { 
    max-width: 520px !important; 
    width:100%;
}
.hero-search .search-box { 
    transform: scale(1.12); 
    transform-origin: top left; 
    box-shadow: 0 8px 40px rgba(139,92,246,0.25);
}
@media (max-width: 900px){
    .hero-search .search-box { transform: scale(1); }
    .hero-search { max-width:100% !important; }
}

/* New wide hero primary search */
.hero-primary-search { 
    margin-top: 3rem; 
    max-width: 100%;
}
.hero-search-inner { 
    display: flex; 
    align-items: stretch; 
    background: rgba(30,41,59,0.55); 
    backdrop-filter: blur(18px); 
    border-radius: 3.5rem; 
    padding: 0.75rem 0.75rem 0.75rem 1.5rem; 
    box-shadow: 0 12px 48px -8px rgba(109,40,217,0.35), 0 4px 24px -4px rgba(30,41,59,0.55); 
    border: 1px solid rgba(148,163,184,0.15);
}
.hero-search-input { 
    flex: 1; 
    background: transparent; 
    border: none; 
    font-size: 1.25rem; 
    padding: 1.25rem 1rem; 
    outline: none; 
    color: #f1f5f9; 
    font-weight: 500; 
}
.hero-search-input::placeholder { color:#64748b; }
.hero-search-btn { 
    background: linear-gradient(135deg,#8b5cf6 0%, #6366f1 40%, #3b82f6 100%); 
    border: none; 
    padding: 1.25rem 2.75rem; 
    font-size: 1.15rem; 
    font-weight: 600; 
    color: #fff; 
    border-radius: 3rem; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: .65rem; 
    box-shadow: 0 6px 28px -4px rgba(99,102,241,0.55), 0 2px 10px -2px rgba(0,0,0,0.4); 
    transition: background .35s, transform .25s, box-shadow .35s; 
}
.hero-search-btn:hover { 
    background: linear-gradient(135deg,#7c3aed 0%, #4f46e5 50%, #2563eb 100%); 
    transform: translateY(-3px); 
    box-shadow: 0 10px 36px -4px rgba(99,102,241,0.65), 0 4px 16px -2px rgba(0,0,0,0.5);
}
.hero-search-btn:active { transform: translateY(0); }
.hero-search-btn i { font-size:1.1rem; }
.hero-search-suggestions { 
    margin-top: 0.85rem; 
    display: flex; 
    flex-wrap: wrap; 
    gap: .75rem; 
    font-size: .85rem; 
    align-items: center; 
    color: #64748b; 
}
.hero-search-suggestions span { 
    text-transform: uppercase; 
    letter-spacing: .06em; 
    font-size: .7rem; 
    font-weight: 600; 
    background: rgba(30,41,59,0.7); 
    padding: .4rem .65rem; 
    border-radius: .5rem; 
    border: 1px solid rgba(148,163,184,0.15);
}
.hero-search-suggestions a { 
    text-decoration:none; 
    color:#8b5cf6; 
    background: rgba(30,41,59,0.55); 
    padding: .45rem .85rem; 
    border-radius: .65rem; 
    border:1px solid rgba(139,92,246,0.25); 
    transition: background .3s, color .3s, transform .25s; 
    font-weight:500; 
}
.hero-search-suggestions a:hover { 
    background: rgba(99,102,241,0.25); 
    color:#fff; 
    transform: translateY(-2px);
}
@media (min-width: 900px){
    .hero-primary-search { max-width: 1040px; }
    .hero-search-input { font-size: 1.35rem; }
}
@media (max-width: 700px){
    .hero-search-inner { flex-direction: column; padding: 1rem 1rem 1.25rem; }
    .hero-search-btn { width:100%; justify-content:center; margin-top:.5rem; }
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    margin-bottom: 1rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(139, 92, 246, 0.10);
    background: rgba(30, 41, 59, 0.55);
    backdrop-filter: blur(16px);
    border: none;
}

.search-input {
    flex: 1;
    padding: 1.25rem 2rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: #e2e8f0;
    border-radius: 2rem 0 0 2rem !important;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-btn {
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    border-radius: 2rem !important;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.13);
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.search-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

.search-btn:active {
    transform: scale(0.97);
    box-shadow: 0 1px 4px rgba(139, 92, 246, 0.10);
}

.search-btn i {
    margin-right: 0.5rem;
    font-size: 1em;
    transition: all 0.3s ease;
}

.search-btn:hover i {
    transform: scale(1.1);
}

.search-suggestions {
    text-align: center;
    color: #94a3b8;
}

.search-suggestions a {
    color: #8b5cf6;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
}

.search-suggestions a:hover {
    text-decoration: underline;
}

/* Problems Section */
.problems-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.problems-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 2.5rem 2.25rem;
    border-radius: 2.5rem !important;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15), 0 1.5px 8px rgba(0,0,0,0.10);
    text-align: center;
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s cubic-bezier(.4,2,.6,1), background 0.35s;
    border: none;
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
}

.problem-card:hover {
    transform: scale(1.035) translateY(-8px) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.22), 0 4px 16px rgba(0,0,0,0.13);
    background: rgba(45, 55, 72, 0.85);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.problem-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: #1e293b;
}

.solution-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem 2.25rem;
    border-radius: 2.5rem !important;
    text-align: center;
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s cubic-bezier(.4,2,.6,1), background 0.35s;
}

.solution-card:hover {
    transform: scale(1.035) translateY(-8px) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.22), 0 4px 16px rgba(0,0,0,0.13);
    background: rgba(45, 55, 72, 0.85);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Deeper Level Section */
.deeper-level-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
    text-align: center;
}

.deeper-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.deeper-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #94a3b8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.deeper-features {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
    gap: 2.5rem !important;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 2.5rem 2.25rem;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 2.5rem !important;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15), 0 1.5px 8px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), box-shadow 0.35s cubic-bezier(.4,2,.6,1), background 0.35s;
    border: none;
}

.feature:hover {
    transform: scale(1.035) translateY(-8px) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.22), 0 4px 16px rgba(0,0,0,0.13);
    background: rgba(45, 55, 72, 0.85);
}

.feature-label {
    font-weight: 600;
    margin-right: 1rem;
    min-width: 120px;
    color: #f1f5f9;
}

.feature-desc {
    color: #94a3b8;
    font-style: italic;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: #0f172a;
    color: #e2e8f0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 2px 24px rgba(139, 92, 246, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3.5rem !important;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.footer-brand p {
    color: #94a3b8;
}

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

.link-group h4 {
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.link-group a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #e2e8f0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    border-top-color: #8b5cf6;
    animation: spin 1s ease-in-out infinite;
}

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

.loading-text {
    margin-top: 1rem;
    color: #e2e8f0;
    font-weight: 500;
    opacity: 0.8;
}

/* Enhanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

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

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    position: relative;
    background: rgba(16, 23, 42, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-container {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.category-header p {
    color: #cbd5e1;
    font-size: 1.05rem;
}

.category-header i {
    margin-right: 0.5rem;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-card.coming-soon {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.02);
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-logo-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.product-meta h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.product-category {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-preview p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.highlight-tag {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.product-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.product-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-type {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Mobile responsiveness for products section */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .product-btn {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .problems-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .deeper-features {
        text-align: center;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-label {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    section, .footer, .navbar {
        border-radius: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .problem-card, .solution-card, .feature {
        padding: 1.5rem 1rem;
        border-radius: 1.25rem !important;
    }
}
