/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

:root {
    --bg-dark: #09090e;
    --bg-surface: rgba(18, 18, 29, 0.7);
    --bg-card: rgba(26, 26, 42, 0.45);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(108, 92, 231, 0.4);
    
    --primary: #6c5ce7;
    --primary-glow: rgba(108, 92, 231, 0.35);
    --secondary: #00d2d3;
    --secondary-glow: rgba(0, 210, 211, 0.3);
    
    --text-main: #f3f3f7;
    --text-muted: #a0a0ba;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 210, 211, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography Helpers */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #a55eea, #00d2d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(9, 9, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.brand-dot {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--secondary-glow);
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover {
    color: var(--text-main);
}

.btn-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

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

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.download-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.badge-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    cursor: pointer;
}

.badge-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.25);
}

.badge-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-text span:first-child {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-text span:last-child {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

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

.hero-mockup-wrapper {
    position: relative;
    width: 280px;
    height: 560px;
    border-radius: 40px;
    padding: 10px;
    background: #111;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(108, 92, 231, 0.25);
    animation: float 6s ease-in-out infinite;
}

.hero-mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: var(--transition);
}

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

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

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

.features-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(108, 92, 231, 0.25);
    color: var(--primary);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--text-main);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* App Screenshots Dual Rows */
.screenshots {
    padding: 100px 0;
    background: rgba(18, 18, 29, 0.2);
}

.section-content-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.screenshot-row {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.row-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.row-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.screenshot-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    -webkit-overflow-scrolling: touch;
}

.screenshot-scroll::-webkit-scrollbar {
    height: 6px;
}

.screenshot-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.screenshot-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.screenshot-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.screenshot-card {
    flex: 0 0 280px;
    height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
    background: #0d0d15;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    scroll-snap-align: start;
}

.screenshot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition);
}

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(9, 9, 14, 0.95) 0%, rgba(9, 9, 14, 0.7) 70%, transparent 100%);
    border-top: 1px solid var(--border-glass);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform: translateY(0);
    transition: var(--transition);
}

.card-caption h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.card-caption p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.screenshot-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 45px rgba(108, 92, 231, 0.25);
}

.screenshot-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Video Walkthrough Section */
.walkthrough-video {
    padding: 100px 0;
}

.video-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    border: 4px solid var(--border-glass);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(108, 92, 231, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Download Callout Section */
.download-section {
    padding: 120px 0;
    position: relative;
}

.download-card {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(0, 210, 211, 0.1) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.download-card h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.download-card p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-card .download-badges {
    justify-content: center;
}

/* Footer Section */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    background: #06060a;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left p {
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-right a:hover {
    color: var(--text-main);
}

/* Animation Styles */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Rules */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .download-badges {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .download-card h2 {
        font-size: 32px;
    }
    
    .download-card {
        padding: 50px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Library Owner Registration & QR Badge Generator
   ========================================================================== */

.register-section {
    padding: 100px 0;
    position: relative;
}

.register-container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto 0 auto;
    position: relative;
}

.glass-form, .success-card {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.success-card {
    border-color: var(--border-glow);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-main);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.2);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

/* Upload Dropzone styling */
.upload-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.upload-dropzone.dragover, .upload-dropzone:hover {
    border-color: var(--secondary);
    background: rgba(0, 210, 211, 0.04);
}

.upload-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    transition: var(--transition);
}

.upload-dropzone:hover .upload-icon {
    color: var(--secondary);
    transform: scale(1.1);
}

.upload-text {
    font-size: 15px;
    font-weight: 500;
}

.upload-text .highlight {
    color: var(--secondary);
    text-decoration: underline;
}

.upload-subtext {
    font-size: 12px;
    color: var(--text-muted);
}

/* Logo Preview */
.logo-preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-preview-container img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.btn-remove-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 79, 110, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 79, 110, 0.3);
}

.btn-remove-logo:hover {
    transform: scale(1.1);
    background: #ff4f6e;
}

.error-msg {
    background: rgba(255, 79, 110, 0.1);
    border: 1px solid rgba(255, 79, 110, 0.3);
    color: #ff6b85;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
}

