.minimal-visual, .circle-container, .outer-circle, .inner-circle, .center-icon, .data-lines {
    display: none;
}

.dashboard-preview {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(47, 37, 88, 0.5) 0%,
        rgba(35, 23, 75, 0.5) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(93, 83, 134, 0.2);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.dashboard-header {
    padding: 1rem;
    background: rgba(31, 19, 71, 0.6);
    border-bottom: 1px solid rgba(93, 83, 134, 0.2);
}

.header-dots {
    display: flex;
    gap: 6px;
}

.header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.header-dots span:nth-child(1) { background: #ff5f57; }
.header-dots span:nth-child(2) { background: #febc2e; }
.header-dots span:nth-child(3) { background: #28c840; }

.header-nav {
    display: flex;
    gap: 2rem;
    margin-left: 2rem;
}

.header-nav span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header-nav span.active {
    color: var(--light);
    position: relative;
}

.header-nav span.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.dashboard-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric-card {
    padding: 1.25rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.gradient-1 {
    background: linear-gradient(135deg, 
        rgba(93, 83, 134, 0.3) 0%, 
        rgba(47, 37, 88, 0.1) 100%
    );
    border: 1px solid rgba(93, 83, 134, 0.2);
}

.gradient-2 {
    background: linear-gradient(135deg, 
        rgba(67, 56, 125, 0.3) 0%, 
        rgba(47, 37, 88, 0.1) 100%
    );
    border: 1px solid rgba(93, 83, 134, 0.2);
}

.gradient-3 {
    background: linear-gradient(135deg, 
        rgba(81, 70, 137, 0.3) 0%, 
        rgba(47, 37, 88, 0.1) 100%
    );
    border: 1px solid rgba(93, 83, 134, 0.2);
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: rgba(93, 83, 134, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.metric-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
}

.metric-trend {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.metric-trend.positive {
    color: #4CAF50;
}

.data-visualization {
    grid-column: 1 / -1;
    background: rgba(31, 19, 71, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(93, 83, 134, 0.2);
    margin-top: 1rem;
}

.viz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.viz-header h4 {
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
}

.viz-legend {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.legend-dot.privacy {
    background: var(--primary);
}

.legend-dot.performance {
    background: var(--secondary);
}

.chart-area {
    height: 200px;
    position: relative;
    margin-top: 1rem;
}

.chart-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.privacy-line {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--primary-rgb), 0.5),
        transparent
    );
    animation: chartLinePulse 3s infinite ease-in-out;
}

.performance-line {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--secondary-rgb), 0.5),
        transparent
    );
    animation: chartLinePulse 3s infinite ease-in-out;
    animation-delay: -1.5s;
}

.data-points {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.data-point {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.data-point::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.2);
    animation: pulsePoint 2s infinite ease-in-out;
}

.compliance-summary {
    grid-column: 1 / -1;
    background: rgba(31, 19, 71, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(93, 83, 134, 0.2);
    margin-top: 1rem;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.summary-header h4 {
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
}

.status-badge {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0.75rem;
    background: rgba(93, 83, 134, 0.2);
    border-radius: 100px;
}

.compliance-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.item-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.item-status.completed {
    background: #4CAF50;
}

.item-status.in-progress {
    background: #FFC107;
}

.item-status::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.2;
    animation: pulseStatus 2s infinite ease-in-out;
}

@keyframes pulsePoint {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.1; }
}

@keyframes pulseStatus {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.1; }
}

@keyframes chartLinePulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: scaleY(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scaleY(1.5);
    }
}

/* Products Hero Section */
.products-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(47, 37, 88, 0.95) 0%,
        rgba(35, 23, 75, 0.95) 100%
    );
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(93, 83, 134, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid Section */
.products-grid {
    padding: 6rem 0;
    background: var(--dark);
}

.main-product {
    margin-bottom: 4rem;
}

.product-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spotlight-content {
    padding-right: 2rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(93, 83, 134, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.badge-text {
    font-size: 0.875rem;
    color: var(--light);
}

.spotlight-title {
    margin-bottom: 2rem;
}

.amana-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.amana-mark {
    width: 60px;
    height: 40px;
}

.product-name {
    font-size: 2.5rem;
    color: var(--light);
    font-weight: 600;
}

.product-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.spotlight-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Product Features Section */
.product-features {
    padding: 6rem 0;
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(47, 37, 88, 0.3);
    border: 1px solid rgba(93, 83, 134, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Integration Section */
.integration-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(47, 37, 88, 0.98) 0%,
        rgba(35, 23, 75, 0.98) 100%
    );
    position: relative;
    overflow: hidden;
}

.integration-content {
    text-align: center;
}

.integration-content h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.integration-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.integration-visual {
    position: relative;
    min-height: 400px;
    margin-top: 3rem;
    background: rgba(47, 37, 88, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(93, 83, 134, 0.2);
    overflow: hidden;
}

#integrationCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    filter: hue-rotate(240deg) saturate(150%);
}

.integration-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    height: 100%;
}

.integration-card {
    background: rgba(47, 37, 88, 0.4);
    border: 1px solid rgba(93, 83, 134, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.integration-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.integration-card h4 {
    font-size: 1.125rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.integration-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 992px) {
    .integration-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .integration-section {
        padding: 4rem 0;
    }

    .integration-content h2 {
        font-size: 2rem;
    }

    .integration-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .integration-visual {
        margin: 2rem 1rem 0;
        min-height: auto;
    }

    .integration-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .integration-card {
        padding: 1.25rem;
    }

    .integration-card h4 {
        font-size: 1rem;
    }

    .integration-card p {
        font-size: 0.875rem;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: var(--dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    border: none;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(93, 83, 134, 0.4);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Reveal Animation */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-spotlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spotlight-content {
        padding-right: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .integration-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-name {
        font-size: 2rem;
    }

    .product-tagline {
        font-size: 1.25rem;
    }

    .section-header h2,
    .integration-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .features-grid,
    .integration-cards {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .integration-visual {
        height: 300px;
    }

    .action-content {
        min-width: unset;
        width: 100%;
        padding: 0 1rem;
        white-space: normal;
    }

    .action-text {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-section {
        padding: 3rem 0;
    }
}

/* Hero Animations */
.floating-cube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    perspective: 1000px;
}

.logo-arch-hero {
    position: absolute;
    width: 200px;
    height: 100px;
    border: 3px solid var(--primary);
    border-radius: 100px 100px 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatArch 4s ease-in-out infinite;
}

.logo-arch-inner {
    position: absolute;
    width: 140px;
    height: 70px;
    border: 3px solid var(--secondary);
    border-radius: 70px 70px 0 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatArchInner 4s ease-in-out infinite;
}

.logo-dot-hero {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.5);
    animation: pulseDotHero 2s ease-in-out infinite;
}

.logo-particles {
    position: absolute;
    inset: 0;
    perspective: 1000px;
}

.floating-sphere {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(var(--secondary-rgb), 0.3);
    border-radius: 50%;
    top: 70%;
    left: 70%;
    animation: floatSphere 6s ease-in-out infinite;
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(var(--primary-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: meshFloat 20s linear infinite;
}

.particle-field {
    position: absolute;
    inset: 0;
    perspective: 1000px;
}

@keyframes floatArch {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        border-color: var(--primary);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
        border-color: var(--secondary);
    }
}

@keyframes floatArchInner {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        border-color: var(--secondary);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2) rotate(-5deg);
        border-color: var(--primary);
    }
}

@keyframes pulseDotHero {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.5);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 50px rgba(var(--primary-rgb), 0.7);
    }
}

@keyframes floatSphere {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        border-color: rgba(var(--secondary-rgb), 0.3);
    }
    50% { 
        transform: translate(-30px, -30px) rotate(180deg);
        border-color: rgba(var(--primary-rgb), 0.3);
    }
}

@keyframes meshFloat {
    0% { transform: translateZ(-100px) rotate3d(1, 1, 1, 0deg); }
    100% { transform: translateZ(-100px) rotate3d(1, 1, 1, 360deg); }
}

/* Particle Animations */
.particle {
    position: absolute;
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
}

.logo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    animation: orbitParticle 8s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translate3d(100px, -100px, 50px);
        opacity: 0;
    }
}

@keyframes orbitParticle {
    0% {
        transform: rotate3d(1, 1, 1, 0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate3d(1, 1, 1, 180deg) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: rotate3d(1, 1, 1, 360deg) scale(1);
        opacity: 1;
    }
}

/* Future Innovations Section */
.future-innovations {
    padding: 6rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.future-innovations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--primary-rgb), 0.3),
        transparent
    );
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.app-card {
    background: rgba(47, 37, 88, 0.3);
    border: 1px solid rgba(93, 83, 134, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb), 0.1),
        rgba(var(--secondary-rgb), 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-card:hover::before {
    opacity: 1;
}

.app-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.app-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    animation: pulseIcon 2s infinite ease-in-out;
}

