/* CSS DESIGN SYSTEM: BYABSA BRIDDHI LANDING PAGE */

:root {
    /* Colors */
    --bg-color: #0B0B0B;
    --card-bg: rgba(20, 20, 20, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --accent-green: #00FF99;
    --accent-green-glow: rgba(0, 255, 153, 0.3);
    --accent-green-light: rgba(0, 255, 153, 0.1);
    
    --accent-purple: #7A5CFF;
    --accent-purple-glow: rgba(122, 92, 255, 0.35);
    --accent-purple-light: rgba(122, 92, 255, 0.1);
    
    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --text-muted: #48484A;
    --glass-blur: blur(16px);
    
    /* Fonts */
    --font-english: 'Inter', 'Poppins', 'Hind Siliguri', sans-serif;
    --font-primary: 'Poppins', 'Hind Siliguri', sans-serif;
    --font-bengali: 'Hind Siliguri', sans-serif;
}

html[lang="en"] {
    --font-primary: var(--font-english);
    --font-bengali: var(--font-english);
}

html[lang="en"] body {
    font-family: var(--font-english);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

/* Background glows */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(180px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    transition: all 1s ease-in-out;
}

.glow-bg-purple {
    top: -100px;
    right: -100px;
    background: var(--accent-purple);
}

.glow-bg-green {
    top: 600px;
    left: -200px;
    background: var(--accent-green);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Premium Glass Card Utility */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Section Common Styling */
section {
    padding: 120px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag-container {
    margin-bottom: 12px;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent-green);
    background: var(--accent-green-light);
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid rgba(0, 255, 153, 0.2);
}

.section-title {
    font-family: var(--font-bengali);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-family: var(--font-bengali);
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.7;
}

.section-subtitle-small {
    font-family: var(--font-bengali);
    color: var(--text-secondary);
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Accent texts */
.accent-green {
    color: var(--accent-green);
}

.accent-purple {
    color: var(--accent-purple);
}

.gradient-text-purple-green {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    transition: padding 0.3s ease;
}

/* Header Scroll Styles */
.header.scrolled {
    background: rgba(11, 11, 11, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header.scrolled .header-container {
    padding: 8px 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.badge-zomo {
    font-size: 9px;
    color: var(--accent-purple);
    background: var(--accent-purple-light);
    border: 1px solid rgba(122, 92, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 3px;
    font-weight: 600;
    align-self: flex-start;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-bengali);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-bengali);
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 8px;
}

.btn-primary {
    background: var(--accent-green);
    color: #000000;
    box-shadow: 0 0 20px var(--accent-green-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-green-glow);
    background: #02f291;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-glow {
    background: var(--accent-purple-light);
    color: var(--text-primary);
    border: 1px solid rgba(122, 92, 255, 0.3);
    box-shadow: 0 0 15px rgba(122, 92, 255, 0.15);
}

.btn-whatsapp-glow:hover {
    background: var(--accent-purple);
    color: #FFFFFF;
    border-color: var(--accent-purple);
    box-shadow: 0 0 25px var(--accent-purple-glow);
}

.btn-whatsapp-large {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 18px;
}

.btn-whatsapp-large:hover {
    background: #20ba59;
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* SECTION 1: HERO SECTION */
.section-hero {
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    margin-bottom: 20px;
}

.tag-glow {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-purple);
    background: var(--accent-purple-light);
    border: 1px solid rgba(122, 92, 255, 0.3);
    padding: 6px 12px;
    border-radius: 100px;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-bengali);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-bengali);
    font-size: 17px;
    color: var(--text-secondary);
    margin: 25px 0 35px 0;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-family: var(--font-bengali);
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* HERO DASHBOARD MOCKUP */
.hero-visual {
    position: relative;
    z-index: 2;
}

.mockup-dashboard-wrapper {
    position: relative;
    width: 100%;
}

.mockup-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-green) 100%);
    filter: blur(80px);
    opacity: 0.25;
    z-index: 1;
}

.mockup-dashboard {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 24px;
}

.header-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.dashboard-search {
    flex-grow: 1;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    padding: 4px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.dashboard-content {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon-container {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-green-opacity { background: rgba(0, 255, 153, 0.1); }
.bg-purple-opacity { background: rgba(122, 92, 255, 0.1); }

.text-green { color: var(--accent-green); }
.text-purple { color: var(--accent-purple); }

.mini-card-text {
    display: flex;
    flex-direction: column;
}

.mini-label {
    font-family: var(--font-bengali);
    font-size: 11px;
    color: var(--text-secondary);
}

.mini-value {
    font-size: 13px;
    font-weight: 700;
}

.dashboard-visualizer {
    flex-grow: 1;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Floating widgets inside visualization */
.qr-scan-preview {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 140px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    border-color: var(--accent-green-glow);
    z-index: 3;
}

.qr-code-icon {
    font-size: 36px;
    color: var(--accent-green);
    margin: 8px 0;
    text-shadow: 0 0 10px var(--accent-green-glow);
}

.qr-code-icon i {
    width: 48px;
    height: 48px;
}

.qr-scanner-line {
    position: absolute;
    width: 85%;
    height: 2px;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    left: 7.5%;
    top: 20px;
    animation: scanAnimation 2s infinite ease-in-out;
}

.qr-text {
    font-family: var(--font-bengali);
    font-size: 10px;
    color: var(--text-secondary);
}

/* Keyframes for Scan Line */
@keyframes scanAnimation {
    0% { top: 20px; }
    50% { top: 80px; }
    100% { top: 20px; }
}

.order-popup {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 220px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 4;
}

.order-popup.visible {
    transform: translateY(0);
    opacity: 1;
}

.order-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
}

.order-details {
    display: flex;
    flex-direction: column;
}

.order-user-name {
    font-family: var(--font-bengali);
    font-size: 11px;
    font-weight: 600;
}

.order-user-action {
    font-family: var(--font-bengali);
    font-size: 9px;
    color: var(--text-secondary);
}

.order-status-badge {
    background: var(--accent-green-light);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 153, 0.2);
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 3px;
    margin-top: 3px;
    align-self: flex-start;
}

.whatsapp-notify-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    padding: 10px;
    display: flex;
    gap: 8px;
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 4;
}

.whatsapp-notify-popup.visible {
    transform: translateX(0);
    opacity: 1;
}

.whatsapp-icon-bg {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.whatsapp-icon-bg i {
    width: 14px;
    height: 14px;
}

.whatsapp-msg {
    display: flex;
    flex-direction: column;
    max-width: 140px;
}

.whatsapp-title {
    font-size: 9px;
    font-weight: 700;
    color: #25D366;
}

.whatsapp-body {
    font-family: var(--font-bengali);
    font-size: 8px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ai-agent-popup {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 180px;
    padding: 10px;
    display: flex;
    gap: 8px;
    background: rgba(10, 10, 10, 0.95);
    border-color: var(--accent-purple-glow);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

.ai-agent-popup.visible {
    transform: scale(1);
    opacity: 1;
}

.ai-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    border: 1px solid rgba(122, 92, 255, 0.2);
}

.ai-avatar i {
    width: 14px;
    height: 14px;
}

.ai-chat-content {
    display: flex;
    flex-direction: column;
}

.ai-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent-purple);
}

.ai-response {
    font-family: var(--font-bengali);
    font-size: 8px;
    color: var(--text-secondary);
}

/* SECTION 2: BUSINESS PROBLEMS */
.section-problems {
    background: radial-gradient(circle at 50% 50%, rgba(122, 92, 255, 0.04) 0%, rgba(11, 11, 11, 0) 60%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.problem-card {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: -50px;
    right: -50px;
    background: var(--accent-purple);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    transition: opacity 0.4s ease;
}

.problem-card:hover::before {
    opacity: 0.25;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(122, 92, 255, 0.1);
    border-color: rgba(122, 92, 255, 0.3);
}

.problem-num {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-purple);
    opacity: 0.5;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(122, 92, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    margin-bottom: 25px;
    border: 1px solid rgba(122, 92, 255, 0.15);
}

.problem-icon i {
    width: 24px;
    height: 24px;
}

.problem-card h3 {
    font-family: var(--font-bengali);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    font-family: var(--font-bengali);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* SECTION 3: HOW THE PLATFORM WORKS */
.section-how {
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    padding: 60px 0;
    margin-top: 40px;
}

/* Horizontal Timeline Progress Line */
.timeline-progress-line {
    position: absolute;
    top: 102px; /* aligns horizontally with timeline step circles */
    left: 5%;
    width: 90%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    z-index: 1;
}

.timeline-active-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-green) 100%);
    box-shadow: 0 0 10px var(--accent-green);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(15, 15, 15, 0.7);
    border-color: rgba(255, 255, 255, 0.03);
    min-height: 230px;
    transition: all 0.4s ease;
}

.timeline-step.active {
    border-color: rgba(0, 255, 153, 0.25);
    background: rgba(15, 15, 15, 0.9);
    box-shadow: 0 10px 25px rgba(0, 255, 153, 0.05);
}

.step-badge {
    position: absolute;
    top: -15px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--border-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
}

.timeline-step.active .step-badge {
    border-color: var(--accent-green);
    color: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green-glow);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.timeline-step.active .step-icon {
    background: var(--accent-green-light);
    color: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 15px var(--accent-green-glow);
    transform: scale(1.1);
}

.timeline-step.active .step-icon i {
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.timeline-step h3 {
    font-family: var(--font-bengali);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-step p {
    font-family: var(--font-bengali);
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* SECTION 4: GOOGLE REVIEW AUTOMATION */
.section-reviews {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(0, 255, 153, 0.05) 0%, rgba(11, 11, 11, 0) 45%),
        linear-gradient(90deg, rgba(11, 11, 11, 1) 0%, rgba(7, 26, 18, 0.96) 100%);
    background-size: 32px 32px, 32px 32px, auto, auto;
}

.reviews-layout {
    align-items: center;
}

.reviews-visual {
    position: relative;
}

.review-sim-card {
    padding: 24px;
    background: rgba(15, 15, 15, 0.9);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-sim-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.review-sim-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.review-sim-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 92, 255, 0.18);
    color: var(--accent-purple);
}

.review-sim-icon i,
.review-feature-icon i,
.review-star-button i {
    width: 16px;
    height: 16px;
}

.review-sim-chip {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(122, 92, 255, 0.3);
    background: rgba(122, 92, 255, 0.12);
    color: #b8a8ff;
    font-size: 11px;
    font-weight: 600;
}

.review-business-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.review-business-card h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--font-bengali);
}

.review-business-rating {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.stars-inline {
    color: #FFCD1A;
    letter-spacing: 2px;
}

.review-stars-panel {
    text-align: center;
}

.review-stars-panel p {
    font-family: var(--font-bengali);
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.review-stars-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.review-star-button {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-star-button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.review-star-button.is-active {
    color: #111;
    background: #FFCD1A;
    border-color: rgba(255, 205, 26, 0.45);
    box-shadow: 0 0 24px rgba(255, 205, 26, 0.18);
}

.review-star-button.is-active:hover {
    background: #FFD633;
    border-color: rgba(255, 214, 51, 0.65);
    transform: scale(1.05);
}

.review-star-button.is-active i {
    fill: currentColor;
}

.review-result-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(0, 255, 153, 0.08);
    border: 1px solid rgba(0, 255, 153, 0.22);
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Filtered states (1-3 stars) for critical/negative reviews */
.review-result-card.is-filtered {
    background: rgba(122, 92, 255, 0.08);
    border-color: rgba(122, 92, 255, 0.22);
}

.review-result-card.is-filtered .review-result-head {
    color: var(--accent-purple);
}

.review-result-card.is-filtered .review-result-badge {
    background: rgba(122, 92, 255, 0.12);
    color: #b8a8ff;
}
    gap: 14px;
}

.review-result-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: var(--font-bengali);
    font-weight: 700;
    color: var(--accent-green);
}

.review-result-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 255, 153, 0.12);
    color: var(--accent-green);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.review-quote-box,
.review-ai-box {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-bengali);
}

.review-quote-box p {
    font-style: italic;
}

.review-ai-box span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.reviews-content > .section-tag-container,
.reviews-content > .section-title,
.reviews-content > .section-subtitle-small,
.reviews-content > .feature-bullets {
    display: none;
}

.review-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 26px;
}