.btn-register {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 16px;
    border-radius: var(--radius-md);
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.btn-register:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-register:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Card & Printable Badge */
.success-header {
    text-align: center;
    margin-bottom: 30px;
}

.success-checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 210, 211, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px var(--secondary-glow);
}

.success-header h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.success-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Badge Print Area */
.badge-print-area {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.badge-card {
    width: 320px;
    background: #09090e;
    border: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: #f3f3f7;
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    text-align: left;
}

.badge-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-title-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 210px;
}

.badge-title-block span {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.qr-wrapper {
    background: white;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qr-image {
    width: 160px;
    height: 160px;
    display: block;
}

.qr-instructions {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 220px;
}

.badge-card .badge-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    display: flex;
    justify-content: center;
}

.badge-card .badge-footer .brand {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-card .badge-footer .brand-dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-action.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-action.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-action.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-action.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    body * {
        visibility: hidden;
    }
    
    #badgePrintArea, #badgePrintArea * {
        visibility: visible;
    }
    
    #badgePrintArea {
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        width: 100%;
        display: flex;
        justify-content: center;
        background: white !important;
    }
    
    .badge-card {
        border: 4px solid #6c5ce7 !important;
        background: #09090e !important;
        color: #f3f3f7 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        box-shadow: none !important;
        width: 350px !important;
        padding: 30px !important;
        gap: 25px !important;
    }
    
    .badge-header {
        border-color: rgba(255, 255, 255, 0.15) !important;
    }
    
    .badge-footer {
        border-color: rgba(255, 255, 255, 0.15) !important;
    }
    
    .qr-wrapper {
        box-shadow: none !important;
    }
}

/* App Download Cards Custom Styles */
.download-container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.download-container .section-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.app-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .app-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-cards-grid {
        grid-template-columns: 1fr;
    }
}

.app-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-card-playstore {
    border: 1px solid rgba(108, 92, 231, 0.35);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.12);
}

.app-card-playstore:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.7);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.28);
}

.app-card-web {
    border: 1px solid rgba(0, 206, 201, 0.35);
    box-shadow: 0 10px 30px rgba(0, 206, 201, 0.12);
}

.app-card-web:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 206, 201, 0.7);
    box-shadow: 0 20px 40px rgba(0, 206, 201, 0.28);
}

.app-card-ios {
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.85;
}

.app-card-ios:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Badge Status Styles */
.badge-status {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.badge-status-available {
    background: rgba(0, 210, 211, 0.12);
    color: #00d2d3;
    border: 1px solid rgba(0, 210, 211, 0.3);
}

.badge-status-coming {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-status svg {
    width: 12px;
    height: 12px;
}

/* Card Content Styles */
.app-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.app-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.playstore-badge {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(72, 52, 212, 0.3) 100%);
    border: 1px solid rgba(108, 92, 231, 0.4);
}

.web-badge {
    background: linear-gradient(135deg, rgba(0, 206, 201, 0.2) 0%, rgba(9, 132, 227, 0.3) 100%);
    border: 1px solid rgba(0, 206, 201, 0.4);
}

.ios-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.app-icon {
    width: 32px;
    height: 32px;
}

.app-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    margin-top: 0;
    line-height: 1.2;
}

