/* Base Styles */
:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --secondary-color: #1f2937;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --text-white: #ffffff;
    --text-light: #e5e7eb;
    --text-medium: #9ca3af;
    --text-dark: #6b7280;
    --white: #ffffff;
    --gray-100: #1f2937;
    --gray-200: #374151;
    --gray-300: #4b5563;
    --gray-400: #6b7280;
    --gray-500: #9ca3af;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.16);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-purple: rgba(79, 70, 229, 0.15);
    --glow-blue: rgba(59, 130, 246, 0.15);
    --glow-indigo: rgba(99, 102, 241, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: var(--primary-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Glowing Circle Effects */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

.glow-circle.purple {
    background: var(--primary-color);
}

.glow-circle.blue {
    background: #3b82f6;
}

.glow-circle.indigo {
    background: #6366f1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) translate(10px, -10px);
        opacity: 0.7;
    }
}

/* Bento Box Layouts */
.bento-grid {
    display: grid;
    gap: 0.75rem;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 16/9;
    max-height: 600px;
}

@media (max-width: 768px) {
    .bento-grid {
        aspect-ratio: auto;
        max-height: none;
    }
}

/* Benefits Bento Layout */
.benefits .bento-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "large card1 card2"
        "large card3 card4";
}

@media (max-width: 768px) {
    .bento-grid {
        display: block;
        gap: 0;
        aspect-ratio: auto;
        max-height: none;
        height: auto;
    }
    
    .benefits-grid {
        display: flex;
        flex-direction: column;
    }
    
    .benefits .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: none;
    }
    
    .benefits .bento-card {
        min-height: 160px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        width: 100%;
        box-sizing: border-box;
        display: block;
    }
    
    .benefits .bento-card.large {
        grid-row: auto;
        grid-column: auto;
        height: auto;
        min-height: 200px;
    }
    
    .benefits .bento-card .card-content {
        position: relative;
        z-index: 2;
        padding: 0.5rem;
    }
    
    .benefits .bento-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: white;
    }
    
    .benefits .bento-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .benefits .bento-card .card-bg {
        object-position: center;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto;
    }
}

.benefits .bento-card {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.benefits .bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefits .bento-card.large {
    grid-row: span 2;
}

.benefits .bento-card .card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.benefits .bento-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.benefits .bento-card:hover .card-bg {
    opacity: 0.7;
}

.benefits .bento-card .card-overlay {
    background: linear-gradient(to top, var(--bg-darker) 30%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    z-index: 1;
}

/* Auto-scrolling Carousel Layout */
.scroll-cards-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    background: var(--bg-darker);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.scroll-cards {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    position: relative;
    animation: scroll 40s linear infinite;
    width: max-content;
    margin-left: 1rem;
}

.scroll-cards:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 1.5rem * 5)); /* Width of cards * number of cards + gap * number of gaps */
    }
}

.scroll-card {
    flex: 0 0 auto;
    width: 300px;
    height: 350px;
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.scroll-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.scroll-card:hover .card-bg {
    opacity: 0.8;
    transform: scale(1.05);
}

.scroll-card .card-overlay {
    background: linear-gradient(to top, var(--bg-darker) 30%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    z-index: 1;
}

.scroll-card .card-content {
    position: relative;
    z-index: 2;
    color: white;
}

.scroll-card .icon {
    background: var(--primary-gradient);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.scroll-card .icon i {
    color: white;
    font-size: 1.5rem;
}

.scroll-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.scroll-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .scroll-cards-container {
        padding: 0.5rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .scroll-cards {
        gap: 1rem;
        padding: 1rem 1.5rem;
        animation-duration: 30s;
    }
    
    .scroll-card {
        width: 220px;
        height: 300px;
        padding: 1.25rem;
    }
    
    .scroll-card .icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .scroll-card .icon i {
        font-size: 1.2rem;
    }
    
    .scroll-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .scroll-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 5 - 1rem * 5));
        }
    }
}

.capabilities .bento-card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.capabilities .bento-card:hover .card-bg {
    opacity: 0.6;
}

