:root {
    --primary-bg: #30006B;       /* Dark Purple */
    --secondary-bg: #3F1474;     /* Deep Purple */
    --accent-teal: #1FE4F2;      /* Cyan/Teal */
    --accent-teal-dark: #1293C8; 
    --accent-orange: #FFC52F;    /* Vibrant Orange */
    --accent-orange-dark: #FF5F5E;
    --text-white: #ffffff;
    --text-dark: #30006B;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-white: #ffffff;
    --bg-light: #F8F9FA;
    
    --success: #10B981;
    --info: #3B82F6;
    --warning: #F59E0B;
    --accent: #8B5CF6;
    
    --gradient-teal: linear-gradient(180deg, #1FE4F2 0%, #1293C8 100%);
    --gradient-orange: linear-gradient(180deg, #FFC52F 0%, #FF5F5E 100%);
    --gradient-purple: linear-gradient(135deg, #3F1474 0%, #30006B 100%);
    
    --radius-xl: 35px;
    --radius-lg: 25px;
    --radius-md: 15px;
    --radius-full: 999px;
    
    --shadow-soft: 0 15px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(31, 228, 242, 0.3);
    
    --nav-height: 90px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

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

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

section[id], div[id] {
    scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* Perfect Selection & Scrollbar */
::selection {
    background: var(--accent-teal);
    color: var(--primary-bg);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-bg);
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-bg);
}

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

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar */
nav {
    height: var(--nav-height);
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

nav.scrolled {
    background: var(--primary-bg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-orange);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-white);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details .label {
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-details .number {
    font-size: 0.95rem;
    font-weight: 800;
}

.header-btns {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-cyan {
    background: #00CFE8;
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 207, 232, 0.4);
    transition: var(--transition);
    border: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 207, 232, 0.6);
}

.btn-teal {
    background: var(--gradient-teal);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(31, 228, 242, 0.3);
    transition: var(--transition);
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-orange {
    background: var(--gradient-orange);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(255, 95, 94, 0.3);
    transition: var(--transition);
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-teal:hover, .btn-orange:hover, .btn-cyan:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--primary-bg);
    padding: 160px 0 100px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.3;
}

.shape-1 {
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #4C1D95;
    animation: blob 20s infinite alternate;
}

.shape-2 {
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: #1E40AF;
    animation: blob 25s infinite alternate-reverse;
}

@keyframes blob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -2px;
}

.hero-visual {
    position: relative;
    transition: var(--transition);
}

.hero-visual:hover {
    filter: drop-shadow(0 0 40px rgba(31, 228, 242, 0.4));
}

.tablet-mockup {
    width: 100%;
    background: #000;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    border: 6px solid #1a1a1a;
    transition: var(--transition);
    animation: float 6s infinite ease-in-out;
}

.tablet-mockup img {
    border-radius: 25px;
    display: block;
    width: 100%;
}

@keyframes float {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) translateY(-20px); }
}

/* Responsiveness */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 4rem; }
}

/* Responsiveness & Utility */
.mobile-only { display: none; }