.app-details p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* Download Buttons Styles */
.btn-download {
    width: 100%;
    padding: 14px 22px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.btn-playstore {
    background: linear-gradient(135deg, #6c5ce7 0%, #4834d4 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.35);
    border: none;
}

.btn-playstore:hover {
    background: linear-gradient(135deg, #7d6df0 0%, #5744e2 100%);
    box-shadow: 0 12px 28px rgba(108, 92, 231, 0.55);
    transform: translateY(-2px);
}

.btn-web {
    background: linear-gradient(135deg, #00cec9 0%, #0984e3 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 206, 201, 0.35);
    border: none;
}

.btn-web:hover {
    background: linear-gradient(135deg, #10ded9 0%, #1a92f0 100%);
    box-shadow: 0 12px 28px rgba(0, 206, 201, 0.55);
    transform: translateY(-2px);
}

.btn-ios-disabled {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

.btn-arrow, .btn-icon {
    width: 18px;
    height: 18px;
}



.btn-icon {
    width: 18px;
    height: 18px;
}

.ios-caption {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

/* ── Nav Delete Account Link ─────────────────────────────── */
.nav-delete-link {
    color: #ff6b6b !important;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 107, 0.35);
    border-radius: 8px;
    padding: 6px 14px !important;
    transition: var(--transition);
}
.nav-delete-link:hover {
    background: rgba(255, 107, 107, 0.12) !important;
    border-color: #ff6b6b;
}

/* ── Account Management Section ──────────────────────────── */
.account-section {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.account-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.12);
}

.account-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-card-icon svg {
    width: 26px;
    height: 26px;
}

.account-card-icon--delete {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.account-card-icon--contact {
    background: rgba(0, 210, 211, 0.1);
    border: 1px solid rgba(0, 210, 211, 0.3);
    color: var(--secondary);
}

.account-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
}

.account-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

/* ── Account Buttons ─────────────────────────────────────── */
.btn-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.btn-account--delete {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.btn-account--delete:hover {
    background: rgba(255, 107, 107, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.2);
}

.btn-account--contact {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.btn-account--contact:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.45);
}

/* ── Delete Account Modal ────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(9, 9, 14, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #12121d;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.modal-icon svg {
    width: 26px;
    height: 26px;
}

.modal-icon--delete {
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.modal-box h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-input-group input {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    outline: none;
    transition: border-color 0.25s;
    font-family: inherit;
}

.modal-input-group input:focus {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.06);
}

.modal-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.35);
    color: #ff6b6b;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    margin-top: 0.75rem;
}

.modal-success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────────────────────
   SHOWCASE SECTION: Why Use and Download This Application
   ───────────────────────────────────────────────────────────── */
.why-use-app {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

.why-use-app .badge {
    display: block;
    width: max-content;
    margin: 0 auto 15px auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 107, 157, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.usp-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.usp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.usp-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.usp-icon-box svg {
    width: 24px;
    height: 24px;
}

/* Icon Box Colors */
.usp-icon-box.bg-purple {
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: #6c5ce7;
}

.usp-icon-box.bg-green {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: #00D4AA;
}

.usp-icon-box.bg-orange {
    background: rgba(255, 179, 71, 0.15);
    border: 1px solid rgba(255, 179, 71, 0.3);
    color: #FFB347;
}

.usp-icon-box.bg-red {
    background: rgba(255, 79, 110, 0.15);
    border: 1px solid rgba(255, 79, 110, 0.3);
    color: #FF4F6E;
}

.usp-card h3 {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.usp-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.usp-compare-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 10px;
    margin-bottom: 2px;
}

.usp-compare-label.secondary-label {
    color: var(--secondary);
    margin-top: 15px;
}

.usp-what-we-have {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

.usp-why-it-beats {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Infographic Showcase */
.infographic-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: inline-block;
    width: 100%;
    max-width: 1000px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.infographic-wrapper:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(108, 92, 231, 0.1);
}

.infographic-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Unique Eye-Catching Headline Gradient */
.gradient-headline {
    font-size: 40px;
    font-weight: 800 !important;
    letter-spacing: -1.2px;
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 50%, #ff7675 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 40px rgba(108, 92, 231, 0.25);
    margin-bottom: 15px;
}

/* ─────────────────────────────────────────────────────────────
   CHAT WIDGET STYLES
   ───────────────────────────────────────────────────────────── */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
}

.chat-widget-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4), 0 0 0 0px rgba(108, 92, 231, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: chat-pulse 2s infinite;
}

.chat-widget-btn:hover {
    transform: scale(1.08) rotate(5deg);
}

.chat-widget-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes chat-pulse {
    0% {
        box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4), 0 0 0 0px rgba(108, 92, 231, 0.4);
    }
    70% {
        box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4), 0 0 0 15px rgba(108, 92, 231, 0);
    }
    100% {
        box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4), 0 0 0 0px rgba(108, 92, 231, 0);
    }
}

.chat-widget-panel {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s ease;
}

.chat-widget-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Header */
.chat-header {
    padding: 18px 20px;
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.15), rgba(255, 107, 157, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar svg {
    width: 18px;
    height: 18px;
    color: white;
}

.chat-title-wrapper {
    display: flex;
    flex-direction: column;
}

.chat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
}

.chat-status {
    font-size: 11px;
    color: #00ffb3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status-dot {
    width: 6px;
    height: 6px;
    background: #00ffb3;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ffb3;
}

.chat-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color 0.25s;
}

.chat-close-btn:hover {
    color: var(--text-light);
}

/* Messages Area */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.chat-message p {
    margin: 0 0 8px 0;
}
.chat-message p:last-child {
    margin-bottom: 0;
}
.chat-message ul, .chat-message ol {
    margin: 4px 0;
    padding-left: 20px;
}

/* Suggestions */
.chat-suggestions {
    padding: 0 20px 10px 20px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
}

.chat-suggestions::-webkit-scrollbar {
    height: 0px;
}

.chat-chip {
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    color: #a29bfe;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chat-chip:hover {
    background: rgba(108, 92, 231, 0.25);
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-2px);
}

/* Input Area */
.chat-input-area {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 10px 18px;
    color: var(--text-light);
    font-size: 14px;
    outline: none;
    transition: all 0.25s;
}

.chat-input:focus {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.05);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
}

.chat-send-btn:hover {
    background: #5b4cc4;
    transform: scale(1.05);
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 8px 12px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

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

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

/* Mobile responsive */
@media (max-width: 480px) {
    .chat-widget-panel {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .chat-widget-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* ─────────────────────────────────────────────────────────────
   CONTACT US SECTION
   ───────────────────────────────────────────────────────────── */
.contact-section {
    padding: 100px 0 80px 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.35s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* WhatsApp green */
.whatsapp-card .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.04);
}

/* Email purple */
.email-card .contact-card-icon {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
}

.email-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    background: rgba(108, 92, 231, 0.04);
}

/* Phone blue */
.phone-card .contact-card-icon {
    background: rgba(0, 168, 255, 0.1);
    color: #00a8ff;
}

.phone-card:hover {
    border-color: rgba(0, 168, 255, 0.3);
    background: rgba(0, 168, 255, 0.04);
}

.contact-card-content {
    text-align: left;
}

.contact-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-light);
}