.app-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(var(--primary-rgb), 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.app-name {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.app-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(93, 83, 134, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.app-preview {
    position: relative;
    height: 200px;
    background: rgba(31, 19, 71, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.preview-screen {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(var(--primary-rgb), 0.1),
        rgba(var(--secondary-rgb), 0.1)
    );
}

.preview-animation {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--primary-rgb), 0.2),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design for Future Innovations */
@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }

    .app-preview {
        height: 150px;
    }
}

/* Future Products Section */
.future-products-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.future-products-header h3 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.future-products-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.products-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: rgba(47, 37, 88, 0.3);
    border: 1px solid rgba(93, 83, 134, 0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(var(--primary-rgb), 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.05),
        rgba(var(--secondary-rgb), 0.05)
    );
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 48px;
    height: 48px;
    position: relative;
}

.icon-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(
        circle,
        rgba(var(--primary-rgb), 0.2),
        transparent 70%
    );
    border-radius: 50%;
    animation: pulseIcon 2s infinite ease-in-out;
}

.product-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.product-meta {
    flex: 1;
}

.product-meta h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(var(--primary-rgb), 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--primary);
}

.product-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 0;
}

.feature-list {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.feature-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(var(--primary-rgb), 0.2);
    border-radius: 50%;
    animation: pulseDot 2s infinite ease-in-out;
}

