/* ========================================
   WhatsApp API - Premium Dark Theme
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #0a0f1c;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.8);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --accent: #25D366;
    --accent-dark: #128C7E;
    --accent-glow: rgba(37, 211, 102, 0.3);
    --gradient-1: linear-gradient(135deg, #25D366, #128C7E);
    --gradient-2: linear-gradient(135deg, #667eea, #764ba2);
    --gradient-hero: linear-gradient(160deg, #0a0f1c 0%, #111827 40%, #0d1f2d 100%);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 30px rgba(37, 211, 102, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Live Chat variables */
    --chat-incoming-bg: #202c33;
    --chat-incoming-color: #f1f5f9;
    --chat-outgoing-bg: #005c4b;
    --chat-outgoing-color: #ffffff;
    --chat-pane-bg: #0b141a;
    --chat-sidebar-bg: rgba(0, 0, 0, 0.15);
}

/* ---------- Theme Options ---------- */

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(241, 245, 249, 1);
    --bg-glass: rgba(0, 0, 0, 0.05);
    --accent: #16a34a;
    --accent-dark: #15803d;
    --accent-glow: rgba(22, 163, 74, 0.2);
    --gradient-1: linear-gradient(135deg, #22c55e, #16a34a);
    --gradient-hero: linear-gradient(160deg, #f8fafc 0%, #ffffff 40%, #f1f5f9 100%);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(22, 163, 74, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Sidebar needs its own light background */
    --sidebar-bg: rgba(248, 250, 252, 0.98);

    /* Live Chat light overrides */
    --chat-incoming-bg: #ffffff;
    --chat-incoming-color: #0f172a;
    --chat-outgoing-bg: #d9fdd3;
    --chat-outgoing-color: #0f172a;
    --chat-pane-bg: #efeae2;
    --chat-sidebar-bg: rgba(0, 0, 0, 0.03);
}

/* Midnight Blue Theme */
[data-theme="midnight"] {
    --bg-primary: #020617;
    --bg-secondary: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --gradient-1: linear-gradient(135deg, #60a5fa, #3b82f6);
    --gradient-hero: linear-gradient(160deg, #020617 0%, #0f172a 40%, #06102b 100%);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);
}

/* Forest Green Theme */
[data-theme="forest"] {
    --bg-primary: #052e16;
    --bg-secondary: #064e3b;
    --bg-card: rgba(6, 78, 59, 0.8);
    --bg-card-hover: rgba(4, 120, 87, 0.9);
    --accent: #10b981;
    --accent-dark: #059669;
    --accent-glow: rgba(16, 185, 129, 0.3);
    --gradient-1: linear-gradient(135deg, #34d399, #10b981);
    --gradient-hero: linear-gradient(160deg, #052e16 0%, #064e3b 40%, #022c22 100%);
    --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
}

/* Deep Purple Theme */
[data-theme="purple"] {
    --bg-primary: #1e1b4b;
    --bg-secondary: #2e1065;
    --bg-card: rgba(46, 16, 101, 0.8);
    --bg-card-hover: rgba(76, 29, 149, 0.9);
    --accent: #8b5cf6;
    --accent-dark: #7c3aed;
    --accent-glow: rgba(139, 92, 246, 0.3);
    --gradient-1: linear-gradient(135deg, #a78bfa, #8b5cf6);
    --gradient-hero: linear-gradient(160deg, #1e1b4b 0%, #2e1065 40%, #2e0947 100%);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.15);
}

/* Sunset Orange Theme */
[data-theme="sunset"] {
    --bg-primary: #431407;
    --bg-secondary: #7c2d12;
    --bg-card: rgba(124, 45, 18, 0.8);
    --bg-card-hover: rgba(154, 52, 18, 0.9);
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-glow: rgba(249, 115, 22, 0.3);
    --gradient-1: linear-gradient(135deg, #fb923c, #f97316);
    --gradient-hero: linear-gradient(160deg, #431407 0%, #7c2d12 40%, #450a0a 100%);
    --shadow-glow: 0 0 30px rgba(249, 115, 22, 0.15);
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

a:hover {
    color: #4ade80;
}

::selection {
    background: var(--accent);
    color: #000;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 4px;
}

/* ---------- Navbar ---------- */
.navbar {
    padding: 1.2rem 0;
    transition: var(--transition);
    background: rgba(10, 15, 28, 0.4); /* Base semi-transparent */
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Liquid glass animation */
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: liquidFlow 15s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 15, 28, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

@keyframes liquidFlow {
    0% { transform: rotate(0deg) translate(-2%, -2%); }
    50% { transform: rotate(180deg) translate(2%, 2%); }
    100% { transform: rotate(360deg) translate(-2%, -2%); }
}

/* Glass effect for light theme overrides */
[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .navbar::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
}
[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-icon {
    color: var(--accent);
    font-size: 1.6rem;
    margin-right: 4px;
}

.text-accent {
    color: var(--accent) !important;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary) !important;
    background: var(--bg-glass);
}

.btn-outline-accent {
    border: 1.5px solid var(--accent) !important;
    color: var(--accent) !important;
    border-radius: 50px !important;
    font-weight: 600;
}

.btn-outline-accent:hover {
    background: var(--accent) !important;
    color: #000 !important;
}

.btn-accent {
    background: var(--gradient-1) !important;
    color: #000 !important;
    border-radius: 50px !important;
    font-weight: 600;
    border: none;
}

.btn-accent:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.dropdown-menu-dark {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.navbar-toggler {
    border-color: var(--border-color);
}

/* ---------- Buttons ---------- */
.btn-glow {
    background: var(--gradient-1);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    color: #000;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #667eea;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: #f59e0b;
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(-20px, 20px);
    }

    75% {
        transform: translate(10px, -10px);
    }
}

.hero-content {
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.phone-mockup {
    width: 320px;
    background: var(--bg-secondary);
    border-radius: 36px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 0 60px rgba(37, 211, 102, 0.1);
    position: relative;
}

.phone-header {
    height: 40px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 6px;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
}

.chat-window {
    background: #0b141a;
    min-height: 400px;
}

.chat-top-bar {
    background: #1f2c34;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.chat-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-status {
    font-size: 0.75rem;
    color: var(--accent);
}

.chat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M 0 0 L 40 0 L 40 40 L 0 40 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    animation: messageSlide 0.5s ease both;
}

.chat-bubble.received {
    background: #1f2c34;
    align-self: flex-start;
    border-top-left-radius: 4px;
    animation-delay: 0.5s;
}

.chat-bubble.sent {
    background: #005c4b;
    align-self: flex-end;
    border-top-right-radius: 4px;
}

.chat-bubble.sent:nth-child(2) {
    animation-delay: 1s;
}

.chat-bubble.sent:nth-child(3) {
    animation-delay: 1.5s;
}

.chat-bubble p {
    margin: 0;
}

.chat-time {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    margin-top: 4px;
}

.chat-time i {
    color: #53bdeb;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent);
    margin-right: 4px;
}

.floating-badge small {
    font-weight: 400;
    color: var(--text-muted);
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ---------- Section Styles ---------- */
.section-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Features Section ---------- */
.features-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-green {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.icon-orange {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.icon-pink {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ---------- Integrations ---------- */
.integrations-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.integration-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.integration-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.integration-item span {
    font-size: 0.8rem;
    font-weight: 600;
}

.integration-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.cta-card {
    background: var(--gradient-hero);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: -100px;
    right: -50px;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    background: #667eea;
    bottom: -80px;
    left: -30px;
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.cta-note i {
    color: var(--accent);
}

/* ---------- Page Hero (Sub-pages) ---------- */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-hero);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08), transparent);
    border-radius: 50%;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* ---------- Global Section Spacing ---------- */
.about-content-section,
.stats-section,
.tech-section,
.team-section,
.contact-section,
.faq-section,
.services-section,
.more-services-section,
.pricing-section,
.integrations-section {
    padding: 80px 0;
}

/* Consistent form inputs for dark theme */
.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
    color: var(--text-primary);
}

.form-floating>label {
    color: var(--text-muted);
}

.form-control:focus~label,
.form-control:not(:placeholder-shown)~label {
    color: var(--accent);
}

/* Consistent alerts */
.alert {
    border-radius: var(--radius-sm);
    border: none;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(37, 211, 102, 0.12);
    color: #4ade80;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
}

/* Consistent accordion styling */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(37, 211, 102, 0.06);
    color: var(--accent);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.2rem;
    font-size: 0.95rem;
}

/* ---------- Feature Blocks (Features Page) ---------- */
.feature-blocks-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.feature-block {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-block-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.feature-block-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-list li i {
    color: var(--accent);
    margin-right: 10px;
}

.feature-list li strong {
    color: var(--text-primary);
}

/* Code Block Visual */
.feature-visual .code-block {
    background: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.code-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.code-block pre {
    padding: 20px;
    margin: 0;
    color: #e6edf3;
    font-size: 0.85rem;
    font-family: 'Fira Code', monospace;
    overflow-x: auto;
}

/* Schedule Card */
.schedule-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.schedule-header {
    background: rgba(59, 130, 246, 0.1);
    padding: 16px 20px;
    font-weight: 700;
    color: #3b82f6;
}

.schedule-header i {
    margin-right: 8px;
}

.schedule-item {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.schedule-time {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
    min-width: 80px;
}

.schedule-name {
    flex: 1;
    margin: 0 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.schedule-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-status.active {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.schedule-status.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.schedule-status.scheduled {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

/* Bot Flow */
.bot-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 2rem;
}

.bot-node {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    width: 200px;
    transition: var(--transition);
}

.bot-node i {
    margin-right: 8px;
}

.bot-node.start {
    border-color: rgba(59, 130, 246, 0.3);
}

.bot-node.start i {
    color: #3b82f6;
}

.bot-node.process {
    border-color: rgba(139, 92, 246, 0.3);
}

.bot-node.process i {
    color: #8b5cf6;
}

.bot-node.end {
    border-color: rgba(37, 211, 102, 0.3);
}

.bot-node.end i {
    color: var(--accent);
}

.bot-arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Analytics Card */
.analytics-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
}

.analytics-header {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.analytics-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.analytics-value {
    font-weight: 700;
    color: var(--text-primary);
}

.analytics-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin-bottom: 16px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width 1.5s ease;
}

/* ---------- Services Section ---------- */
.services-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.08);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-1);
    color: #000;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-icon-wrap {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 0.8rem;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    margin-left: 4px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* More Services */
.more-services-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.more-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.more-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.2);
}

.more-service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.more-service-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.more-service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ---------- About Page ---------- */
.about-content-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.vision-mission-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.vm-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateX(5px);
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.vm-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vm-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Stats */
.stats-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.stat-number-big {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    display: inline;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label-big {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Tech */
.tech-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: var(--transition);
    min-width: 140px;
}

.tech-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tech-item:hover {
    color: var(--accent);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-5px);
}

/* Team */
.team-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.3);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #000;
}

.team-card h5 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ---------- Contact Page ---------- */
.contact-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.contact-info-wrap h3,
.contact-form-wrap h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.form-floating label {
    color: var(--text-muted);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--accent);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.accordion-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
}

.accordion-body {
    color: var(--text-secondary);
    padding: 0 1.5rem 1.2rem;
    font-size: 0.95rem;
}

/* ---------- Auth Pages ---------- */
.auth-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    padding-top: 80px;
}

.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #fff;
}

.auth-header h2 {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
}

.forgot-link {
    color: var(--accent);
    font-size: 0.85rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    color: var(--text-secondary);
    margin: 0;
}

.auth-footer a {
    color: var(--accent);
    font-weight: 600;
}

/* Alerts */
.alert {
    border-radius: var(--radius-sm);
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    color: var(--accent);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* 404 Page */
.error-page .error-code {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-secondary);
}

/* ---------- Footer ---------- */
.footer-section {
    padding: 80px 0 30px;
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-rgb, 37, 211, 102), 0.05) 0%, transparent 60%);
    animation: liquidFlowFooter 20s linear infinite reverse;
    pointer-events: none;
    z-index: -1;
}

@keyframes liquidFlowFooter {
    0% { transform: rotate(0deg) translate(2%, 2%); }
    50% { transform: rotate(180deg) translate(-2%, -2%); }
    100% { transform: rotate(360deg) translate(2%, 2%); }
}

[data-theme="light"] .footer-section {
    background: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.05);
}
.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact li i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .phone-mockup {
        width: 280px;
        margin-top: 2rem;
    }

    .floating-badge {
        display: none;
    }

    .cta-card {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .ms-3 {
        margin-left: 0 !important;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .ms-3 {
        margin-left: 0 !important;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }

    .phone-mockup {
        width: 260px;
    }

    .integration-logos {
        gap: 1rem;
    }

    .integration-item {
        padding: 1rem 1.5rem;
        font-size: 1.5rem;
    }

    .stat-number-big {
        font-size: 2.2rem;
    }

    .auth-card {
        padding: 1.5rem;
    }
}

/* ========================================
   Pricing Page
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.12);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-card.enterprise {
    border-color: rgba(6, 182, 212, 0.3);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-1);
    color: #000;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.pricing-header h3 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.pricing-price {
    text-align: center;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.price-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.pricing-features li .fa-check {
    color: var(--accent);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled .fa-times {
    color: #ef4444;
}

.pricing-features li strong {
    color: var(--text-primary);
}

/* Pricing FAQ */
.accordion-dark .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-dark .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: none;
    border: none;
    padding: 1.1rem 1.5rem;
}

.accordion-dark .accordion-button:not(.collapsed) {
    background: rgba(37, 211, 102, 0.05);
    color: var(--accent);
}

.accordion-dark .accordion-button::after {
    filter: invert(1);
}

.accordion-dark .accordion-body {
    color: var(--text-secondary);
    font-size: 0.92rem;
    padding: 0 1.5rem 1.25rem;
    line-height: 1.7;
}

/* ========================================
   Profile Page
   ======================================== */
.profile-header-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.profile-cover {
    height: 120px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #667eea 100%);
    position: relative;
}

.profile-info-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem 1.5rem;
    flex-wrap: wrap;
}

.profile-avatar-lg {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 4px solid var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    margin-top: -40px;
    flex-shrink: 0;
}

.profile-meta h2 {
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0;
}

.profile-meta p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.profile-badge-wrap {
    margin-left: auto;
}

.plan-badge {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge i {
    margin-right: 4px;
}

.account-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.account-info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.info-label i {
    margin-right: 8px;
    color: var(--accent);
    width: 16px;
}

.info-value {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================
   Admin Panel
   ======================================== */
.admin-table {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.admin-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.admin-table th {
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 12px 16px;
    border-color: var(--border-color);
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 16px;
    border-color: var(--border-color);
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.role-badge {
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-admin {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.role-user {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-badge {
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-active,
.status-sent,
.status-delivered {
    background: rgba(37, 211, 102, 0.15);
    color: var(--accent);
}

.status-inactive,
.status-failed {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-unread {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.direction-badge {
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.direction-outgoing {
    background: rgba(37, 211, 102, 0.15);
    color: var(--accent);
}

.direction-incoming {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.unread-row {
    background: rgba(245, 158, 11, 0.03);
}

.admin-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
    min-width: 90px;
}

.admin-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.btn-admin-success {
    background: rgba(37, 211, 102, 0.15);
    color: var(--accent);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
}

.btn-admin-success:hover {
    background: rgba(37, 211, 102, 0.25);
    color: var(--accent);
}

.btn-admin-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
}

.btn-admin-danger:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.btn-admin-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
}

.btn-admin-delete:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.pricing-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.pricing-card-mini:hover {
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-4px);
}

.pricing-card-mini.popular {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.08);
}

.pricing-card-mini h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-mini {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.price-mini small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card-mini p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.pricing-card-mini.plan-active {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.15);
    position: relative;
}

.mini-active-badge {
    display: inline-block;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Enhanced Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-scaleUp {
    animation: scaleUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Scroll Animation Base */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
[data-animate]:nth-child(2) {
    transition-delay: 0.1s;
}

[data-animate]:nth-child(3) {
    transition-delay: 0.2s;
}

[data-animate]:nth-child(4) {
    transition-delay: 0.3s;
}

[data-animate]:nth-child(5) {
    transition-delay: 0.4s;
}

/* Page enter fade */
body {
    animation: fadeInUp 0.4s ease both;
}

/* Hover micro animations */
.feature-card,
.pricing-card,
.service-card,
.integration-item {
    will-change: transform;
}

/* Responsive - pricing */
@media (max-width: 1199.98px) {
    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 576px) {
    .profile-info-row {
        padding: 0 1rem 1rem;
        gap: 1rem;
    }

    .profile-avatar-lg {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-top: -30px;
    }

    .profile-badge-wrap {
        margin-left: 0;
    }

    .price-amount {
        font-size: 2rem;
    }
}

/* ========================================
   Admin Panel v2 — User Cards & Edit Modal
   ======================================== */
.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.user-avatar-md {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.user-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.user-detail-card:hover {
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.user-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 10px;
}

.user-card-body {
    padding: 1rem 1.5rem;
}

.user-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.user-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.user-info-item i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.user-bio-preview {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.user-card-actions {
    display: flex;
    gap: 8px;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.btn-edit-user {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 16px;
    transition: var(--transition);
}

.btn-edit-user:hover {
    background: rgba(59, 130, 246, 0.25);
    color: #3b82f6;
}

.btn-admin-warn {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 16px;
}

.btn-admin-warn:hover {
    background: rgba(245, 158, 11, 0.25);
    color: #f59e0b;
}

/* Edit User Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.admin-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .admin-modal {
    transform: translateY(0) scale(1);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-modal-header h5 {
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.admin-modal-body {
    padding: 1.5rem;
}

.admin-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.admin-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    font-size: 0.9rem;
    border-radius: 8px !important;
    padding: 10px 14px;
    transition: var(--transition);
}

.admin-input:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15) !important;
}

.admin-input::placeholder {
    color: var(--text-muted);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Admin Quick Stats */
.admin-quick-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.88rem;
}

.admin-quick-stat:last-child {
    border-bottom: none;
}

.admin-quick-stat span {
    color: var(--text-secondary);
}

.admin-quick-stat strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.section-badge {
    background: rgba(37, 211, 102, 0.1);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* Admin responsive */
@media (max-width: 767.98px) {
    .user-info-grid {
        grid-template-columns: 1fr;
    }

    .user-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-modal {
        width: 95%;
        max-height: 90vh;
    }
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.15);
}

.pricing-card.enterprise {
    border-color: rgba(0, 200, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding-top: 0.5rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.pricing-icon.icon-green {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.pricing-icon.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.pricing-icon.icon-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.pricing-icon.icon-orange {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.pricing-icon.icon-cyan {
    background: rgba(0, 200, 255, 0.15);
    color: #00c8ff;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pricing-price {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li i {
    width: 20px;
    margin-right: 8px;
    color: var(--accent);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* ---------- Active Plan Styling ---------- */
.pricing-card.plan-active {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.2), inset 0 0 30px rgba(37, 211, 102, 0.03);
}

.current-plan-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.active-plan-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.active-plan-banner i {
    color: var(--accent);
}

.plan-expiry {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-outline-success:disabled {
    opacity: 0.8;
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(37, 211, 102, 0.08);
}

@media (max-width: 991.98px) {
    .pricing-card {
        margin-bottom: 1rem;
    }
}

/* ========================================
   STYLE.CSS COMPREHENSIVE RESPONSIVE FIXES
   ======================================== */

/* ---------- Tablet (768px - 991px) ---------- */
@media (max-width: 991px) {

    /* Hero */
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge,
    .hero-subtitle,
    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .phone-mockup {
        width: 280px;
    }

    /* Floating badges position adjust */
    .badge-1 {
        left: 0;
    }

    .badge-2 {
        right: 0;
    }

    /* Section spacing */
    .features-section,
    .integrations-section,
    .cta-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* CTA card */
    .cta-card {
        padding: 2.5rem 2rem;
    }
}

/* ---------- Mobile (≤767px) ---------- */
@media (max-width: 767px) {

    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero-section {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 2rem 0;
        text-align: center;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    /* Hide phone mockup on small screens — saves space */
    .hero-visual {
        display: none;
    }

    /* Hide floating badges */
    .floating-badge {
        display: none;
    }

    /* Hero buttons */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Sections */
    .features-section,
    .integrations-section {
        padding: 48px 0;
    }

    .cta-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* CTA card */
    .cta-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }

    /* Integration logos */
    .integration-item {
        padding: 1rem 1.5rem;
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    /* Auth pages */
    .auth-container {
        padding: 1rem;
    }

    .auth-card {
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
    }

    /* Admin panel */
    .admin-sidebar {
        width: 100%;
        position: static;
        height: auto;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .admin-table th:nth-child(4),
    .admin-table td:nth-child(4),
    .admin-table th:nth-child(5),
    .admin-table td:nth-child(5) {
        display: none;
    }

    /* General overflow fix */
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ---------- Small Mobile (≤575px) ---------- */
@media (max-width: 575px) {

    /* Hero */
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
    }

    /* Sections */
    .features-section,
    .integrations-section,
    .cta-section {
        padding: 36px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Feature cards */
    .feature-card {
        padding: 1.5rem;
    }

    /* Buttons */
    .btn-glow {
        padding: 12px 24px;
    }

    /* CTA card */
    .cta-card {
        padding: 1.5rem 1rem;
    }

    /* Admin stats grid: 1 column */
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    /* Auth card */
    .auth-card {
        padding: 1.25rem;
    }

    /* Profile Page Mobile Adjustments */
    .profile-info-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 1rem 1.5rem !important;
    }
    .profile-avatar-lg {
        margin-top: -40px !important;
    }
    .profile-badge-wrap {
        margin-left: 0 !important;
        margin-top: 0.5rem !important;
    }
}