/* ============================================
   ATLAM POS - LANDING PAGE
   Light Theme - Mavi/Turkuaz
   ============================================ */

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --bg-light: #ffffff;
    --bg-section: #f0f9ff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-dark: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-dim: #94a3b8;
    --border-color: #d1d5db;
    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --glow: 0 0 40px rgba(59, 130, 246, 0.25);
}

* { box-sizing: border-box; }

/* ============================================
   HERO SECTION - V3 PREMIUM DESIGN
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    padding: 100px 0 120px;
    overflow: hidden;
    border-bottom: 4px solid #3b82f6;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 20% 30%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 20%, rgba(6, 182, 212, 0.20) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 60% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(245, 158, 11, 0.10) 0%, transparent 50%);
    pointer-events: none;
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Floating Particles */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float1 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float2 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.15); }
}

/* Grid Pattern Overlay */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Animated Floating Shapes */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-particles .particle:nth-child(1) {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero-particles .particle:nth-child(2) {
    width: 4px;
    height: 4px;
    background: #06b6d4;
    top: 60%;
    left: 20%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.hero-particles .particle:nth-child(3) {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    top: 30%;
    left: 70%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.hero-particles .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    background: #10b981;
    top: 70%;
    left: 80%;
    animation-delay: -3s;
    animation-duration: 22s;
}

.hero-particles .particle:nth-child(5) {
    width: 3px;
    height: 3px;
    background: #f59e0b;
    top: 40%;
    left: 30%;
    animation-delay: -8s;
    animation-duration: 18s;
}

.hero-particles .particle:nth-child(6) {
    width: 7px;
    height: 7px;
    background: #3b82f6;
    top: 80%;
    left: 50%;
    animation-delay: -12s;
    animation-duration: 28s;
}

.hero-particles .particle:nth-child(7) {
    width: 4px;
    height: 4px;
    background: #06b6d4;
    top: 15%;
    left: 85%;
    animation-delay: -2s;
    animation-duration: 24s;
}

.hero-particles .particle:nth-child(8) {
    width: 6px;
    height: 6px;
    background: #8b5cf6;
    top: 50%;
    left: 5%;
    animation-delay: -7s;
    animation-duration: 26s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -80px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -40px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Animated Lines */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-lines .line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.hero-lines .line:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
}

.hero-lines .line:nth-child(2) {
    left: 35%;
    animation-delay: -2s;
    height: 80px;
}

.hero-lines .line:nth-child(3) {
    left: 55%;
    animation-delay: -4s;
    height: 120px;
}

.hero-lines .line:nth-child(4) {
    left: 75%;
    animation-delay: -6s;
    height: 90px;
}

.hero-lines .line:nth-child(5) {
    left: 90%;
    animation-delay: -1s;
    height: 70px;
}

@keyframes lineMove {
    0% {
        top: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.hero-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Hero Text - Dark Theme */
.hero-text { color: #ffffff; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: badgeGlow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
}

.hero-badge i { font-size: 16px; }

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin: 0 0 40px;
    max-width: 540px;
}

.hero-desc strong {
    color: #60a5fa;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::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 ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    border-color: rgba(59, 130, 246, 0.5);
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

/* Hero Stats - Dark Theme */
.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 16px;
}

.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
    border-radius: 2px;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.stat-text {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg), var(--glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
    background: #0a0f1a;
    border-radius: 32px;
    padding: 20px;
    min-height: 480px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-title {
    font-size: 18px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-header i {
    color: #9ca3af;
    font-size: 18px;
}

.app-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.app-stat-card {
    background: #111827;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-stat-card i {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.app-stat-card.accent i {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
}

.app-stat-card div {
    display: flex;
    flex-direction: column;
}

.app-stat-card .val {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.app-stat-card .lbl {
    font-size: 12px;
    color: #6b7280;
}

/* Caller ID Animation */
.app-caller {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.caller-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.caller-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
}

.caller-info {
    display: flex;
    flex-direction: column;
}

.caller-name {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.caller-detail {
    font-size: 12px;
    color: #9ca3af;
}


/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-bottom: 3px solid #e2e8f0;
    position: relative;
}

.features-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    text-align: center;
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.section-head p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #3b82f6;
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

.feature-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.feature-icon.blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.feature-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.feature-icon.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.feature-icon.cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   MORE FEATURES
   ============================================ */
.more-features-section {
    background: var(--bg-light);
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.more-features-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.more-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.more-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
}

.more-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.more-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.more-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-section {
    background: var(--bg-section);
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.download-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.download-box {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.download-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.download-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.download-btns {
    display: flex;
    gap: 16px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--text-dark);
    padding: 16px 24px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid var(--text-dark);
    transition: all 0.3s ease;
    min-width: 180px;
}

.dl-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.dl-btn i {
    font-size: 28px;
    color: white;
}

.dl-btn div {
    display: flex;
    flex-direction: column;
}

.dl-btn .sm {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dl-btn .lg {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--bg-light);
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cta-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin: 0 0 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title { font-size: 2.8rem; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; gap: 32px; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .more-grid { grid-template-columns: 1fr; }
    
    .download-box {
        flex-direction: column;
        text-align: center;
    }
    
    .download-btns { flex-wrap: wrap; justify-content: center; }
    
    .dashboard-mockup {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section { padding: 80px 0 100px; }
    .hero-title { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .download-box { padding: 40px 24px; }
    .cta-box { padding: 48px 24px; }
    .section-head h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .hero-stats { 
        flex-direction: column; 
        gap: 20px;
        align-items: center;
    }
    .hero-stat {
        text-align: center;
        padding-left: 0;
        padding-top: 12px;
    }
    .hero-stat::before {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: auto;
        width: 40px;
        height: 3px;
    }
    .download-btns { flex-direction: column; }
    .dl-btn { width: 100%; justify-content: center; }
    .top-banner {
        flex-wrap: wrap;
        text-align: center;
        padding: 10px 16px;
    }
    .top-banner span { font-size: 12px; }
    .mockup-stats-row { grid-template-columns: 1fr; }
}

/* Hide old elements */
.background-image, .col-md-3, .card, .image-container, .indicators { display: none !important; }

/* Fix ABP container background for Market landing page */
body.abp-application-layout {
    background: #ffffff !important;
}

.abp-application-layout > .container,
.abp-application-layout > .container-fluid {
    background: transparent !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Hide content title on landing page */
#AbpContentToolbar {
    display: none !important;
}


/* ============================================
   CALLER ID SECTION
   ============================================ */
.callerid-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-top: 3px solid #e2e8f0;
    border-bottom: 3px solid #e2e8f0;
}

.callerid-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.callerid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.callerid-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px;
    line-height: 1.2;
}

.callerid-content > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 0 24px;
}

.callerid-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.callerid-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.callerid-features li i {
    color: #10b981;
    font-size: 18px;
}

/* Caller ID Mockup */
.callerid-visual {
    display: flex;
    justify-content: center;
}

.callerid-mockup {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
}

.incoming-call {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 24px;
    color: white;
}

.call-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.call-header i {
    font-size: 20px;
    color: #10b981;
}

.call-header i.ringing {
    animation: ring 1s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

.call-header span {
    font-size: 14px;
    color: #94a3b8;
}

.caller-card {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.caller-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.caller-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.caller-details p {
    font-size: 13px;
    color: #94a3b8;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.caller-details p i {
    width: 14px;
    color: #64748b;
}

.call-actions {
    display: flex;
    gap: 12px;
}

.call-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
}

.call-btn.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.call-btn.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--bg-light);
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.contact-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-card.whatsapp:hover {
    border-color: #25d366;
}

.contact-card.email:hover {
    border-color: #3b82f6;
}

.contact-card.phone:hover {
    border-color: #f59e0b;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-card.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-card.email .contact-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.contact-card.phone .contact-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.contact-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============================================
   HERO TRIAL BADGE - DARK THEME
   ============================================ */
.hero-trial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.4);
    padding: 14px 24px;
    border-radius: 14px;
    color: #4ade80;
    font-size: 15px;
    font-weight: 600;
    margin-top: 32px;
    backdrop-filter: blur(10px);
}

.hero-trial i {
    font-size: 20px;
    color: #4ade80;
}

.hero-trial span,
.hero-trial strong {
    color: #4ade80 !important;
}

/* ============================================
   CTA TRUST BADGES
   ============================================ */
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.cta-trust i {
    color: #10b981;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */
@media (max-width: 1024px) {
    .callerid-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .callerid-content {
        text-align: center;
    }
    
    .callerid-features {
        display: inline-block;
        text-align: left;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .callerid-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
}


/* ============================================
   TOP BANNER - V3 DARK THEME
   ============================================ */
.top-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    margin-bottom: 40px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    animation: bannerFloat 3s ease-in-out infinite;
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.top-banner i {
    color: #fbbf24;
    font-size: 18px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.top-banner span {
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 0.5px;
}

/* ============================================
   NEW DASHBOARD MOCKUP - V3 PREMIUM
   ============================================ */
.dashboard-mockup {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: mockupFloat 6s ease-in-out infinite;
    position: relative;
}

@keyframes mockupFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.1), transparent 30%);
    animation: mockupRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes mockupRotate {
    100% { transform: rotate(360deg); }
}

.mockup-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #374151;
    transition: all 0.3s ease;
}

.mockup-dots span:first-child { background: #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }
.mockup-dots span:nth-child(2) { background: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.5); }
.mockup-dots span:last-child { background: #10b981; box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }

.mockup-title {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mockup-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.5) 100%);
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.mockup-stat-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.mockup-stat-box:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mockup-stat-box i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mockup-stat-box.blue i {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    color: #60a5fa;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.mockup-stat-box.green i {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
    color: #34d399;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.mockup-stat-box.orange i {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.1));
    color: #fbbf24;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.mockup-stat-box.purple i {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
    color: #a78bfa;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.mockup-stat-info {
    display: flex;
    flex-direction: column;
}

.mockup-stat-num {
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mockup-stat-label {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-revenue {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.mockup-revenue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: revenueShine 3s ease-in-out infinite;
}

@keyframes revenueShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.revenue-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.revenue-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.revenue-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.revenue-amount {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.revenue-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.1));
    color: #34d399;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mockup-caller {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    animation: callerGlow 2s ease-in-out infinite;
}

@keyframes callerGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
}

.caller-pulse {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    animation: callerPulse 1.5s infinite;
}

@keyframes callerPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

.caller-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    animation: ring 1.5s infinite;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.caller-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.caller-title {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.caller-name-small {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-top: 3px;
}

.caller-arrow {
    color: #64748b;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mockup-caller:hover .caller-arrow {
    color: #60a5fa;
    transform: translateX(4px);
}
