html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Enhanced Navigation with New Logo */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 16px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.logo-nav:hover {
    background: rgba(0, 123, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

.nav-logo-symbol {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-shape {
    position: absolute;
    border: 2px solid;
    border-image: linear-gradient(135deg, #007bff 0%, #00d4ff 100%) 1;
}

.nav-outer {
    width: 40px;
    height: 40px;
    top: 5px;
    left: 5px;
    border-radius: 50%;
    animation: navRotateFast 7s linear infinite;
}

.nav-inner {
    width: 24px;
    height: 24px;
    top: 13px;
    left: 13px;
    transform: rotate(45deg);
    animation: navRotateSlow 9s linear infinite reverse;
}

.nav-center {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    position: absolute;
    top: 21px;
    left: 21px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
    animation: navBreathe 3s ease-in-out infinite;
}

.nav-company-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    text-align: center;
}

.nav-company-name {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 16px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: calc(100% - 32px);
}

/* Enhanced Hero Section */
.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 30px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d1421 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(0, 123, 255, 0.03) 50%, transparent 60%);
    background-size: 100% 100%, 100% 100%, 40px 40px;
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-container {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 40px 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(0, 123, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: all 0.5s ease;
    transform: rotate(45deg);
}

.hero-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 123, 255, 0.4);
    border-color: rgba(0, 123, 255, 0.5);
}

.hero-logo-container:hover::before {
    top: -50%;
    left: -50%;
    animation: logoSweep 1s ease-in-out;
}

.hero-logo-symbol {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.hero-shape {
    position: absolute;
    border: 3px solid;
    border-image: linear-gradient(135deg, #007bff 0%, #00d4ff 100%) 1;
}

.hero-outer {
    width: 80px;
    height: 80px;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    animation: heroRotateFast 7s linear infinite;
}

.hero-inner {
    width: 48px;
    height: 48px;
    top: 26px;
    left: 26px;
    transform: rotate(45deg);
    animation: heroRotateSlow 9s linear infinite reverse;
}

.hero-center {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    position: absolute;
    top: 42px;
    left: 42px;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
    animation: heroBreathe 3s ease-in-out infinite;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.hero-company-name {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.hero-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 32px;
    font-weight: 300;
    color: #e0e0e0;
    margin: 25px 0 0;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 800px;
    line-height: 1.4;
}

/* Featured Product Section */
.featured-section {
    padding: 20px 30px 30px;
    margin-top: -10px;
    position: relative;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 1) 100%);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-product {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.product-logo {
    width: 280px;
    height: 100px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.product-logo:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.fitpa-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.fitpa-svg-logo {
    width: 280px;
    height: auto;
    max-width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 229, 255, 0.2));
}

.fitpa-svg-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(0, 229, 255, 0.4));
}

.product-description {
    font-size: 16px;
    color: #ccc;
    margin: 20px 0;
    line-height: 1.7;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00E5FF 0%, #2196F3 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.feature p {
    color: #ccc;
    line-height: 1.5;
    font-size: 14px;
}

.cta-primary {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.5);
}

.cta-primary:hover::before {
    left: 100%;
}

/* Sections */
.section {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-section {
    padding: 40px 30px 80px;
}

.section-subtitle {
    font-size: 18px;
    color: #888;
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #007bff;
}

.about-card p {
    color: #ccc;
    line-height: 1.7;
    font-size: 14px;
}

/* Enhanced Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Enhanced Footer */
.footer {
    background: #000;
    padding: 60px 30px 30px;
    border-top: 1px solid rgba(0, 123, 255, 0.2);
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #007bff;
    font-size: 16px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 14px;
}

/* Enhanced Animations */
@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

@keyframes logoShine {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(45deg);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) rotate(45deg);
        opacity: 1;
    }
}

@keyframes logoGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6);
    }
}

@keyframes logoSweep {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dynamic Innovation Logo Animations */
@keyframes navRotateFast {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes navRotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes navBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
    }
}

@keyframes heroRotateFast {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes heroRotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes heroBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 25px rgba(0, 123, 255, 0.6);
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
        box-shadow: 0 0 30px rgba(0, 123, 255, 0.8);
    }
}

/* AI Showcase Effects */
.ai-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff88;
    pointer-events: none;
    z-index: 1000;
}

.ai-text-effect {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff88;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 30px #00ff88;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
}

@keyframes aiShowcase {
    0% {
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
        transform: scale(1);
    }

    25% {
        box-shadow: 0 0 60px rgba(0, 255, 136, 0.8);
        transform: scale(1.05);
    }

    50% {
        box-shadow: 0 0 80px rgba(0, 123, 255, 1);
        transform: scale(1.02);
    }

    75% {
        box-shadow: 0 0 60px rgba(0, 255, 136, 0.8);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
        transform: scale(1);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 30px 60px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    color: #999;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #666;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00d4ff;
}

.breadcrumb li[aria-current="page"] {
    color: #ccc;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info > p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method h3 {
    font-size: 1rem;
    color: #007bff;
    margin-bottom: 8px;
}

.contact-method p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-method a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #007bff;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-container h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #fff;
}

.required {
    color: #007bff;
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
}

.legal-section h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-list li {
    color: #ccc;
    padding: 10px 0 10px 25px;
    position: relative;
    line-height: 1.6;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
}

.legal-list a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-list a:hover {
    color: #00d4ff;
}

/* Alt background section */
.alt-bg {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 1) 100%);
}