.contact-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-card-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-card:hover .contact-card-cta {
    opacity: 1;
    transform: translateX(0);
}

/* Google Maps */
.contact-map {
    text-align: center;
}

.map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.1);
}

.map-wrapper iframe {
    display: block;
}

.map-label {
    margin-top: 14px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card-cta {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ─────────────────────────────────────────────────────────────
   CHALLENGES & SOLUTIONS SECTION (DARK THEME)
   ───────────────────────────────────────────────────────────── */
.challenges-solutions-section {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 210, 211, 0.03) 0%, transparent 50%);
    color: var(--text-main);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

/* Header Styles */
.section-header-dark {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.badge-purple {
    background: rgba(108, 92, 231, 0.15);
    color: #a29bfe;
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.15);
}

.section-title-dark {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFF, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle-dark {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Grid & Column Titles */
.challenges-solutions-grid {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.grid-headers {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 40px;
}

.column-title-red {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b6b;
    text-align: right;
    margin: 0;
}

.column-title-green {
    font-size: 22px;
    font-weight: 700;
    color: #2ecc71;
    text-align: left;
    margin: 0;
}

.header-space {
    width: 80px;
}

/* Comparison Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

/* Cards styling */
.comparison-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    height: 100%;
}

.challenge-card {
    background: rgba(255, 107, 107, 0.04);
    border: 1px solid rgba(255, 107, 107, 0.15);
    text-align: right;
    flex-direction: row-reverse;
}

.solution-card {
    background: rgba(46, 204, 113, 0.04);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.challenge-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.08), 0 0 15px rgba(255, 107, 107, 0.05);
}

.solution-card:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.08), 0 0 15px rgba(46, 204, 113, 0.05);
}

