/* GLOBAL */
:root {
    --primary: #7c4dff;
    --primary-glow: rgba(124, 77, 255, 0.5);
    --accent: #ff6d00;
    --accent-glow: rgba(255, 109, 0, 0.4);
    --bg-dark: #0a0a0c;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --success: #4ade80;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--primary), #b388ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* UTILITIES */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 1;
}

/* Glass Mirror Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s;
    z-index: 2;
}

.btn:hover::before {
    left: 100%;
}

/* Base Hover */
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: scale(0.97);
}

/* Neon Running Border Logic */
.btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(90deg, transparent, var(--btn-glow-color, var(--primary)), transparent);
    background-size: 200% 100%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.btn:hover::after {
    opacity: 1;
    animation: neonRotate 2s linear infinite;
}

@keyframes neonRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Colors - preserving user original intents but with glass effects */
.btn-primary-action {
    --btn-glow-color: var(--accent);
    background: rgba(255, 109, 0, 0.15);
    border: 1px solid rgba(255, 109, 0, 0.4);
}

.btn-primary-action:hover {
    background: rgba(255, 109, 0, 0.25);
    box-shadow: 0 0 30px rgba(255, 109, 0, 0.3);
}

.btn-outline-primary {
    --btn-glow-color: var(--primary);
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid rgba(124, 77, 255, 0.4);
}

.btn-outline-primary:hover {
    background: rgba(124, 77, 255, 0.2);
    box-shadow: 0 0 30px rgba(124, 77, 255, 0.3);
}

.btn-success {
    --btn-glow-color: var(--success);
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #fff;
}

.btn-success:hover {
    background: rgba(74, 222, 128, 0.2);
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
}

.btn-nav {
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    --btn-glow-color: var(--primary);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-fallback {
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    font-size: 0.95rem;
}
.btn-nav:hover {
    background: #8e66ff;
    box-shadow: 0 8px 24px var(--primary-glow);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: drift 20s infinite alternate linear;
}

.glow-1 {
    background: var(--primary);
    top: -200px;
    left: -100px;
}

.glow-2 {
    background: var(--accent);
    bottom: -100px;
    right: -200px;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 150px) scale(1.2); }
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    max-width: 650px;
}

.badge-premium {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 77, 255, 0.15);
    border: 1px solid rgba(124, 77, 255, 0.3);
    color: #b388ff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: slideUp 0.6s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: slideUp 0.8s ease-out;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: slideUp 1s ease-out;
}

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

/* TRIAL FORM */
.trial-box {
    border-radius: 24px;
    padding: 32px;
    animation: slideUp 1.2s ease-out;
    border: 1px solid rgba(255,109,0,0.3); /* Subtle orange tint */
}

.trial-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.trial-tag {
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
}

.input-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.input-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 16px 16px 16px 48px;
    border-radius: 14px;
    color: white;
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.1);
}

.btn-primary-action {
    width: 100%;
}

.code-input {
    text-align: center;
    letter-spacing: 8px;
    font-size: 1.5rem !important;
    font-family: monospace !important;
    padding-left: 16px !important;
}

.success-box {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid var(--success);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-top: 24px;
}

.key-box {
    background: rgba(0,0,0,0.5);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.key-box code {
    font-family: monospace;
    font-size: 1.1rem;
    color: white;
    word-break: break-all;
}

.btn-copy {
    width: 100%;
}

/* ANIMATED PHONE VISUAL */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    animation: fadeIn 1.5s ease-out;
}

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

.phone-frame {
    width: 320px;
    height: 640px;
    background: #0f0f15;
    border-radius: 50px;
    border: 12px solid #1a1a24;
    box-shadow: 
        0 50px 100px -20px rgba(0,0,0,0.8),
        inset 0 0 0 2px rgba(255,255,255,0.1),
        0 0 40px var(--primary-glow);
    position: relative;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #1a1a24;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #13131e 0%, #0a0a0c 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 24px 30px;
}