.feature-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.card-preview {
    height: 160px;
    background: rgba(31, 19, 71, 0.3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.preview-screen {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.1),
        rgba(var(--secondary-rgb), 0.1)
    );
}

.preview-animation {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--primary-rgb), 0.2),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.1; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .future-products-header h3 {
        font-size: 2rem;
    }

    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .card-preview {
        height: 120px;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(var(--primary-rgb), 0.3),
        transparent
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-brand .logo-mark {
    width: 40px;
    height: 40px;
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    color: var(--light);
    font-weight: 600;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(93, 83, 134, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(93, 83, 134, 0.4);
    color: var(--light);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(93, 83, 134, 0.2);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal nav {
    display: flex;
    gap: 2rem;
}

.footer-legal nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal nav a:hover {
    color: var(--light);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal nav {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }
}

.features-grid.modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 3rem;
    background: rgba(47, 37, 88, 0.2);
    border-radius: 24px;
    border: 1px solid rgba(93, 83, 134, 0.2);
    margin-bottom: 3rem;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    position: relative;
}

.icon-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(
        circle,
        rgba(var(--primary-rgb), 0.2),
        transparent 70%
    );
    border-radius: 50%;
    animation: pulseIcon 2s infinite ease-in-out;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-title {
    flex: 1;
}

.feature-title h4 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(var(--primary-rgb), 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--primary);
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.feature-list.modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list.modern .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(47, 37, 88, 0.3);
    border: 1px solid rgba(93, 83, 134, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-list.modern .feature-item:hover {
    transform: translateX(5px);
    background: rgba(47, 37, 88, 0.4);
}

.feature-check {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-name {
    font-size: 0.875rem;
    color: var(--light);
    font-weight: 500;
}

.feature-detail {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .features-grid.modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .feature-description {
        text-align: center;
    }

    .feature-list.modern .feature-item {
        padding: 0.875rem;
    }
}

.modern-visual {
    position: relative;
    width: 100%;
    height: 300px;
    background: rgba(47, 37, 88, 0.2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(93, 83, 134, 0.2);
}

.visual-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.node-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 10px;
    padding: 20px;
    height: 100%;
}

.data-node {
    width: 6px;
    height: 6px;
    background: rgba(var(--primary-rgb), 0.4);
    border-radius: 50%;
    position: absolute;
    transition: none;
    will-change: transform;
}

.data-node.active {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.6);
    z-index: 2;
}

.data-node.secondary {
    background: var(--secondary);
    box-shadow: 0 0 15px rgba(var(--secondary-rgb), 0.6);
    z-index: 1;
}

.connection-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.connection-path {
    stroke: rgba(var(--primary-rgb), 0.3);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 4;
    animation: flowPath 20s infinite linear;
    will-change: stroke-dashoffset;
}

.gradient-mesh {
    background-image: 
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: meshFloat 20s linear infinite;
}

.particle-field {
    position: absolute;
    inset: 0;
}

.visual-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(var(--primary-rgb), 0.4);
    border-radius: 50%;
    animation: floatParticle 4s infinite linear;
}

@keyframes flowPath {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

@keyframes meshFloat {
    0% { transform: translateZ(-50px) rotate3d(1, 1, 1, 0deg); }
    100% { transform: translateZ(-50px) rotate3d(1, 1, 1, 360deg); }
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(20px, -20px);
        opacity: 0;
    }
}

.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-visual {
        height: 200px;
    }
}

.placeholder-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.placeholder-image {
    background: rgba(47, 37, 88, 0.2);
    border: 1px solid rgba(93, 83, 134, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placeholder-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.placeholder-image svg {
    width: 100%;
    height: auto;
    max-height: 160px;
}

.placeholder-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (max-width: 768px) {
    .placeholder-images {
        grid-template-columns: 1fr;
    }
}

.amana-preview {
    width: 100%;
    max-width: 500px;
    height: 256px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(47, 37, 88, 0.2);
    border: 1px solid rgba(93, 83, 134, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto 2rem auto;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.action-panel {
    text-align: center;
    padding: 1.6rem 0;
    margin: 1.6rem 0;
}

.action-content {
    margin: 0 auto;
    padding: 0 1rem;
}

.action-text {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary.glow {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
}

.btn-primary.glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(var(--primary-rgb), 0.5),
        transparent
    );
    animation: glowEffect 2s infinite;
}

@keyframes glowEffect {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .action-panel {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .action-content {
        width: 100%;
        min-width: unset;
        white-space: normal;
        padding: 0;
    }

    .action-text {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .cta-buttons .btn-primary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
}

.status-badge.verified {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.card-actions {
    margin-top: auto;
    text-align: center;
}

.card-actions .btn-primary.glow {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 8px;
    color: var(--light);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 150px;
}

.card-actions .btn-primary.glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.feature-list {
    margin-bottom: 1.5rem;
}

.product-card .feature-item {
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

.product-card .feature-item:hover {
    transform: translateX(5px);
} 