.capabilities .bento-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.capabilities .bento-card .card-overlay {
    background: linear-gradient(to top, var(--secondary-color) 40%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}

/* Tabbed Features Interface */
.features-tabs {
    margin: 3rem auto;
    max-width: 1200px;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 180px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.tab-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.tab-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tab-button.active .tab-icon {
    background: #ffffff;
}

.tab-button.active .tab-icon i {
    color: var(--primary-color);
}

.tab-icon i {
    font-size: 1.5rem;
    color: white;
}

.tab-button span {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

/* Tab Content */
.tab-content-container {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* New overlay layout */
.tab-content-overlay {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tab-image-full {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

.tab-content-overlay:hover .tab-image-full img {
    transform: scale(1.05);
}

.tab-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
    color: white;
}

.tab-text-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.tab-text-overlay p {
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 80%;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tab-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tab-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.tab-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile Feature Cards */
.mobile-feature-cards {
    display: none;
}

@media (max-width: 992px) {
    .tab-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        width: 150px;
    }
    
    .tab-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: -1;
    }
    
    .tab-content-overlay {
        height: 350px;
    }
    
    .tab-text-overlay p {
        max-width: 100%;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .tab-navigation, .tab-content-container {
        display: none;
    }
    
    .mobile-feature-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-feature-card {
        background: var(--glass-bg);
        border-radius: 16px;
        border: 1px solid var(--glass-border);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-feature-image {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .mobile-feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .mobile-feature-card:hover .mobile-feature-image img {
        transform: scale(1.05);
    }
    
    .mobile-feature-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
        z-index: 1;
    }
    
    .mobile-feature-content {
        padding: 1.5rem;
        position: relative;
        z-index: 2;
    }
}

.feature-card {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
    height: 100%;
    min-height: 180px;
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6));
    z-index: 1;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.feature-icon {
    position: relative;
    z-index: 2;
    background: var(--primary-gradient);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-card p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Phone showcase */
.phone-showcase {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.75rem;
}

.phone-showcase img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 8px solid var(--bg-darker);
    max-height: 500px;
}

/* Card positioning */
.feature-card.top-left {
    grid-column: 1;
    grid-row: 1;
}

.feature-card.top-right {
    grid-column: 3;
    grid-row: 1;
}

.feature-card.bottom-left {
    grid-column: 1;
    grid-row: 3;
}

.feature-card.bottom-right {
    grid-column: 3;
    grid-row: 3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0.5rem;
        margin: 1rem auto;
    }
    
    .phone-showcase {
        grid-column: 1;
        grid-row: 1;
        margin: 0.5rem 0;
        height: 350px;
    }
    
    .feature-card {
        min-height: 140px;
        padding: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-card.top-left,
    .feature-card.top-right,
    .feature-card.bottom-left,
    .feature-card.bottom-right {
        grid-column: 1;
    }
    
    .feature-card.top-left {
        grid-row: 2;
    }
    
    .feature-card.top-right {
        grid-row: 3;
    }
    
    .feature-card.bottom-left {
        grid-row: 4;
    }
    
    .feature-card.bottom-right {
        grid-row: 5;
    }
}

.features .bento-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features .bento-card.wide {
    grid-column: span 2;
}

.features .bento-card.tall {
    grid-row: span 2;
}

.features .bento-card .card-overlay {
    background: linear-gradient(to top, var(--bg-darker) 30%, rgba(15, 23, 42, 0.3) 70%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}

.features .bento-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Common Bento Card Styles */
.bento-card h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.bento-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.bento-card .icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.bento-card .card-bg {
    object-position: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bento-grid {
        aspect-ratio: auto;
        max-height: none;
    }
    
    nto-grid,
    .features .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .bento-card.large,
    .bento-card.tall {
        grid-row: span 1;
    }
    
    .bento-card.wide {
        grid-column: span 2;
    }
    
    .bento-card {
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    nto-grid,
    .features .bento-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .bento-card.wide {
        grid-column: auto;
    }
    
    .bento-card {
        min-height: 180px;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background-color: var(--gray-200);
    color: var(--text-light);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.75rem 1.5rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    text-decoration: none;
}

.logo a:hover {
    color: var(--text-white);
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.desktop-nav a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-nav.show {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a {
    color: var(--text-white);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: block;
    transition: all 0.2s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 22px;
    background: var(--text-white);
    border-radius: 2px;
    opacity: 1;
    left: 10px;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 14px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 26px;
}

.hamburger.active {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger.active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-color: var(--bg-darker);
    }
    50% {
        background-color: rgba(15, 23, 42, 0.95);
    }
    100% {
        background-color: var(--bg-darker);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.2), transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.15), transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-phones {
    display: flex;
    position: relative;
    height: 600px;
    justify-content: center;
    align-items: center;
}

.hero-phones img {
    max-height: 600px;
    width: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
    }
}

.phone-left {
    width: 240px;
    height: 480px;
    left: 0;
    top: 20px;
    z-index: 1;
    transform: rotate(-5deg);
}

.phone-center {
    width: 260px;
    height: 500px;
    left: 180px;
    top: 0;
    z-index: 3;
}

.phone-right {
    width: 240px;
    height: 480px;
    left: 380px;
    top: 20px;
    z-index: 2;
    transform: rotate(5deg);
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 3.5rem;
    color: var(--text-white);
    font-weight: 700;
}

.hero h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
}

.trusted-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    width: fit-content;
    position: relative;
}

.glowing-pill {
    position: relative;
    overflow: hidden;
}

.glowing-pill::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--primary-color), #3b82f6, var(--primary-color));
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    animation: pillGlow 3s ease-in-out infinite alternate;
}

@keyframes pillGlow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-in-out;
}

.slide-up-delay {
    animation: slideUp 0.8s ease-in-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.trusted-badge img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
}

.trusted-badge img:nth-child(1) {
    z-index: 3;
}

.trusted-badge img:nth-child(2) {
    margin-left: -15px;
    z-index: 2;
}

.trusted-badge img:nth-child(3) {
    margin-left: -15px;
    z-index: 1;
}

.trusted-badge span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.app-badges span {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.app-badges img {
    height: 32px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.animated-btn {
    position: relative;
    overflow: visible;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
}

.animated-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #4f46e5, #3b82f6, #8b5cf6, #4f46e5);
    z-index: -1;
    border-radius: calc(var(--border-radius) + 3px);
    background-size: 400% 400%;
    animation: runningBorderGlow 3s linear infinite;
    filter: blur(1px);
}

.animated-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: -1;
    border-radius: var(--border-radius);
}

.animated-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.7);
}

.animated-btn:hover::before {
    animation-duration: 1.5s;
    filter: blur(1.5px);
}

@keyframes runningBorderGlow {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Capabilities Section */
.capabilities {
    background-color: var(--bg-darker);
}

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

.capability-card {
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid var(--gray-200);
}

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

.capability-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

/* Features Section */
.features {
    background-color: var(--bg-dark);
}

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

.feature-card {
    background-color: var(--gray-200);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-300);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--gray-100);
    color: var(--primary-light);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-darker);
}

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

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

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

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount {
    background-color: var(--primary-light);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

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

.pricing-card {
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--gray-200);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.price {
    margin: 1.5rem 0;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
}

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

.description {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.features-list {
    text-align: center;
    margin-top: 1.5rem;
}

.features-list ul {
    display: inline-block;
    text-align: left;
}

.features-list ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.features-list ul li:before {
    content: "✓";
    color: var(--success);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-darker);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta {
    background-color: var(--bg-darker);
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent 50%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.1), transparent 50%);
    pointer-events: none;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: visible;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
}