/* Card Icons */
.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.red-icon {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.green-icon {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

/* Card Contents */
.card-content {
    flex-grow: 1;
}

.card-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Connectors */
.comparison-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    min-height: 100px;
}

.connector-line-top, .connector-line-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 50%;
    border-left: 2px dashed rgba(108, 92, 231, 0.25);
}

.connector-line-top {
    top: 0;
}

.connector-line-bottom {
    bottom: 0;
}

.comparison-row:first-of-type .connector-line-top {
    display: none;
}

.comparison-row:last-of-type .connector-line-bottom {
    display: none;
}

.connector-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a29bfe;
    z-index: 2;
    transition: var(--transition);
}

.connector-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

/* Row-level hover animation linking */
.comparison-row:hover .connector-button {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.comparison-row:hover .connector-arrow {
    transform: rotate(15deg) scale(1.05);
}

/* Premium CTA Section */
.cta-section-wrapper {
    margin-top: 80px;
    padding: 50px 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px var(--primary-glow), 0 0 30px var(--secondary-glow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    gap: 40px;
}

.cta-left {
    max-width: 580px;
    text-align: left;
}

.cta-left h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.cta-left p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: #ffffff;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #fdfdff;
    color: #5548c8;
}

.cta-secondary-text {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

/* Animations integration */
.js-enabled .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.js-enabled .reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Rules for Challenges/Solutions */
@media (max-width: 968px) {
    .challenges-solutions-section {
        padding: 80px 0;
    }
    
    .section-title-dark {
        font-size: 32px;
    }
    
    .grid-headers {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .column-title-red, .column-title-green {
        text-align: center;
    }
    
    .header-space {
        display: none;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .comparison-connector {
        display: none;
    }
    
    .challenge-card {
        text-align: left;
        flex-direction: row;
        border-bottom: 1px dashed rgba(255, 107, 107, 0.15);
    }
    
    .cta-section-wrapper {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 30px;
        margin-top: 40px;
    }
    
    .cta-left {
        text-align: center;
    }
    
    .cta-left h3 {
        font-size: 26px;
    }
}

/* ─────────────────────────────────────────────────────────────
   SOCIAL PROOF SECTION
   ───────────────────────────────────────────────────────────── */
.social-proof-section {
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 50px auto;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
}

.stat-num {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stat-card:hover .stat-num {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-strip {
    text-align: center;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 40px;
}

.trust-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-chips {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.trust-chip i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.trust-chip:hover {
    color: var(--text-main);
    background: rgba(108, 92, 231, 0.06);
    border-color: rgba(108, 92, 231, 0.25);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────────────────────────── */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1100px;
    margin: 50px auto 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.12);
}

.testimonial-stars {
    color: #ffb900;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    width: 20px;
    height: 20px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   SUPPORT & RELIABILITY SECTION
   ───────────────────────────────────────────────────────────── */
.support-reliability-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1100px;
    margin: 50px auto 0 auto;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.12);
}

.support-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: #a29bfe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: var(--transition);
}

.support-card:hover .support-icon {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.support-icon i {
    width: 24px;
    height: 24px;
}

.support-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.support-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   PRICING SECTION
   ───────────────────────────────────────────────────────────── */
.pricing-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 55px 35px 40px 35px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.pricing-card-top {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-card-bottom {
    margin-top: 30px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.12);
}

.pricing-badge-wrapper {
    position: absolute;
    top: 22px;
    right: -35px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5px 35px;
    text-align: center;
    width: 140px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pricing-badge-promo {
    font-size: 9px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.plan-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.plan-limit {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-val {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-dur {
    font-size: 16px;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-main);
}

.plan-features li i {
    width: 18px;
    height: 18px;
    color: var(--secondary);
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 10px;
}

.btn-pricing-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-pricing-primary:hover {
    background: #5b4bd3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-pricing-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
}

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

.pricing-meta {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────── */
.faq-section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.faq-accordion {
    width: 90%;
    max-width: 800px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-glow);
    background: rgba(26, 26, 42, 0.6);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: #ffffff;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN REDESIGN APPENDS
   ───────────────────────────────────────────────────────────── */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-accordion {
        width: 100%;
    }
    
    .testimonial-card, .support-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
