/*
    MessagingHub Public Landing Page Styles
    Tailored for RTL (Farsi) Layout
    Font: Vazirmatn
*/

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0d9488;
    --primary-hover: #0f766e;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --neutral-light: #f8fafc;
    --border-color: #e2e8f0;
}

* {
    font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--slate-900);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0d9488 100%);
    color: #ffffff;
    padding: 100px 0 120px 0;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    transform: skewY(-2deg);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: #cbd5e1;
    line-height: 1.8;
}

/* Landing Buttons */
.btn-landing {
    padding: 0.65rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-landing-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #ffffff;
}

.btn-landing-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-landing-outline {
    background-color: transparent;
    border: 1.5px solid #ffffff;
    color: #ffffff;
}

.btn-landing-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-landing-secondary {
    background-color: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--slate-800);
}

.btn-landing-secondary:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
    color: var(--slate-900);
}

/* Feature Cards */
.feature-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 148, 136, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
}

/* Stats Counter Section */
.stats-section {
    background-color: var(--neutral-light);
    padding: 60px 0;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Integrations Section */
.integration-badge {
    padding: 0.8rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.integration-badge:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Landing Footer */
.landing-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1e293b;
}

.landing-footer h5 {
    color: #ffffff;
    font-weight: 700;
}

.landing-footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing-footer-link:hover {
    color: var(--primary);
}