.review-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.review-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-green);
    background: rgba(0, 255, 153, 0.08);
    border: 1px solid rgba(0, 255, 153, 0.22);
}

.review-feature-icon.is-purple {
    color: #a892ff;
    background: rgba(122, 92, 255, 0.08);
    border-color: rgba(122, 92, 255, 0.22);
}

.review-feature-item h4 {
    font-family: var(--font-bengali);
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.review-feature-item p {
    font-family: var(--font-bengali);
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.dashboard-box {
    display: none;
}

.dashboard-box {
    width: 100%;
    overflow: hidden;
}

.dashboard-box-header {
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 8px;
}

.db-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.db-title {
    margin-left: 10px;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.dashboard-box-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-highlight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-main-number {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars-glowing {
    color: #FFB800;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
    letter-spacing: 2px;
}

.rating-main-number h3 {
    font-size: 28px;
    font-weight: 800;
}

.stars-total {
    font-size: 16px;
    color: var(--text-secondary);
}

.rating-subtext {
    font-family: var(--font-bengali);
    max-width: 180px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.chart-container-glow {
    height: 140px;
    position: relative;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-labels {
    position: absolute;
    bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-family: var(--font-bengali);
    font-size: 9px;
    color: var(--text-secondary);
}

.filtering-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-headline {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-item-sim {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
}

.filter-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 10px;
}

.filter-badge.pos {
    background: var(--accent-green-light);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 153, 0.2);
}

.filter-badge.neg {
    background: rgba(255, 95, 86, 0.1);
    color: #FF5F56;
    border: 1px solid rgba(255, 95, 86, 0.2);
}

.filter-msg {
    font-family: var(--font-bengali);
    flex-grow: 1;
    color: var(--text-secondary);
}

.filter-action {
    font-family: var(--font-bengali);
    font-size: 10px;
    font-weight: 600;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-bullets li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bullet-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000000;
    margin-top: 4px;
}

.bullet-icon.bg-green {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green-glow);
}

.bullet-icon i {
    width: 16px;
    height: 16px;
}

.feature-bullets h4 {
    font-family: var(--font-bengali);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-bullets p {
    font-family: var(--font-bengali);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SECTION 5: WHATSAPP CRM AUTOMATION */
.section-crm {
    background: radial-gradient(circle at 90% 50%, rgba(122, 92, 255, 0.03) 0%, rgba(11, 11, 11, 0) 50%);
}

.crm-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.crm-feat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.crm-feat-item i {
    width: 36px;
    height: 36px;
    color: var(--accent-purple);
    background: var(--accent-purple-light);
    border: 1px solid rgba(122, 92, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
}

.crm-feat-item h3 {
    font-family: var(--font-bengali);
    font-size: 16px;
    font-weight: 700;
}

.crm-feat-item p {
    font-family: var(--font-bengali);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* PHONE SIMULATOR */
.crm-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.crm-visual::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--accent-purple);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
}

.phone-simulator {
    width: 320px;
    height: 560px;
    border-radius: 40px;
    border: 8px solid #2C2C2E;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #0F0F10;
}

.phone-top-bar {
    height: 20px;
    background: #000000;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    color: #8E8E93;
}

.phone-camera {
    width: 60px;
    height: 12px;
    background: #000000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: calc(50% - 30px);
    top: 0;
}

.phone-info {
    display: flex;
    gap: 8px;
}

.phone-info i {
    width: 10px;
    height: 10px;
}

.phone-header {
    height: 60px;
    background: rgba(30, 30, 32, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.phone-user-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.phone-user-details h4 {
    font-size: 11px;
    font-weight: 700;
}

.phone-user-details p {
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot-online {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--accent-green);
}

.phone-header-icons {
    display: flex;
    gap: 12px;
    color: var(--text-secondary);
}

.phone-header-icons i {
    width: 16px;
    height: 16px;
}

.phone-chat-body {
    flex-grow: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 0);
    background-size: 12px 12px;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 11px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-bubble p {
    font-family: var(--font-bengali);
    line-height: 1.4;
}

.chat-bubble.received {
    background: #2C2C2E;
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.sent {
    background: #054735;
    color: #E5E5EA;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    border-left: 2px solid var(--accent-green);
}

.bubble-time {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    align-self: flex-end;
}

.phone-input-bar {
    height: 50px;
    background: rgba(30, 30, 32, 0.95);
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.phone-input-bar i {
    width: 18px;
    height: 18px;
}

.phone-input-placeholder {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 11px;
    font-family: var(--font-bengali);
}

/* SECTION 6: BUSINESS TOOLS BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.bento-card {
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.bento-card-glow-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.05;
    z-index: 1;
    top: -100px;
    left: -100px;
    transition: opacity 0.4s ease;
}

.bento-card:hover .bento-card-glow-bg {
    opacity: 0.15;
}

.bento-card-glow-bg.purple { background: var(--accent-purple); }
.bento-card-glow-bg.green { background: var(--accent-green); }

.bento-card-large {
    grid-column: span 2;
}

.bento-card-content {
    position: relative;
    z-index: 2;
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.bento-card:hover .bento-icon {
    color: var(--accent-green);
    border-color: rgba(0, 255, 153, 0.3);
}

.bento-card h3 {
    font-family: var(--font-bengali);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-card p {
    font-family: var(--font-bengali);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bento Visual Previews */
.bento-visual-preview {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    height: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.digital-card-mockup {
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.dc-logo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-weight: 800;
    font-size: 12px;
    color: var(--accent-purple);
    background: var(--accent-purple-light);
    border: 1px solid rgba(122, 92, 255, 0.2);
    padding: 2px 5px;
    border-radius: 4px;
}

.digital-card-mockup h4 {
    font-family: var(--font-bengali);
    font-size: 13px;
    font-weight: 700;
}

.digital-card-mockup p {
    font-family: var(--font-bengali);
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.dc-contact-links {
    display: flex;
    gap: 15px;
    font-family: var(--font-bengali);
    font-size: 9px;
    color: var(--accent-green);
    font-weight: 500;
}

.dc-contact-links span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.billing-mockup {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 6px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-bengali);
    font-size: 10px;
    color: var(--text-secondary);
}

.invoice-row.total {
    border-top: 1px dashed var(--border-color);
    padding-top: 4px;
    color: var(--text-primary);
    font-weight: 700;
}

.invoice-status {
    font-family: var(--font-bengali);
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.invoice-status i {
    width: 10px;
    height: 10px;
}

/* SECTION 7: LIVE AI DASHBOARD */
.live-dashboard-frame {
    display: grid;
    grid-template-columns: 220px 1fr;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-sidebar {
    background: rgba(0, 0, 0, 0.4);
    border-right: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sidebar-logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-green);
    letter-spacing: -0.5px;
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-nav li {
    font-family: var(--font-bengali);
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav li i {
    width: 16px;
    height: 16px;
}

.sidebar-nav li.active, .sidebar-nav li:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border-left: 2px solid var(--accent-green);
}

.dashboard-main {
    background: rgba(10, 10, 10, 0.4);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.db-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-top-nav h3 {
    font-family: var(--font-bengali);
    font-size: 15px;
    font-weight: 600;
}

.db-status-pill {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 153, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 153, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    animation: wavePulse 1.8s infinite ease-in-out;
}

@keyframes wavePulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px var(--accent-green); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.db-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.db-stat-box {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.stat-title {
    font-family: var(--font-bengali);
    font-size: 11px;
    color: var(--text-secondary);
}

.stat-val {
    font-size: 24px;
    font-weight: 800;
    margin: 4px 0;
}

.stat-trend {
    font-family: var(--font-bengali);
    font-size: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-trend i {
    width: 10px;
    height: 10px;
}

.db-analytics-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    flex-grow: 1;
}

.db-chart-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}

.db-chart-box h4 {
    font-family: var(--font-bengali);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.interactive-chart-placeholder {
    height: 130px;
    width: 100%;
    position: relative;
}

.db-main-chart {
    width: 100%;
    height: 100%;
}

.db-live-feed-box {
    padding: 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.db-live-feed-box h4 {
    font-family: var(--font-bengali);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.live-activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: hidden;
}

.activity-item {
    font-family: var(--font-bengali);
    font-size: 10px;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 8px;
    animation: slideInActivity 0.5s ease forwards;
}

@keyframes slideInActivity {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.act-time {
    color: var(--accent-purple);
    font-weight: 700;
    min-width: 60px;
}

.act-desc {
    color: var(--text-secondary);
}

.act-desc strong {
    color: var(--text-primary);
}

/* SECTION 8: FINAL CTA SECTION */
.section-final-cta {
    background: radial-gradient(circle at 50% 50%, rgba(122, 92, 255, 0.05) 0%, rgba(11, 11, 11, 0) 70%);
}

.cta-box {
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-glow-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-purple) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    opacity: 0.15;
    bottom: -200px;
    left: calc(50% - 200px);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-bengali);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4;
    margin-top: 20px;
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 2px;
    margin-top: 10px;
}

.cta-text {
    font-family: var(--font-bengali);
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 700px;
    margin: 25px auto 40px auto;
    line-height: 1.8;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.cta-sub-note {
    font-family: var(--font-bengali);
    font-size: 12px;
    color: var(--text-secondary);
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0;
    background: #060606;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-brand h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p {
    font-family: var(--font-bengali);
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links h4 {
    font-family: var(--font-bengali);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    font-family: var(--font-bengali);
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    font-family: var(--font-bengali);
    font-size: 12px;
    color: var(--text-secondary);
}

/* HEADER ACTIONS & LANG SWITCH */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 3px;
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent-purple);
    color: var(--text-primary);
    box-shadow: 0 2px 10px var(--accent-purple-glow);
}

.nav-auth-link {
    font-family: var(--font-bengali);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.nav-auth-link:hover {
    color: var(--text-primary);
}

.btn-register {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-register:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu-toggle i {
    width: 18px;
    height: 18px;
}

.mobile-menu-toggle svg,
.drawer-close svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* MOBILE DRAWERS */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    transform: translateX(0);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
}

.drawer-close:hover {
    color: var(--text-primary);
}

.drawer-close i {
    width: 20px;
    height: 20px;
}

.drawer-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 24px;
    overflow-y: auto;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.drawer-link {
    font-family: var(--font-bengali);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 6px 0;
}

.drawer-link:hover {
    color: var(--text-primary);
}

.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.drawer-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
}

/* LEGAL MODALS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-bengali), var(--font-primary);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    overflow-y: auto;
    padding-right: 8px;
}

.modal-body::-webkit-scrollbar {
    width: 5px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.policy-section {
    margin-bottom: 20px;
}

.policy-section h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 8px;
    font-family: var(--font-bengali), var(--font-primary);
}

.policy-section p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-family: var(--font-bengali), var(--font-primary);
}

/* STANDALONE LEGAL PAGES */
.legal-page {
    min-height: 100vh;
}

.legal-header .logo {
    text-decoration: none;
}

.legal-main {
    min-height: calc(100vh - 150px);
}

.legal-hero {
    padding: 150px 0 90px;
}

.legal-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 20px;
}

.legal-card h1 {
    margin-top: 18px;
    font-family: var(--font-bengali), var(--font-primary);
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
    color: var(--text-primary);
}

.legal-updated {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.legal-content {
    margin-top: 36px;
}

.legal-content .policy-section {
    padding: 0 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.legal-content .policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-content .policy-section h2 {
    margin-bottom: 10px;
    font-family: var(--font-bengali), var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
}

.legal-content .policy-section p {
    font-size: 15px;
    line-height: 1.8;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.legal-actions .btn {
    justify-content: center;
}

/* RESPONSIVE MEDIA QUERIES */

/* Desktop / Large Screens */
@media (max-width: 1200px) {
    .section-title { font-size: 36px; }
    .hero-title { font-size: 40px; }
    .timeline-steps { gap: 10px; }
    .timeline-step { padding: 15px 10px; min-height: 250px; }
    .review-business-card h3 { font-size: 26px; }
    .review-feature-item h4 { font-size: 20px; }
}

/* Tablet Screens */
@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-tag, .hero-ctas, .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-subtitle,
    .section-subtitle-small {
        font-size: 16px;
    }
    
    .nav-menu {
        display: none; /* Hide standard nav on tablet/mobile */
    }
    
    .timeline-progress-line {
        display: none; /* Remove horizontal progress line */
    }
    
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .timeline-step {
        min-height: auto;
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 20px;
        align-items: center;
    }
    
    .step-badge {
        position: static;
    }
    
    .step-icon {
        margin-bottom: 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card-large {
        grid-column: span 1;
    }
    
    .live-dashboard-frame {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .dashboard-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding: 16px;
        gap: 20px;
        align-items: center;
    }
    
    .sidebar-logo {
        display: none;
    }
    
    .sidebar-nav {
        flex-direction: row;
        gap: 15px;
    }
    
    .sidebar-nav li {
        white-space: nowrap;
        padding: 6px 12px;
    }
    
    .db-stats-row {
        grid-template-columns: 1fr;
    }
    
    .db-analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .db-chart-box, .db-live-feed-box {
        height: auto;
    }

    .reviews-layout {
        gap: 40px;
    }

    .reviews-visual,
    .reviews-content {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }

    .review-feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions .btn-demo-header {
        display: none;
    }
    
    .header-actions .nav-auth-link {
        display: inline-block;
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .header-actions .btn-register {
        display: inline-flex;
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .header-container {
        padding: 10px 20px;
    }
    
    .header.scrolled .header-container {
        padding: 6px 20px;
    }
}

/* Mobile Screens */
@media (max-width: 576px) {
    section {
        padding: 80px 0;
    }
    
    .container,
    .header-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-title { font-size: 28px; }
    .hero-title { font-size: 30px; }

    .logo-text {
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .stat-number {
        font-size: 22px;
        line-height: 1.1;
    }

    .stat-label {
        margin-top: 5px;
        font-size: 11px;
        line-height: 1.35;
        white-space: normal;
    }

    .hero-visual {
        width: 100%;
        max-width: 360px;
    }

    .mockup-dashboard {
        height: 360px;
        border-radius: 16px;
    }

    .mockup-glow {
        filter: blur(55px);
        opacity: 0.2;
    }

    .dashboard-header {
        height: 34px;
        padding: 0 10px;
        gap: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dashboard-search {
        max-width: none;
        font-size: 9px;
        padding: 3px 8px;
    }

    .dashboard-content {
        padding: 12px;
        gap: 12px;
    }

    .dashboard-widgets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .mini-card {
        min-width: 0;
        padding: 8px;
        gap: 7px;
        border-radius: 10px;
    }

    .card-icon-container {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        flex: 0 0 auto;
    }

    .card-icon-container i {
        width: 15px;
        height: 15px;
    }

    .mini-card-text {
        min-width: 0;
    }

    .mini-label {
        font-size: 9px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mini-value {
        font-size: 10px;
        line-height: 1.25;
        white-space: nowrap;
    }

    .dashboard-visualizer {
        min-height: 230px;
        border-radius: 10px;
    }

    .qr-scan-preview {
        top: 12px;
        left: 12px;
        width: 98px;
        padding: 8px;
        border-radius: 12px;
    }

    .qr-code-icon {
        margin: 5px 0;
    }

    .qr-code-icon i {
        width: 34px;
        height: 34px;
    }

    .qr-text {
        font-size: 8px;
        line-height: 1.2;
        text-align: center;
    }

    .order-popup {
        bottom: 12px;
        left: 12px;
        width: 168px;
        padding: 8px;
        gap: 7px;
        border-radius: 12px;
    }

    .order-user-avatar {
        width: 26px;
        height: 26px;
        flex: 0 0 auto;
    }

    .order-user-avatar i {
        width: 14px;
        height: 14px;
    }

    .order-details {
        min-width: 0;
    }

    .order-user-name {
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .order-user-action {
        font-size: 8px;
        line-height: 1.25;
    }

    .order-status-badge {
        font-size: 7px;
    }

    .whatsapp-notify-popup {
        top: 12px;
        right: 12px;
        width: 146px;
        padding: 8px;
        border-radius: 12px;
    }

    .whatsapp-msg {
        min-width: 0;
        max-width: 100px;
    }

    .ai-agent-popup {
        right: 12px;
        bottom: 72px;
        width: 146px;
        padding: 8px;
        border-radius: 12px;
    }

    .ai-chat-content {
        min-width: 0;
    }

    .ai-response {
        line-height: 1.25;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .review-sim-card {
        padding: 18px;
        gap: 18px;
        border-radius: 22px;
    }

    .review-sim-topbar,
    .review-result-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-sim-label {
        font-size: 12px;
    }

    .review-business-card h3 {
        font-size: 22px;
    }

    .review-stars-row {
        gap: 10px;
    }

    .review-star-button {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .review-feature-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .review-feature-item h4 {
        font-size: 18px;
    }

    .review-feature-item p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .invoice-row {
        font-size: 9px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .header-actions {
        display: flex;
        gap: 8px;
        flex-shrink: 0;
    }

    /* Hide lang switch in header on very small mobile to prevent header overflow */
    .header-actions .lang-switch {
        display: none;
    }

    /* Adjust header container padding and scroll styles on mobile */
    .header-container {
        padding: 8px 16px;
    }

    .header.scrolled .header-container {
        padding: 6px 16px;
    }

    .header-actions .nav-auth-link {
        font-size: 11px;
        padding: 4px 6px;
    }

    .header-actions .btn-register {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    /* Ensure no body horizontal scroll on mobile */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Prevent GSAP-animated sections from showing black - CSS fallback */
    .reveal-card,
    .bento-card {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Prevent phone simulator from overflowing on narrow screens */
    .phone-simulator {
        width: 100%;
        max-width: 320px;
    }

    /* Stack problems grid items vertically on mobile */
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

/* GSAP Animation Fallback: ensure elements are visible without JS */
.reveal-card,
.bento-card,
.crm-feat-item,
.feature-bullets li {
    /* Visible by default - GSAP will override for animation */
    will-change: transform, opacity;
}

/* Prevent horizontal overflow at all screen sizes */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Header should never cause overflow */
.header {
    overflow: hidden;
}

.header-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
}

/* Mobile viewports responsive layout settings */
@media (max-width: 768px) {
    .section-hero {
        padding-top: 120px !important;
    }
    /* Hide top-level glow elements on mobile to prevent layout stretch & boost performance */
    .glow-bg {
        display: none !important;
    }
    /* Stack CRM features vertically */
    .crm-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Very small screens stars layout */
@media (max-width: 360px) {
    .review-star-button {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .review-stars-row {
        gap: 8px;
    }
}
