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

:root {
    --primary-purple: #9333ea;
    --light-purple: #c084fc;
    --dark-purple: #6b21a8;
    --purple-gradient: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    --background: #0f0f23;
    --surface: #1a1a2e;
    --surface-light: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-purple: 0 25px 50px -12px rgba(147, 51, 234, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--purple-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--light-purple);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-box {
    position: absolute;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.1), rgba(192, 132, 252, 0.1));
    border: 1px solid rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.box-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    border-radius: 20px;
    animation-delay: 0s;
}

.box-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 2s;
}

.box-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    border-radius: 25px;
    animation-delay: 4s;
}

.box-4 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    border-radius: 50%;
    animation-delay: 1s;
}

.box-5 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 10%;
    border-radius: 15px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-purple);
    margin-bottom: 2rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    position: relative;
    color: var(--light-purple);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--purple-gradient);
    border-radius: 2px;
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--purple-gradient);
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 35px 60px -12px rgba(147, 51, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow);
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0f0f23, #1a1a2e);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 139%;
    height: 139%;
    object-fit: contain;
    border-radius: 20px;
}

.phone-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

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

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-view {
    flex: 1;
    background: linear-gradient(145deg, #16213e, #1a1a2e);
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.route-line {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--purple-gradient);
    border-radius: 1px;
    animation: routeAnimation 3s ease-in-out infinite;
}

@keyframes routeAnimation {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(1); }
}

.delivery-points .point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--light-purple);
}

.point-start {
    top: 28%;
    left: 18%;
    background: var(--success);
}

.point-end {
    top: 28%;
    right: 18%;
    background: var(--warning);
}

.delivery-truck {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-purple);
    font-size: 1.2rem;
    animation: truckMove 3s ease-in-out infinite;
}

@keyframes truckMove {
    0% { left: 20%; }
    50% { left: 50%; }
    100% { left: 80%; }
}

.delivery-info {
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.delivery-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.time-distance {
    display: flex;
    gap: 15px;
    font-size: 0.7rem;
    color: var(--light-purple);
}

.action-btn {
    width: 35px;
    height: 35px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-purple);
    animation: bounce 2s infinite;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-badge {
    display: inline-block;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-purple);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
}

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

/* Special grid for integration cards */
.integrations .features-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.integrations .feature-card {
    flex: 0 1 calc(50% - 1rem);
    min-width: 500px;
}

.feature-card {
    background: linear-gradient(145deg, var(--surface), var(--surface-light));
    border: 1px solid rgba(147, 51, 234, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--purple-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
    border-color: rgba(147, 51, 234, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-visual {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Specific Animations */
.gps-animation .route-dots {
    display: flex;
    gap: 10px;
}

.gps-animation .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-secondary);
    animation: dotPulse 2s infinite;
}

.gps-animation .dot.active {
    background: var(--light-purple);
}

.gps-animation .dot:nth-child(2) {
    animation-delay: 0.5s;
}

.gps-animation .dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.notification-demo .notification {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: notificationSlide 3s infinite;
}

@keyframes notificationSlide {
    0%, 100% { transform: translateX(-20px); opacity: 0; }
    20%, 80% { transform: translateX(0); opacity: 1; }
}

.notif-icon {
    width: 30px;
    height: 30px;
    background: var(--purple-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.notif-text {
    display: flex;
    flex-direction: column;
}

.notif-text span {
    font-weight: 600;
    font-size: 0.9rem;
}

.notif-text small {
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.earnings-chart .chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 50px;
}

.earnings-chart .bar {
    width: 12px;
    background: var(--purple-gradient);
    border-radius: 2px;
    animation: barGrow 2s ease-out infinite;
}

.earnings-chart .bar:nth-child(2) {
    animation-delay: 0.5s;
}

.earnings-chart .bar:nth-child(3) {
    animation-delay: 1s;
}

.earnings-chart .bar:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes barGrow {
    0% { height: 0; }
    50% { height: var(--bar-height, 40%); }
    100% { height: var(--bar-height, 40%); }
}

.support-demo .chat-bubble {
    background: var(--purple-gradient);
    border-radius: 20px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    animation: chatPulse 3s infinite;
}

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

/* Process Section */
.process {
    padding: 2rem 0;
    background: var(--surface);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple-gradient));
    opacity: 0.3;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) .step-content {
    direction: ltr;
    text-align: right;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-visual {
    width: 80px;
    height: 80px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light-purple);
}

/* Download Section */
.download {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
}

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

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(145deg, var(--surface), var(--surface-light));
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: var(--shadow-purple);
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: var(--purple-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.security-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.badge-item i {
    color: var(--success);
}

.phones-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    width: 195px;
    height: 330px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 30px;
    padding: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.phone-1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.phone-2 {
    transform: rotate(10deg) translateX(20px);
    z-index: 2;
}

.phone .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0f0f23, #1a1a2e);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.screen-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.screen-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.earning-display {
    font-size: 2rem;
    font-weight: 800;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-left p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--purple-gradient);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-purple);
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--light-purple);
}

.footer-bottom {
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--light-purple);
}