.cta .btn-primary::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #4f46e5, #3b82f6, #8b5cf6, #4f46e5);
    z-index: -1;
    border-radius: calc(var(--border-radius) + 3px);
    background-size: 400% 400%;
    animation: runningBorderGlow 3s linear infinite;
    filter: blur(1px);
}

.cta .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: -1;
    border-radius: var(--border-radius);
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.7);
    background-color: var(--primary-dark);
}

.cta .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation-name: fadeIn;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.animate-fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.animate-fade-in-right {
    animation-name: fadeInRight;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.animate-fade-in-left {
    animation-name: fadeInLeft;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.animate-zoom-in {
    animation-name: zoomIn;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.animate-bounce {
    animation-name: bounce;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    color: var(--gray-300);
    padding: 80px 0 40px;
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.language-selector select {
    background-color: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-500);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        top: 0.75rem;
        border-radius: 16px;
        padding: 0.75rem 1rem;
    }

    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-phones {
        height: auto;
        margin-top: 20px;
    }
    
    .hero-phones img {
        max-height: 450px;
        max-width: 100%;
        height: auto;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat {
        align-items: center;
    }
    
    .app-badges {
        justify-content: center;
    }
    
    .trusted-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero h2 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-phones img {
        max-height: 350px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .benefits-grid, .capabilities-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