.app-header {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.connection-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.pulse-container {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.shield-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    animation: pulsing 2s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
    opacity: 0;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

@keyframes pulsing {
    0% { transform: scale(0.7); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.location-switcher {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: auto;
}

.loc-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.loc-details {
    flex-grow: 1;
}

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

.loc-name {
    font-weight: 700;
    transition: opacity 0.4s ease;
}

.stats-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-col {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-col small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-icon {
    font-size: 1rem;
    margin-bottom: 5px;
}
.stat-icon.green { color: #4ade80; }
.stat-icon.blue { color: #38bdf8; }

/* Floating bubbles */
.floating-bubble {
    position: absolute;
    background: var(--bg-surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-obj 6s ease-in-out infinite;
    z-index: 15;
}

.fb-1 { top: 100px; right: -40px; animation-delay: 0s; color: #ff4d4d; }
.fb-2 { bottom: 150px; left: -60px; animation-delay: 2s; color: #4ade80; }
.fb-3 { top: 300px; left: -40px; animation-delay: 4s; color: #f093fb; }

@keyframes float-obj {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* SECTION HEADING */
.section-heading {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 60px;
}

/* FEATURES */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.feature-card {
    padding: 40px 30px;
    border-radius: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(124, 77, 255, 0.15);
    border-color: rgba(124, 77, 255, 0.3);
}

.feat-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feat-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* PRICING */
.pricing {
    padding: 100px 0;
}

.pricing-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 40px 80px rgba(255, 109, 0, 0.1);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.p-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.p-price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.p-price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.p-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.p-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.p-features li i {
    color: var(--success);
    font-size: 0.9rem;
}

.popular .p-features li {
    color: white;
}

/* REVIEWS */
.reviews {
    padding: 100px 0 150px;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-box {
    padding: 40px;
    border-radius: 24px;
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px;
    background: #08080a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* AI WIDGET UPGRADE */
.ai-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ai-fab {
    background: var(--primary);
    border: none;
    border-radius: 30px;
    padding: 12px 24px 12px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-fab:hover {
    transform: scale(1.05) translateY(-5px);
}

.ai-fab-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ai-fab-text {
    color: white;
    font-weight: 700;
    font-family: 'Outfit';
    font-size: 1rem;
}

.chat-window {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    height: 600px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(15, 15, 20, 0.95) !important;
}

.chat-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.chat-header {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-status-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.chat-close:hover {
    color: white;
}

.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msg {
    padding: 12px 18px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-msg {
    background: rgba(255,255,255,0.08);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.user-msg {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.error {
    background: rgba(2ef, 68, 68, 0.2);
    color: #ef4444;
}

.chat-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    font-family: 'Outfit';
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-footer button {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.chat-footer button:active {
    transform: scale(0.9);
}

/* TYPING INDICATOR */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 16px 20px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.animate-pop {
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { transform: scale(0.8) translateY(10px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* APP DOWNLOAD SECTION */
.apps-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(124, 77, 255, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(255, 109, 0, 0.05), transparent 40%);
}

.section-subtext {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.app-card {
    border-radius: 30px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.15);
}

.app-icon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.app-icon-header i {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.android-icon { color: #3ddc84; }
.windows-icon { color: #00a4ef; }
.apple-icon { color: #ffffff; }

.app-status-badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.app-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.app-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
    flex-grow: 1;
}

.app-download-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-sm {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
}

.arch-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 0.8rem;
}

.arch-links a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    transition: all 0.2s ease;
}

.arch-links a:hover {
    color: white;
    border-bottom-style: solid;
}

.app-card.disabled {
    opacity: 0.7;
    cursor: default;
}

.app-card.disabled:hover {
    transform: none;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .input-wrapper input {
        text-align: left;
    }
    
    .hero-visual {
        margin-top: 60px;
    }
    
    .floating-bubble {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .features-grid, .pricing-wrap, .reviews-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 40px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        /* Hide scrollbar */
        scrollbar-width: none; 
    }
    .features-grid::-webkit-scrollbar, .pricing-wrap::-webkit-scrollbar, .reviews-slider::-webkit-scrollbar {
        display: none;
    }
    
    .feature-card, .price-card, .review-box {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin: 0;
        /* Animation is applied via JS */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    .trial-box {
        padding: 20px;
    }
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 80px;
    }
}