/* About content */
.about-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.value-card p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Tech features */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-feature h4 {
    color: #007bff;
    margin-bottom: 10px;
}

.tech-feature p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA Secondary Button */
.cta-secondary {
    display: inline-block;
    padding: 20px 45px;
    background: transparent;
    color: #007bff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    border: 2px solid #007bff;
}

.cta-secondary:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-3px);
}

/* Product Page Styles */
.featured-product-detail {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-badge {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-intro {
    text-align: center;
    margin-bottom: 40px;
}

.product-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.product-intro p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 16px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #007bff;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 5px;
}

.product-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Solution Block */
.solution-block {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.solution-header h2 {
    font-size: 1.8rem;
    color: #fff;
}

.solution-intro {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.solution-feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-feature h4 {
    color: #007bff;
    margin-bottom: 10px;
}

.solution-feature p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Product support section */
.product-support {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-support h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.product-support p {
    color: #ccc;
    margin-bottom: 10px;
}

.product-support a {
    color: #00d4ff;
    text-decoration: none;
}

/* Active nav link */
.nav-links a.active {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 30px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 123, 255, 0.2);
}

.faq-item[open] {
    border-color: rgba(0, 123, 255, 0.3);
    background: rgba(0, 123, 255, 0.02);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: #ccc;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #00d4ff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #1a1a1a;
    margin: 3% auto;
    padding: 40px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 24px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(20px);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #007bff;
}

.modal h2 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 24px;
}

.modal h3 {
    color: #fff;
    margin: 20px 0 10px;
    font-size: 18px;
}

.modal p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Mobile Responsiveness */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Laptop and smaller desktop optimizations */
@media (max-width: 1200px) {
    .hero {
        min-height: 50vh;
        padding: 90px 25px 15px;
    }

    .hero-company-name {
        font-size: 40px;
    }

    .hero-headline {
        font-size: 28px;
        margin: 20px 0 0;
    }

    .featured-section {
        padding: 15px 25px 20px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .featured-product {
        padding: 20px 25px;
        margin: 15px 0;
    }

    .product-logo {
        margin: 0 auto 10px;
    }

    .product-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin: 35px 0;
    }

    .about-section {
        padding: 30px 25px 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo-nav {
        gap: 12px;
        padding: 10px 15px;
    }

    .nav-company-name {
        font-size: 16px;
    }

    .nav-tagline {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-logo-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .hero-company-name {
        font-size: 32px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .section {
        padding: 60px 20px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 40px 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .page-header {
        padding: 100px 20px 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legal-content {
        padding: 25px 20px;
    }

    .solution-block {
        padding: 30px 20px;
    }

    .solution-header {
        flex-direction: column;
        text-align: center;
    }

    .featured-product-detail {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 15px;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 18px 15px;
        font-size: 0.9rem;
    }
    .container {
        padding: 0 10px;
    }

    .navigation {
        padding: 12px 15px;
    }

    .logo-nav {
        gap: 12px;
    }

    .nav-logo-symbol {
        width: 40px;
        height: 40px;
    }

    .nav-outer {
        width: 32px;
        height: 32px;
        top: 4px;
        left: 4px;
    }

    .nav-inner {
        width: 20px;
        height: 20px;
        top: 10px;
        left: 10px;
    }

    .nav-center {
        width: 6px;
        height: 6px;
        top: 17px;
        left: 17px;
    }

    .nav-company-name {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .nav-tagline {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 6px 10px;
    }

    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-logo-container {
        gap: 25px;
    }

    .hero-logo-symbol {
        width: 80px;
        height: 80px;
    }

    .hero-outer {
        width: 64px;
        height: 64px;
        top: 8px;
        left: 8px;
    }

    .hero-inner {
        width: 40px;
        height: 40px;
        top: 20px;
        left: 20px;
    }

    .hero-center {
        width: 12px;
        height: 12px;
        top: 34px;
        left: 34px;
    }

    .hero-company-name {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .hero-tagline {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .hero-headline {
        font-size: 20px;
        margin: 25px 0 15px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 15px;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 20px;
        margin: 0 5px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-card {
        padding: 20px;
        margin: 0 5px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content {
        padding: 0 10px;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section {
        padding: 0 10px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }

    .footer-bottom {
        gap: 12px;
        padding: 15px 10px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Touch-friendly improvements */
    .cta-primary,
    .cta-secondary,
    .nav-menu a,
    .service-card,
    .feature-card {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card,
    .feature-card {
        min-height: auto;
        padding: 20px;
    }

    /* Improved text readability on mobile */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Better spacing for mobile */
    .hero-logo-container {
        padding: 0 15px;
    }

    .services-section,
    .why-choose-section,
    .cta-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Mobile-specific touch improvements */
    @media (hover: none) and (pointer: coarse) {

        .service-card:hover,
        .feature-card:hover {
            transform: none;
            box-shadow: 0 8px 32px rgba(0, 123, 255, 0.3);
        }

        .cta-primary:hover,
        .cta-secondary:hover {
            transform: none;
        }

        .nav-menu a:hover {
            transform: none;
        }
    }

    /* Prevent zoom on double tap */
    .cta-primary,
    .cta-secondary,
    .mobile-nav-menu a,
    .nav-menu a {
        touch-action: manipulation;
    }

    /* Better visual feedback for mobile taps */
    .service-card:active,
    .feature-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .cta-primary:active,
    .cta-secondary:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}