/* Integrations Section Styles */
.integrations {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.integration-feature .feature-icon {
    width: 140px;
    height: 140px;
    background: rgba(147, 51, 234, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.integration-feature .feature-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.integration-feature:hover .feature-icon {
    background: rgba(147, 51, 234, 0.1);
    transform: translateY(-5px);
}

.integration-feature .feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.integration-feature .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-feature .highlight-item:hover {
    background: rgba(147, 51, 234, 0.1);
    transform: translateX(5px);
}

.integration-feature .highlight-item i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 8px;
    color: var(--light-purple);
    font-size: 0.9rem;
}

.integration-feature .highlight-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.integration-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 3rem;
    cursor: pointer;
}

.integration-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.2);
    box-shadow: 0 20px 40px -15px rgba(147, 51, 234, 0.15);
}

.integration-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, center) var(--mouse-y, center), rgba(147, 51, 234, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.integration-card:hover::after {
    opacity: 1;
}

.integration-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(147, 51, 234, 0.2);
    box-shadow: 0 30px 60px -15px rgba(147, 51, 234, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.integration-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 2rem;
}

.integration-icon {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(147, 51, 234, 0.03);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.integration-card:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.2);
    box-shadow: 0 15px 40px -10px rgba(147, 51, 234, 0.15);
}

.integration-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.integration-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.integration-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.integration-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.integration-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    max-width: 500px;
}

.integration-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.integration-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.integration-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.9;
}

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

.integration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.5rem 0;
    align-items: flex-start;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-tag i {
    color: var(--light-purple);
    font-size: 0.8rem;
}

.integration-card:hover .feature-tag {
    background: rgba(147, 51, 234, 0.12);
    transform: translateY(-2px);
}

.btn-integration {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-integration:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateX(5px);
}

.btn-integration i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-integration:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments for integrations */
@media (max-width: 768px) {
    .integrations {
        padding: 4rem 0;
    }
    
    .integration-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .integration-icon {
        width: 140px;
        height: 140px;
        padding: 1.5rem;
    }

    .integration-content {
        text-align: center;
    }

    .integration-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .integrations-grid {
        margin-top: 2rem;
    }

    .integration-card {
        padding: 1.5rem;
    }
    
    .integration-icon {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .integration-content h3 {
        font-size: 1.5rem;
    }
    
    .integration-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .feature-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin-right: 0.4rem;
        margin-bottom: 0.4rem;
    }

    .integration-features {
        gap: 0.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 360px) {
    .integration-card {
        padding: 1.25rem;
    }
    
    .integration-icon {
        width: 80px;
        height: 80px;
    }
    
    .integration-content h3 {
        font-size: 1.25rem;
    }
    
    .feature-tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for integrations */
@media (max-width: 768px) {
    .integration-card {
        padding: 2rem;
    }
    
    .integration-icon {
        width: 120px;
        height: 120px;
        padding: 1.5rem;
    }
    
    .integration-info h3 {
        font-size: 1.75rem;
    }
    
    .btn-integration {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .integration-card {
        padding: 1.5rem;
    }
    
    .integration-icon {
        width: 100px;
        height: 100px;
        padding: 1.25rem;
    }
    
    .integration-info h3 {
        font-size: 1.5rem;
    }
    
    .integration-features li {
        font-size: 0.95rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
	
	.nav-menu.active {
		display: block;
	}

	.nav-hamburger {
		cursor: pointer;
	}

	.nav-hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

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

	.nav-hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .process-step:nth-child(even) {
        direction: ltr;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .timeline-line {
        display: none;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
	
	.phone {
        width: 150px;
        height: 250px;
        padding: 10px;
    }
	
	.phone-screen img {
		width: 150%;
		height: 150%;
		object-fit: contain;
		border-radius: 20px;
	}
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .phone-container {
        width: 240px;
        height: 480px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
	
	.integration-card {
        padding: 1.5rem;
    }

    .integration-icon {
        width: 100px;
        height: 100px;
    }

    .integration-content h3 {
        font-size: 1.5rem;
    }
}

/* Integration Cards */
.feature-card.integration-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
}

.feature-card.integration-feature .feature-icon {
    width: 200px;
    height: 200px;
    min-width: 200px;
    background: rgba(147, 51, 234, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.feature-card.integration-feature .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card.integration-feature .feature-content {
    flex: 1;
    text-align: left;
    min-width: 0; /* Prevents flex content from overflowing */
}

.feature-card.integration-feature .feature-visual {
    height: auto;
    margin-top: 1.5rem;
}

.feature-card.integration-feature .feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card.integration-feature .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(147, 51, 234, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    width: 100%;
}

.feature-card.integration-feature .highlight-item i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-gradient);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

.feature-card.integration-feature .highlight-item span {
    white-space: normal;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .integrations .feature-card {
        flex: 1 1 100%;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .feature-card.integration-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .feature-card.integration-feature .feature-icon {
        width: 180px;
        height: 180px;
        min-width: auto;
    }

    .feature-card.integration-feature .feature-content {
        text-align: center;
        width: 100%;
    }

    .feature-card.integration-feature .highlight-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-card.integration-feature {
        padding: 1.5rem;
    }

    .feature-card.integration-feature .feature-icon {
        width: 160px;
        height: 160px;
    }
}