@media (max-width: 1024px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--primary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        display: flex;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        margin: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .header-right {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 10001;
        position: relative;
        width: 45px;
        height: 45px;
        color: var(--accent-orange) !important;
        font-size: 1.8rem !important;
    }
    
    .logo img {
        height: 40px !important;
        max-width: 180px !important;
    }
    
    .hero { 
        padding-top: 140px; 
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

/* Vibrant Stat Boxes */
.stats-grid-vibrant {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: -80px;
    position: relative;
    z-index: 20;
}

.stat-box {
    padding: 3.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.stat-box p {
    font-weight: 800;
    opacity: 0.9;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.bg-cyan { background: linear-gradient(135deg, #1FE4F2 0%, #1293C8 100%); }
.bg-orange { background: linear-gradient(135deg, #FFC52F 0%, #FF5F5E 100%); }
.bg-purple { background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%); }
.bg-green { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }

/* Premium CTA Banner */
.perfect-banner {
    background: var(--primary-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
    margin-top: 120px;
    margin-bottom: 120px; /* Added significant space before footer */
}

.banner-ornament {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 30px solid rgba(255,255,255,0.03);
    border-radius: 50%;
    z-index: 1;
}

.banner-ornament::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

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

.banner-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
}

@media (max-width: 1024px) {
    .stats-grid-vibrant { grid-template-columns: repeat(2, 1fr); }
    .banner-flex { flex-direction: column; text-align: center; }
    .banner-text h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .stats-grid-vibrant { grid-template-columns: 1fr; }
    .stat-box h2 { font-size: 2.8rem; }
}

.stat-item p {
    color: #64748b;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 40px;
        margin-top: -50px;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .stat-item h2 {
        font-size: 3rem;
    }
}
/* Global Section Header Styles */
.section-tag {
    display: inline-block;
    background: rgba(48, 0, 107, 0.08);
    color: var(--primary-bg);
    padding: 8px 25px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    text-align: center;
}

section .section-tag {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--primary-bg);
    margin-bottom: 4rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-title span {
    color: #4f46e5;
}

/* Common Grids */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

/* Aura Blobs */
.bg-blob {
    position: absolute;
    width: min(600px, 80vw);
    height: min(600px, 80vh);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    max-width: 100%;
}

/* Pricing Section Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-card {
    background: white;
    border-radius: 40px;
    padding: 85px 20px 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(48, 0, 107, 0.12);
}

.pricing-card-purple {
    background: linear-gradient(135deg, #3F1474 0%, #30006B 100%);
    color: white;
    border: none;
    overflow: hidden;
}

.pricing-card-purple::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-card-purple::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-green { background: #10B981; color: white; }
.badge-orange { background: var(--gradient-orange); color: white; box-shadow: 0 4px 15px rgba(255, 95, 94, 0.3); }

.pricing-card .plan-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-purple .plan-title { color: rgba(255,255,255,0.8); }
.pricing-card:not(.pricing-card-purple) .plan-title { color: #30006B; }

.pricing-card .price {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.15rem;
    letter-spacing: -1.5px;
}

.pricing-card .price-subtext {
    font-size: 1rem;
    font-weight: 800;
    opacity: 0.8;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.pricing-card .plan-subtitle {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.pricing-card-purple .plan-subtitle { color: white; }
.pricing-card:not(.pricing-card-purple) .plan-subtitle { color: #4f46e5; }

.pricing-features-list {
    list-style: none;
    margin: 0 auto 0;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
    flex: 1; /* Pushes content below to the bottom */
}

.pricing-card-purple .pricing-features-list {
    border-top-color: rgba(255,255,255,0.1);
}

.pricing-features-list li {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0.9;
}

.pricing-features-list li.unavailable {
    color: #FF5F5E;
    opacity: 1;
}

.setup-fee {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 1.5rem 0 1rem;
    color: var(--accent-orange);
}

.pricing-card .btn-orange {
    width: 100%;
    margin-top: 1rem;
}

/* Security Bar */
.security-bar {
    background: #F1F5F9;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.security-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}

.security-item i {
    font-size: 1.2rem;
    color: var(--primary-bg);
}

.security-item span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
}

/* Updated App Showcase */
.app-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.app-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(#30006B 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.app-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.app-content {
    flex: 1;
}

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

.app-visual::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: #FFC52F;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(80px);
    z-index: -1;
}

.app-badge-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-badge-group img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-badge-group img:hover {
    transform: translateY(-5px);
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .security-grid {
        justify-content: center;
        gap: 2rem;
    }
    
    .app-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .app-content {
        order: 1;
    }
    
    .app-visual {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .app-badge-group {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card { transform: none !important; }

    .security-item {
        width: 100%;
        justify-content: flex-start;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    padding: 3rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.glass-card p {
    flex: 1; /* Pushes everything below it if needed or fills space */
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.9);
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    align-items: stretch;
    justify-content: stretch;
}

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

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

/* App Showcase */
.app-showcase {
    background: var(--primary-bg);
    color: var(--text-white);
    border-radius: var(--radius-xl);
    margin: 4rem 2rem;
    padding: 100px 5rem;
    position: relative;
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.app-list {
    list-style: none;
    margin: 2.5rem 0;
}

.app-list li {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.25rem;
    font-size: 1.1rem;
    align-items: center;
}

.app-list i {
    color: var(--accent-teal);
    font-size: 1.4rem;
}

/* Footer */
/* Modern Footer Redesign */
footer {
    background: #1a0038; /* Slightly darker than primary-bg */
    color: rgba(255, 255, 255, 0.6);
    padding: 120px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 80px;
}

.footer-info p {
    margin-top: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(8px);
}

.footer-contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.footer-contact-item i {
    color: var(--accent-teal);
    font-size: 1.25rem;
    margin-top: 5px;
}

.footer-contact-item h5 {
    color: white;
    font-weight: 800;
    margin-bottom: 4px;
    font-size: 1rem;
}

.footer-contact-item p {
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--accent-orange);
    color: var(--primary-bg);
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

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

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    border: none;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Video Section */
.video-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 0 0 15px rgba(255,255,255,0.2);
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 25px rgba(255,255,255,0.3);
}

/* Comparison Table */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.table-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
}

.comp-table th, .comp-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.comp-table th {
    background: var(--secondary);
    color: white;
    font-weight: 700;
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.check-green { color: #10b981; }
.cross-red { color: #ef4444; }

/* Timeline/Process Section */
.timeline {
    position: relative;
    padding: 4rem 0;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
}

.timeline-img {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.timeline-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* FAQ Styling */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--secondary);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Consolidated Responsive Logic is handled in the main sections above or below */

/* Comprehensive Responsiveness */
@media (max-width: 1200px) {
    .container { padding: 0 2rem; }
    .hero h1 { font-size: 4.5rem; }
}

@media (max-width: 992px) {
    section { padding: 100px 0; }
    
    .hero { padding: 180px 0 100px; }
    .hero-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero h1 { font-size: 3.8rem; }
    .hero p { margin-inline: auto; }
    .hero-visual img { 
        width: 100%; 
        max-width: 100%;
        margin-left: 0; 
        transform: none !important; 
    }
    
    
    .app-grid { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
    .app-text { display: flex; flex-direction: column; align-items: center; }
    .app-list li { text-align: left; }
    .app-badges { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 1.5rem !important;
    }

    .app-badges img {
        height: 45px !important;
    }
    
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; text-align: center; }
    .timeline-img { order: 2; width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }

    /* Features Page Responsive */
    .features-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .features-hero-visual img { width: 100%; margin: 0 auto; }
    .category-header { padding: 40px 20px; margin: 40px 0 20px; }
    .category-header h2 { font-size: 2.2rem; }
    .app-showcase { margin: 20px 0; padding: 60px 2rem; border-radius: 30px; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }
    .hero h1 { font-size: 2.2rem; line-height: 1.3; letter-spacing: -1px; margin-bottom: 1.5rem; }
    .hero p { font-size: 1rem; line-height: 1.5; margin-bottom: 2rem; }
    
    .section-title { font-size: 1.8rem; margin-bottom: 2.5rem; }
    
    
    .app-showcase { 
        margin: 0 !important; 
        padding: 50px 20px !important; 
        border-radius: 0 !important; 
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        left: 0 !important;
        right: 0 !important;
    }
    .app-showcase .container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .app-showcase h2, .app-showcase h3 { 
        font-size: 2rem !important; 
        line-height: 1.2 !important; 
        margin-bottom: 1.5rem !important; 
        padding: 0 10px !important;
    }
    .app-showcase p { 
        font-size: 1.1rem !important; 
        line-height: 1.6 !important; 
        margin-bottom: 2.5rem !important; 
        padding: 0 10px !important;
    }
    .app-showcase .btn-demo { 
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: calc(100% - 40px) !important; 
        margin: 0 20px !important;
        padding: 1.25rem 10px !important; 
        font-size: 1rem !important; 
        white-space: normal !important; 
        text-align: center;
        box-sizing: border-box !important;
        overflow-wrap: break-word;
    }
    .app-list li { font-size: 0.95rem !important; }
    .app-mockup img { max-width: 100%; }
    
    .table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .comp-table { min-width: 600px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .footer-info { display: flex; flex-direction: column; align-items: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; font-size: 0.8rem; }
    
    .video-placeholder { height: 200px; }
    .play-btn { width: 50px; height: 50px; font-size: 1rem; }

    .testi-grid { grid-template-columns: 1fr; }
    
    /* WhatsApp and Back-to-Top on mobile */
    .whatsapp-float { bottom: 15px; left: 15px; width: 50px; height: 50px; font-size: 24px; }
    .back-to-top { bottom: 15px; right: 15px; width: 40px; height: 40px; }

    /* Features Page Mobile */
    .features-hero h1 { font-size: 2.2rem !important; }
    .features-hero p { font-size: 1rem !important; }
    .category-header { padding: 30px 15px; border-radius: 20px; }
    .category-header h2 { font-size: 1.8rem !important; }
    .category-header p { font-size: 0.95rem !important; }
    .benefit-box { padding: 2.5rem 1.5rem; }
}

/* Subpage Specific & Utility Styles */
.category-header {
    text-align: center;
    margin-bottom: 5rem;
    margin-top: 8rem;
}

.category-header p {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.15rem;
    color: #64748b;
}

.benefit-box {
    text-align: center;
    padding: 3.5rem 3rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.benefit-box h3 {
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--primary-bg);
}

.contact-info-item h4 {
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.cta-showcase {
    text-align: center;
    padding: 100px 0;
    margin-top: 100px;
    margin-bottom: 120px;
}

.btn-demo {
    background: var(--gradient-teal);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(31, 228, 242, 0.3);
}

.btn-demo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 228, 242, 0.5);
    filter: brightness(1.1);
}

/* FAQ V2 - Premium Accordion */
.faq-item-v2 {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-trigger h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-bg);
    margin: 0;
}

.faq-trigger i {
    font-size: 1rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfcfc;
}

.faq-content p {
    padding: 0 2.5rem 2rem;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item-v2.active {
    border-color: var(--accent-teal);
    box-shadow: 0 20px 40px rgba(31, 228, 242, 0.1);
}

.faq-item-v2.active .faq-trigger {
    background: linear-gradient(to right, white, #f0fdff);
}

.faq-item-v2.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-item-v2.active .faq-content {
    max-height: 300px;
}

/* ==========================================================================
   ADVANCED RESPONSIVE ARCHITECTURE (100% Mobile Optimized)
   ========================================================================== */

@media (max-width: 1200px) {
    .container { max-width: 95% !important; padding: 0 5% !important; }
}

@media (max-width: 1024px) {
    h1 { font-size: clamp(2rem, 8vw, 3.5rem) !important; line-height: 1.15 !important; overflow-wrap: break-word; }
    h2 { font-size: clamp(1.8rem, 6vw, 2.8rem) !important; line-height: 1.2 !important; }
    
    .feature-cinematic .two-col-grid,
    .app-section .two-col-grid,
    .features-hero-grid,
    .contact-grid,
    .contact-grid-wrap {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 3rem !important;
    }
    
    .hero { padding: 140px 1.5rem 80px !important; }
}

@media (max-width: 768px) {
    .btn-orange, .btn-cyan, .btn-demo, .btn-teal {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        display: block !important;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0 !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem !important; }
    h1 { font-size: clamp(1.8rem, 10vw, 2.2rem) !important; line-height: 1.1 !important; word-break: break-word; }
    h2 { font-size: 1.8rem !important; line-height: 1.2 !important; }
    
    .hero { padding: 120px 0 60px !important; }
    .hero p { font-size: 1rem !important; line-height: 1.5 !important; }

    .cta-showcase { 
        width: 100% !important;
        margin: 0 !important;
        padding: 40px 1.5rem !important;
        border-radius: 20px !important;
    }
    
    .btn-orange, .btn-cyan, .btn-demo, .btn-teal {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}
