/* ==========================================================================
   Sib SMS - Consolidated Modern Theme CSS
   ========================================================================== 
   This file combines and categorizes theme-style, consolidated, modern-design, 
   and modern-theme css files while respecting the original cascade order.
   ========================================================================== */

/* ==========================================================================
   1. Fonts & Variables
   ========================================================================== */

/* تضمین نظم متن فارسی و فونت مناسب برای صفحات RTL */
body, .promotional-page, [dir="rtl"] {
    font-family: 'IRANYekanX', Tahoma, Arial, sans-serif !important;
    direction: rtl !important;
    text-align: right !important;
    word-break: normal;
}

/* Reduce empty gap between summary and next section when no table exists */
#Summary-of-capabilities.no-summary-table {
    padding-bottom: 0.75rem;
}

#Summary-of-capabilities.no-summary-table .summary-features-row {
    margin-bottom: 0.5rem !important;
}

#Summary-of-capabilities.no-summary-table+#Improvement {
    padding-top: 1rem;
}

@media (max-width: 991.98px) {
    #Summary-of-capabilities.no-summary-table {
        padding-bottom: 0.5rem;
    }

    #Summary-of-capabilities.no-summary-table+#Improvement {
        padding-top: 0.75rem;
    }
}

/* Theme Name: Sib SMS Modern SaaS
Description: High-end SaaS Redesign inspired by modern productivity apps. */
:root {
    /* New SaaS Palette */
    --primary: #EB1D36;
    /* Red Primary */
    --primary-light: #FF5E71;
    --secondary: #1469EB;
    /* Secondary Blue */
    --secondary-light: rgba(20, 105, 235, 0.1);
    --accent: #1469EB;
    --dark: #1A1A1A;
    --light: #F9FAFB;
    --white: #FFFFFF;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
    --glass-blur: blur(20px);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --grad-soft: linear-gradient(135deg, #FDFCFB 0%, var(--secondary-light) 100%);
    --grad-purple-pink: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

    /* System */
    --radius-3xl: 40px;
    --radius-2xl: 24px;
    --radius-xl: 16px;
    --font-heading: 'IRANYekanX', 'Tahoma', sans-serif;
    --font-body: 'IRANYekanX', 'Tahoma', sans-serif;
}

@font-face {
    font-family: 'IRANYekanX';
    src: url('../fonts/IRANYekanX-Pro/IRANYekanXFaNum-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANYekanX';
    src: url('../fonts/IRANYekanX-Pro/IRANYekanXFaNum-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANYekanX';
    src: url('../fonts/IRANYekanX-Pro/IRANYekanXFaNum-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANYekanX';
    src: url('../fonts/IRANYekanX-Pro/IRANYekanXFaNum-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #EB1D36;
    --primary-light: #FF5E71;
    --primary-dark: #AC162B;
    --secondary-color: #1469EB;
    --bg-color: #FDFDFD;
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-main: #1A1A1A;
    --heading-color: #000000;
    --text-muted: #666666;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(235, 29, 54, 0.08);
    --shadow-lg: 0 20px 50px rgba(235, 29, 54, 0.12);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'IRANYekanX', 'Tahoma', sans-serif;

    /* Bootstrap Overrides for secondary color (#1469EB) */
    --bs-secondary: #1469EB;
    --bs-secondary-rgb: 20, 105, 235;
    --bs-info: #1469EB;
    --bs-info-rgb: 20, 105, 235;
}

/* ==========================================================================
   2. Base Tags & Globals
   ========================================================================== */

/* Base Style Override */
body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--dark);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--heading-color);
}

/* ==========================================================================
   3. Animations & Keyframes
   ========================================================================== */

/* Floating Animations */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes floatX {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

.animate-float {
    animation: floatY 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatY 8s ease-in-out infinite;
}

.animate-float-X {
    animation: floatX 7s ease-in-out infinite;
}

/* Text becomes white/transparent, mostly transparent due to span fade */
.hover-fade-text span.transition-opacity {
    transition: opacity 0.3s ease, margin 0.3s ease;
}

.hover-fade-text:hover span.transition-opacity {
    opacity: 0;
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-hub {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(15px) rotate(3deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes spinSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.float-anim-1 {
    animation: float1 5s ease-in-out infinite;
}

.float-anim-2 {
    animation: float2 6s ease-in-out infinite;
}

.float-anim-3 {
    animation: float3 4s ease-in-out infinite;
}

.spin-anim-slow {
    animation: spinSlow 80s linear infinite;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: #EB1D36;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

.float-anim-1 {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(235, 29, 54, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(235, 29, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(235, 29, 54, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-15px);
    }

    100% {
        transform: translateY(-50%) translateY(0px);
    }
}

.pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.fade-right-1 {
    animation: fadeRight 1.5s infinite 0s;
}

.fade-right-2 {
    animation: fadeRight 1.5s infinite 0.2s;
}

.fade-right-3 {
    animation: fadeRight 1.5s infinite 0.4s;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    90% {
        transform: rotate(-5deg);
    }

    20%,
    80% {
        transform: rotate(5deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(-5deg);
    }

    40%,
    60% {
        transform: rotate(5deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-5px);
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-soft {
    animation: pulse-soft 4s ease-in-out infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    animation: p-ring 2s infinite;
}

@keyframes p-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.floating-stat-card {
    position: absolute;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 3;
    text-align: center;
}

.circle-pulse {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: green-pulse 2s infinite;
}

@keyframes green-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   4. Utility Classes (Typography, Colors, Spacing)
   ========================================================================== */

.text-gradient {
    background: var(--grad-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Purple Section Variation (now using secondary blue) */
.bg-purple-gradient {
    background: #1469EB;
    background: linear-gradient(180deg, #1469EB 0%, #0F4FA8 100%);
    border-radius: var(--radius-3xl);
    color: white;
}

/* Scoped minimal CSS for hover effects if not present in main theme */
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

/* Inline critical styles for visual matching without new file */
.fw-black {
    font-weight: 900;
}

.hover-scale {
    transition: transform 0.5s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.bg-success-subtle {
    background-color: #d1fae5 !important;
}

.bg-primary-subtle {
    background-color: #dbeafe !important;
}

.bg-grid-dots {
    background-image: radial-gradient(#EB1D36 1.5px, transparent 1.5px);
    background-size: 15px 15px;
}

.bg-blue-subtle {
    background-color: #eef5ff;
}

.bg-red-subtle {
    background-color: #fff0f0;
}

.text-red {
    color: #EB1D36 !important;
}

.bg-red-light {
    background: #FFF5F6;
}

.bg-success-light {
    background: #ECFDF5;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Text alignment override for LTR/RTL context if forced */
.text-end {
    text-align: right !important;
}

/* Card Hover Effects */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.1) !important;
}

/* Subtles */
.bg-warning-subtle {
    background-color: #fffbeb !important;
}

.bg-success-subtle {
    background-color: #f0fdf4 !important;
}

.bg-primary-subtle {
    background-color: #eff6ff !important;
}

.fw-black {
    font-weight: 900;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bg-red-subtle {
    background-color: #fff1f2;
}

.text-red {
    color: #EB1D36;
}

.hover-scale {
    transition: transform 0.2s;
}

.hover-scale {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
    background-color: #f8f9fa !important;
}

.hover-elevate {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-elevate:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .075) !important;
}

/* Global Secondary Accents */
.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

/* Modern Theme Design System - Sib SMS
   Aggregated and Standardized from Template Parts */
.text-red {
    color: #EB1D36 !important;
}

/* Typography Utilities */
.fs-10 {
    font-size: 10px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fw-black {
    font-weight: 900 !important;
}

.bg-red-light {
    background: #FFF5F6 !important;
    color: #EB1D36 !important;
}

.bg-red {
    background: #EB1D36 !important;
}

.bg-success-light {
    background: #ECFDF5 !important;
}

.bg-red-soft-extra {
    background: #FFFBFC;
}

.bg-light-soft {
    background: #FFFBFC;
}

/* Secondary Blue Theme (#1469EB) */
.text-secondary-blue {
    color: #1469EB !important;
}

.bg-secondary-blue {
    background: #1469EB !important;
}

.bg-secondary-blue-light {
    background: rgba(20, 105, 235, 0.1) !important;
}

.border-secondary-blue {
    border-color: #1469EB !important;
}

.bg-gradient-blue {
    background: linear-gradient(90deg, #1469EB 0%, #0F4FA8 100%) !important;
}

.fs-18 {
    font-size: 1.1rem;
}

.fs-13 {
    font-size: 0.8rem;
}

.bg-gradient-red {
    background: linear-gradient(90deg, #EB1D36 0%, #AC162B 100%);
}

/* ==========================================================================
   5. Buttons & Badges (Components)
   ========================================================================== */

/* New Buttons */
.btn-saas-primary {
    background: var(--grad-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-saas-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
    color: white;
}

.btn-saas-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 34px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-saas-outline:hover {
    background: var(--primary);
    color: white;
}

/* Leftward movement for RTL */
.blog-category-badge {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    background-color: rgba(220, 53, 69, 0.95);
}

/* Scoped styles for CTA */
.btn-white {
    background-color: white;
    color: #dc3545;
    /* Bootstrap danger color */
    border: 2px solid white;
    transition: all 0.3s ease;
}

/* Bootstrap danger color */
.btn-white:hover {
    background-color: transparent;
    color: white;
    /* Text becomes white/transparent, mostly transparent due to span fade */
    border-color: white;
}

.btn-check:checked+.btn-white {
    background-color: #fff;
    color: #EB1D36 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    transform: translateY(-1px);
}

/* Button styling */
.btn-second-color {
    background-color: #1469EB;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-second-color:hover {
    background-color: #0f52ba;
    /* slightly darker #1469EB for hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(20, 105, 235, 0.3);
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #0F4FA8;
    border-color: #0F4FA8;
    color: white;
}

.btn-modern {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(235, 29, 54, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(235, 29, 54, 0.4);
}

.btn-modern-outline {
    background: var(--white);
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* Force Reset for WordPress Menu Links - Excluding Buttons */
.navbar-nav .menu-item a,
.navbar-nav .nav-link,
header a:not(.btn) {
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 0.5rem !important;
    position: relative;
    transition: var(--transition);
    border-radius: 12px;
    text-decoration: none !important;
    /* Forces removal of default underlines */
    display: inline-block;
    background: transparent !important;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-modern-primary {
    background: #EB1D36;
    color: white !important;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(235, 29, 54, 0.2);
}

.btn-modern-outline {
    border: 2px solid #EB1D36;
    color: #EB1D36 !important;
    background: transparent;
}

.btn-modern-outline:hover {
    background: #EB1D36;
    color: white !important;
}

.btn-modern-secondary {
    background: #1469EB;
    color: white !important;
}

.btn-modern-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20, 105, 235, 0.2);
}

.btn-secondary-blue {
    background: #1469EB;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-secondary-blue:hover {
    background: #0F4FA8;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 105, 235, 0.2);
}

.badge-minimal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #FFFFFF;
}

.btn-hero-main {
    background: #FFFFFF;
    color: #EB1D36 !important;
    padding: 15px 34px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 1.02rem;
    line-height: 1.35;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    min-height: 56px;
}

.btn-hero-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-hero-link {
    background: transparent;
    color: #FFFFFF !important;
    padding: 15px 28px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s;
}

.hero-cta-group .btn-hero-main i,
.hero-cta-group .btn-hero-link i {
    flex-shrink: 0;
}

.btn-hero-link:hover {
    opacity: 0.8;
    transform: translateX(-5px);
}

.badge-tag {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #EB1D36;
    line-height: 1;
}

.blog-date-badge .month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1A1A1A;
}

.btn-read-more {
    background: none;
    border: none;
    color: #EB1D36;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
}

.btn-read-more:hover {
    background: rgba(235, 29, 54, 0.05);
}

.btn-read-more.active i {
    transform: rotate(180deg);
}

.btn-modern-white {
    background: #FFFFFF;
    color: #EB1D36 !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-modern-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(235, 29, 54, 0.2);
    background: #FFF5F6;
}

.btn-mini-modern {
    background: #EB1D36;
    color: white;
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: #FFF5F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EB1D36;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #EB1D36;
    color: white;
    transform: translateY(-3px);
}

.social-btn-sm {
    width: 36px;
    height: 36px;
    background: #FFF5F6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EB1D36;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-btn-sm:hover {
    background: #EB1D36;
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   6. Header & Navigation
   ========================================================================== */

/* Header Update */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: none;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 0.5rem 1.5rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* Custom Styles for Modern Blog Redesign */
.blog-header-section {
    background: linear-gradient(180deg, rgba(220, 53, 69, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Global breadcrumb fix */
.rank-math-breadcrumb {
    display: none;
}

/* Unified Breadcrumb Styles */
.breadcrumb-unified .rank-math-breadcrumb {
    display: block !important;
    width: 100%;
}

.breadcrumb-unified .rank-math-breadcrumb p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.7;
}

.breadcrumb-unified .rank-math-breadcrumb .last {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    font-weight: 700;
}

/* Ensure separation from the badge */
.breadcrumb-unified .rank-math-breadcrumb .separator {
    margin: 0 0.15rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.sf-breadcrumb-shell {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.breadcrumb-unified {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.45rem 0.8rem;
    direction: rtl;
}

.sf-breadcrumb-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.24);
    color: #FFFFFF;
    flex-shrink: 0;
}

.breadcrumb-unified .rank-math-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.breadcrumb-unified .rank-math-breadcrumb a:hover {
    color: #FFFFFF;
    opacity: 1;
}

.sf-feature-chip {
    background: rgba(20, 20, 20, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991.98px) {
    .sf-breadcrumb-shell {
        display: flex;
        align-items: stretch;
        gap: 0.75rem;
    }

    .breadcrumb-unified {
        width: 100%;
        justify-content: flex-start;
        border-radius: 14px;
        padding: 0.55rem 0.75rem;
    }

    .breadcrumb-unified .rank-math-breadcrumb p {
        font-size: 0.8rem;
        gap: 0.25rem;
    }

    .breadcrumb-unified .rank-math-breadcrumb .last {
        max-width: 100%;
    }

    .sf-feature-chip {
        width: fit-content;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .sf-breadcrumb-shell {
        gap: 0.2rem;
    }
    .breadcrumb-unified {
        display: inline-flex !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 100%;
        padding: 0.22rem 0.45rem !important;
        border-radius: 10px !important;
        font-size: 0.72rem !important;
        margin: 0 0 0 auto !important;
        float: right !important;
    }
    .sf-breadcrumb-icon {
        display: none !important;
    }
    .breadcrumb-unified .rank-math-breadcrumb p {
        font-size: 0.72rem !important;
        gap: 0.1rem !important;
        color: #fff;
        padding: 0;
    }
    .breadcrumb-unified .rank-math-breadcrumb .last {
        padding: 0 0.2rem !important;
        font-weight: 700;
        color: #fff;
    }
    .breadcrumb-unified .rank-math-breadcrumb .separator {
        margin: 0 0.1rem !important;
    }
}
}

/* Navbar Enhancements */
header.fixed-top {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(235, 29, 54, 0.05);
    transition: var(--transition);
}

/* Forces removal of default underlines */
.navbar-nav .menu-item a:hover,
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(235, 29, 54, 0.04) !important;
}

.navbar-nav .menu-item a:after,
.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
    transform: translateX(-50%);
    opacity: 0;
}

.navbar-nav .menu-item a:hover:after,
.navbar-nav .menu-item.current-menu-item a:after,
.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 12px;
    opacity: 1;
}

.navbar-nav .menu-item.current-menu-item a,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(235, 29, 54, 0.06) !important;
}

.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.feature-header-inline {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FAQ Active State Override */
.nav-pills .nav-link.active {
    background-color: #EB1D36 !important;
    border-color: #EB1D36 !important;
}

/* ==========================================================================
   7. Hero & Banner Sections
   ========================================================================== */

/* Hero Elements */
.hero-mockup-container {
    position: relative;
    perspective: 1000px;
}

.bg-gradient-subtle {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(240, 240, 240, 0.4));
}

.hero-section {
    background: #1A1A1A;
    /* Fallback */
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    color: white;
}

.z-index-2 {
    z-index: 2;
}

/* Fallback */
.hero-glow-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(235, 29, 54, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
    filter: blur(80px);
}

.hero-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
    filter: blur(80px);
}

/* Responsive negative margin for precise positioning */
.hero-content-overlap {
    margin-top: 0;
    padding-bottom: 2rem;
    /* Add some space at bottom */
}

.hero-row-height {
    min-height: auto;
    margin-top: -30px;
}

.sf-template {
    overflow-x: hidden;
    background-color: #ffffff;
}

.sf-template a {
    text-decoration: none !important;
    color: #EB1D36;
    /* Appropriate default link color matching brand red */
    transition: opacity 0.3s ease;
}

/* Appropriate default link color matching brand red */
.sf-template a:hover {
    opacity: 0.8;
}

.sf-template .drop-shadow {
    filter: drop-shadow(0 10px 30px rgba(235, 29, 54, 0.1));
}

.sf-template .bg-red-light {
    background-color: #FFF5F6 !important;
    color: #EB1D36 !important;
}

/* Ensure perfect 1:1 circle ratio and centering */
.sf-template .icon-circle {
    aspect-ratio: 1/1 !important;
    width: clamp(40px, 5vw, 60px);
    height: auto;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    flex-shrink: 0;
}

.sf-template .primary-text-contrast {
    color: #FFFFFF !important;
}

.hero-section {
    padding: 120px 0 60px;
    background: #EB1D36;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-display {
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    color: #FFFFFF !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-lead {
    font-size: 1.15rem;
    max-width: 520px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-visual-center {
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

/* Hero Text Toggle Arrow */
.toggle-arrow {
    transition: transform 0.3s ease;
}

/* ==========================================================================
   8. Panels & Features
   ========================================================================== */

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--glass-shadow);
}

.feature-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08) !important;
}

/* Manual Extraction */
.sms-panel-feature-blob {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    transform: scale(1.5) translateX(-20%);
    z-index: 0;
}

.feature-item-glass {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.feature-item-glass:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(235, 29, 54, 0.1);
}

.feature-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.feature-card-simple {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.feature-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.glass-feature-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #FFF0F1;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem !important;
    color: #EB1D36;
    transition: 0.3s ease;
}

.glass-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.glass-feature-card:hover .card-arrow-inline {
    opacity: 1;
    transform: translateX(0);
}

.glass-feature-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   9. Blog & Articles
   ========================================================================== */

.blog-card-modern {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    background-color: #fff;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(220, 53, 69, 0.15) !important;
}

.blog-card-modern .card-img-wrap {
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    height: 220px;
    position: relative;
}

.blog-card-modern .card-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-modern:hover .card-img-wrap img {
    transform: scale(1.08);
}

.blog-card-modern .read-more-link {
    transition: color 0.3s ease;
}

.blog-card-modern .read-more-link .icon-wrap {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.blog-card-modern:hover .read-more-link .icon-wrap {
    transform: translateX(-6px);
    /* Leftward movement for RTL */
    background-color: rgba(220, 53, 69, 0.2) !important;
}

.modern-blog-card {
    background: #FFFFFF;
    border-radius: 30px;
    border: 1px solid #FFF0F1;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-thumb-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: #FFFBFC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFDEE2;
}

.blog-title {
    font-size: 1.15rem;
    line-height: 1.5;
}

.blog-excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==========================================================================
   10. Pricing & Tariffs
   ========================================================================== */

.pricing-card {
    background: #FFFFFF;
    border-radius: 40px;
    border: 1px solid #FFF0F1;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.plan-popular {
    background: #FFFFFF;
    border: 2px solid #EB1D36;
    box-shadow: 0 30px 70px rgba(235, 29, 54, 0.15);
    z-index: 2;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4A4A4A;
}

.pricing-features li i {
    color: #10B981;
    font-size: 1.2rem;
}

.plan-normal:hover {
    border-color: #FFDEE2;
    transform: translateY(-8px);
}

/* ==========================================================================
   11. Footer & Social
   ========================================================================== */

.social-card {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-card:hover {
    background: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.social-card:hover i {
    transform: scale(1.1);
}

.testimonial-footer {
    padding-top: 15px !important;
}

.footer-modern {
    background: #FFFFFF;
    border-top: 1px solid #FFF0F1;
    padding-top: 40px !important;
}

.footer-link {
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #EB1D36;
    transform: translateX(-5px);
}

.glass-footer-card {
    background: #FFFBFC;
    border-radius: 20px;
    border: 1px solid #FFF0F1;
}

/* ==========================================================================
   12. Other Template Sections
   ========================================================================== */

.accordion-item-modern {
    transition: all 0.3s ease;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.aspect-square {
    aspect-ratio: 1/1;
}

.desktop-pill {
    border-radius: 1rem;
}

.modern-blog-card:hover img {
    transform: scale(1.05);
}

.step .content.active {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
    z-index: 10;
}

.plugin-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* ==========================================================================
   13. Responsive / Media Queries
   ========================================================================== */

@media (max-width: 767px) {
    .border-white-50 {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding-bottom: 1rem;
    }

    .col-6:nth-last-child(1) .border-white-50,
    .col-6:nth-last-child(2) .border-white-50 {
        border-bottom: none !important;
    }

}

/* Mobile/Tablet: keep all check icons on the right in Regional SMS cards. */
@media (max-width: 991.98px) {
    #Regional-SMS .feature-card-hover .card-body,
    #Regional-SMS .feature-card-hover .card-body.flex-row,
    #Regional-SMS .feature-card-hover .card-body.flex-row-reverse {
        direction: rtl;
        flex-direction: row !important;
    }
}

/* Add some space at bottom */
@media (min-width: 992px) {
    .hero-content-overlap {
        /* Pull text up into the empty space of the image */
        margin-top: -160px;
    }
}

/* Pull text up into the empty space of the image */
@media (min-width: 1400px) {
    .hero-content-overlap {
        margin-top: -200px;
    }
}

@media (min-width: 992px) {
    .step-card {
        flex: 1 1 0;
        width: 100% !important;
    }

    .scrollbar-hide {
        overflow-x: visible !important;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .hero-row-height {
        min-height: 75vh;
        margin-top: 0;
    }
}

/* Mobile: Rounded-4 equivalent (1rem approx) */
@media (min-width: 768px) {
    .desktop-pill {
        border-radius: 50rem !important;
    }
}

@media (max-width: 991.98px) {
    #OurTariffs_page {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    #OurTariffs_page .card {
        height: auto !important;
        min-height: 0;
        margin-bottom: 1rem;
    }

    /* Keep large icons hidden on mobile to save scroll space, 
               but restore other elements for readability */
    #OurTariffs_page .card-header .rounded-circle {
        display: none !important;
    }

    #OurTariffs_page .card-header {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    #OurTariffs_page .card-header .badge {
        display: inline-block;
        /* Restore popular badge */
        font-size: 0.75rem;
        padding: 0.35em 0.65em;
    }

    #OurTariffs_page .card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem !important;
    }

    #OurTariffs_page .card-body {
        padding: 1.5rem !important;
        overflow-x: auto;
        /* Allow horizontal scroll if content is too wide */
        white-space: nowrap;
    }

    /* Restore "hazar toman" */
    #OurTariffs_page .text-muted.d-block.mt-1 {
        display: block !important;
        font-size: 0.9rem;
    }

    #OurTariffs_page .display-5 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    #OurTariffs_page .btn {
        padding: 0.5rem 1rem !important;
        font-size: 1rem;
        margin-bottom: 1rem !important;
        width: 100%;
        white-space: normal;
        /* Button text should wrap if needed */
    }

    #OurTariffs_page ul li {
        margin-bottom: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        font-size: 0.9rem;
        white-space: nowrap;
        /* Prevent wrapping to trigger scroll */
        overflow: visible;
    }


}

/* Responsive Utilities */
@media (max-width: 991.98px) {
    .text-end {
        text-align: center !important;
    }

    .hero-lead {
        margin-right: auto;
    }

    .hero-display {
        font-size: clamp(1.75rem, 7.8vw, 2.8rem);
        line-height: 1.3;
    }

    .hero-cta-group {
        width: 100%;
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
        gap: 12px !important;
    }

    .hero-cta-group .btn-hero-main,
    .hero-cta-group .btn-hero-link {
        width: 100%;
        padding: 13px 18px;
        font-size: 0.95rem;
        line-height: 1.45;
        white-space: normal;
    }

    .minimal-phone-frame {
        transform: none !important;
        width: 250px;
        height: 500px;
    }

    .trust-stats {
        border-right: none;
        padding-right: 0;
        margin-top: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-item-glass {
        flex-direction: column;
        text-align: center;
    }

    .glass-feature-card {
        padding: 35px !important;
    }

    .stats-compact-section {
        padding: 0;
    }

    .stat-compact-item {
        padding: 40px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-wrapper {
        padding: 40px 20px !important;
        text-align: center;
    }

    .footer-brand {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1200px) {
    .hero-cta-group .btn-hero-main {
        white-space: nowrap;
        padding-inline: 36px;
    }

    .hero-cta-group .btn-hero-link {
        white-space: nowrap;
    }
}

/* Tariff cards: keep header and CTA rows aligned across columns without affecting mobile flow */
#OurTariffs_page .tariff-plan-body {
    display: flex;
    flex-direction: column;
}

#OurTariffs_page .tariff-price-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#OurTariffs_page .tariff-cta-wrap {
    margin-bottom: 1.5rem;
}

#OurTariffs_page .tariff-cta-wrap .btn {
    margin-bottom: 0 !important;
}

@media (min-width: 768px) {
    #OurTariffs_page .tariff-plan-header {
        min-height: 205px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    #OurTariffs_page .tariff-plan-header::after {
        content: "";
        display: block;
        height: 28px;
        margin-top: 0.75rem;
    }

    #OurTariffs_page .tariff-plan-card:first-child .tariff-plan-header .badge {
        position: absolute;
        left: 50%;
        bottom: 0.9rem;
        transform: translateX(-50%);
        margin-top: 0 !important;
    }

    #OurTariffs_page .tariff-plan-card:not(:first-child) .tariff-plan-header .badge {
        display: none;
    }

    #OurTariffs_page .tariff-price-wrap {
        min-height: 138px;
    }
}

@media (max-width: 767.98px) {
    #OurTariffs_page .tariff-plan-header,
    #OurTariffs_page .tariff-price-wrap {
        min-height: auto;
    }
}

/* ==========================================================================
   14. Uncategorized
   ========================================================================== */

/* Sections */
.section-padding {
    padding: 20px 0;
}

/* Modern Components */
.card-saas {
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 2rem;
}

.card-saas:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

/* Abstract Background Shapes */
.blob-bg {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    border-radius: 50%;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--grad-soft);
    padding: 20px;
}

/* Custom Checkmark for Saas */
.check-list li {
    list-style: none;
    position: relative;
    padding-right: 35px;
    margin-bottom: 15px;
}

.check-list li::before {
    content: '\eb7a';
    /* RemixIcon circle-fill check */
    font-family: 'remixicon';
    position: absolute;
    right: 0;
    color: var(--primary);
    background: var(--primary-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transition-all {
    transition: all 0.3s ease;
}

.group-hover-link:hover .ri-arrow-left-line {
    transform: translateX(-5px);
}

.transition-transform {
    transition: transform 0.3s ease;
}

.rounded-end-pill {
    border-top-right-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;
}

.drop-shadow-xl {
    filter: drop-shadow(0 20px 40px rgba(220, 53, 69, 0.2));
}

/* RTL adjustment: Flip arrow for Persian */
[dir="rtl"] .ri-arrow-left-line {
    transform: rotate(0deg);
    /* Reset if needed or Keep if default icon points left */
}

.tracking-wider {
    letter-spacing: 1px;
}

.transition-hover-border:hover {
    border-color: var(--bs-primary) !important;
}

.accordion-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.rotate-45 {
    transform: rotate(45deg);
}

/* Override bootstrap toggle icon logic for custom icon */
.accordion-button::after {
    display: none;
}

.blur-3xl {
    filter: blur(3rem);
}

/* Icon Scale Effect */
.group:hover .transition-scale {
    transform: scale(1.1);
}

.transition-scale {
    transition: transform 0.3s ease;
}

/* Arrow Movement */
.group-hover-translate {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.group:hover .group-hover-translate {
    transform: translateX(-5px);
    /* Moves left in LTR, checks based on Dir */
    background-color: var(--bs-primary) !important;
}

/* Moves left in LTR, checks based on Dir */
.group:hover .group-hover-translate i {
    color: white !important;
}

.shake-slow {
    animation: shake 2s infinite cubic-bezier(.36, .07, .19, .97) both;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.x-small {
    font-size: 0.75rem;
}

.step-label.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}

.draggable:active {
    cursor: grabbing !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.3) !important;
}

/* Internal styles for page text readability and applying the requested second color */
.page-main-content .content-card h1,
.page-main-content .content-card h2,
.page-main-content .content-card h3,
.page-main-content .content-card h4,
.page-main-content .content-card h5,
.page-main-content .content-card h6 {
    color: var(--heading-color, #000000);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.page-main-content .content-card h1:first-child,
.page-main-content .content-card h2:first-child,
.page-main-content .content-card h3:first-child {
    margin-top: 0;
}

.page-main-content .content-card p {
    margin-bottom: 1.25rem;
    color: var(--text-muted, #666666);
    line-height: 2.1;
}

/* Second color usage for links */
.page-main-content .content-card a {
    color: #1469EB;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-main-content .content-card a:hover {
    color: var(--primary-color, #EB1D36);
    text-decoration: underline;
}

/* Second color usage for list markers */
.page-main-content .content-card ul,
.page-main-content .content-card ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
    /* RTL support */
}

/* RTL support */
.page-main-content .content-card li {
    margin-bottom: 0.75rem;
    color: var(--text-muted, #666666);
    line-height: 2.1;
}

.page-main-content .content-card li::marker {
    color: #1469EB;
    font-weight: bold;
}

/* Content Images */
.page-main-content .content-card img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md, 20px);
    box-shadow: var(--shadow-soft, 0 10px 30px rgba(0, 0, 0, 0.05));
    margin: 2rem 0;
    display: block;
}

/* Blockquotes */
.page-main-content .content-card blockquote {
    border-right: 4px solid #1469EB;
    background: rgba(20, 105, 235, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 12px 0 0 12px;
    /* RTL rounded corners: left rounded, right flat */
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text-main, #1A1A1A);
    position: relative;
}

/* RTL rounded corners: left rounded, right flat */
.page-title-underline {
    height: 4px;
    width: 60px;
    background-color: #1469EB;
}

/* Internal styles for post text readability and applying the requested second color (#1469EB) */
.post-main-content .content-card h1,
.post-main-content .content-card h2,
.post-main-content .content-card h3,
.post-main-content .content-card h4,
.post-main-content .content-card h5,
.post-main-content .content-card h6 {
    color: var(--heading-color, #000000);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.post-main-content .content-card h1:first-child,
.post-main-content .content-card h2:first-child,
.post-main-content .content-card h3:first-child {
    margin-top: 0;
}

.post-main-content .content-card p {
    margin-bottom: 1.25rem;
    color: var(--text-muted, #666666);
    line-height: 2.1;
}

/* Second color usage for links (#1469EB) */
.post-main-content .content-card a {
    color: #1469EB;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-main-content .content-card a:hover {
    color: var(--primary-color, #EB1D36);
    text-decoration: underline;
}

/* Second color usage for list markers */
.post-main-content .content-card ul,
.post-main-content .content-card ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
    /* RTL support */
}

/* RTL support */
.post-main-content .content-card li {
    margin-bottom: 0.75rem;
    color: var(--text-muted, #666666);
    line-height: 2.1;
}

.post-main-content .content-card li::marker {
    color: #1469EB;
    font-weight: bold;
}

/* Content Images */
.post-main-content .content-card img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md, 20px);
    box-shadow: var(--shadow-soft, 0 10px 30px rgba(0, 0, 0, 0.05));
    margin: 2rem 0;
    display: block;
}

/* Blockquotes */
.post-main-content .content-card blockquote {
    border-right: 4px solid #1469EB;
    background: rgba(20, 105, 235, 0.05);
    /* #1469EB with opacity */
    padding: 1.5rem 2rem;
    border-radius: 12px 0 0 12px;
    /* RTL rounded corners: left rounded, right flat */
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text-main, #1A1A1A);
    position: relative;
}

/* RTL rounded corners: left rounded, right flat */
.post-title-underline {
    height: 4px;
    width: 60px;
    background-color: #1469EB;
}

/* Sidebar Styles reusing second color */
.sidebar-box {
    background-color: rgba(255, 255, 255, 0.85);
    /* subtle glass effect */
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md, 20px);
    box-shadow: var(--shadow-sm, 0 5px 15px rgba(0, 0, 0, 0.03));
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* subtle glass effect */
.sidebar-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md, 0 15px 35px rgba(0, 0, 0, 0.07));
}

.sidebar-box .box-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color, #000000);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.sidebar-box .box-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    /* RTL alignment */
    width: 40px;
    height: 3px;
    background-color: #1469EB;
    border-radius: 2px;
}

/* RTL alignment */
.latest-posts-list a {
    color: var(--text-main, #1A1A1A);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    display: block;
    line-height: 1.5;
}

.latest-posts-list a:hover {
    color: #1469EB;
}

.latest-posts-list li {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.latest-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.plugin-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
    color: #1469eb;
    border-color: rgba(20, 105, 235, 0.2);
}

.plugin-pill i {
    font-size: 18px;
}

.plugin-pill-more {
    background: rgba(20, 105, 235, 0.05);
    color: #1469eb;
    border: 1px dashed rgba(20, 105, 235, 0.3);
}

.plugin-pill-more:hover {
    background: rgba(20, 105, 235, 0.1);
}

/* Inline Style */
.inline-style-c1c40348 {
    background-color: #0c1a30;
    font-family: var(--font-body), sans-serif;
}

/* Inline Style */
.inline-style-f7957f59 {
    height: 6px;
    width: 100%;
}

/* Inline Style */
.inline-style-17a3ab42 {
    background-color: rgba(255, 255, 255, 0.04);
}

/* Inline Style */
.inline-style-6b74f363 {
    width: 75px;
    height: 75px;
}

/* Inline Style */
.inline-style-d5266e95 {
    line-height: 1.8;
}

/* Inline Style */
.inline-style-68e684df {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

/* Inline Style */
.inline-style-9d510adb {
    border-radius: 0;
    min-width: max-content;
    min-height: 60px;
}

/* Inline Style */
.inline-style-beaf32cb {
    width: 28px;
    height: 28px;
}

/* Inline Style */
.inline-style-bdb2ed54 {
    background-color: #1469EB;
}

/* Inline Style */
.inline-style-977d32f6 {
    height: 10px;
}

/* Inline Style */
.inline-style-76674537 {
    font-size: 13px;
}

/* Inline Style */
.inline-style-5c60916e {
    letter-spacing: -0.5px;
}

/* Inline Style */
.inline-style-45a08d22 {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.8;
}

/* Inline Style */
.inline-style-d4fed6d3 {
    background-color: #fcfcfc;
    min-height: 50vh;
}

/* Inline Style */
.inline-style-a1fe9675 {
    font-size: 12px;
    z-index: 2;
}

/* Inline Style */
.inline-style-607924ec {
    font-size: 17px;
    line-height: 1.6;
}

/* Inline Style */
.inline-style-a7f0c744 {
    font-size: 14px;
    line-height: 1.8;
}

/* Inline Style */
.inline-style-7b72d420 {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Inline Style */
.inline-style-026932e8 {
    width: 32px;
    height: 32px;
}

/* Inline Style */
.inline-style-5e07093a {
    border-color: rgba(0, 0, 0, 0.05) !important;
    max-width: 600px;
}

/* Inline Style */
.inline-style-64421442 {
    font-size: 5rem;
}

/* Inline Style */
.inline-style-4fd29446 {
    width: 50px;
    height: 50px;
}

/* Inline Style */
.inline-style-47c5d3b9 {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

/* Inline Style */
.inline-style-4a8bf45c {
    text-align: right !important;
}

/* Inline Style */
.inline-style-acc32ba8 {
    mask-type: alpha
}

/* Inline Style */
.inline-style-732c607b {
    width: 80px;
    height: 80px;
}

/* Inline Style */
.inline-style-35e05474 {
    width: 150px;
    height: 150px;
    transform: translate(30%, -30%);
}

/* Inline Style */
.inline-style-99ef3b1d {
    min-height: 85vh;
}

/* Inline Style */
.inline-style-dc310e06 {
    margin-left: auto;
}

/* Inline Style */
.inline-style-3f9f7eaf {
    min-height: 500px;
}

/* Inline Style */
.inline-style-15261e0b {
    width: 100%;
    max-width: 450px;
    height: 450px;
}

/* Inline Style */
.inline-style-2e81f04f {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(235, 29, 54, 0.08) 0%, rgba(235, 29, 54, 0) 70%);
    z-index: 1;
}

/* Inline Style */
.inline-style-fda19231 {
    width: 180px;
    height: 180px;
    z-index: 10;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), inset 0 -5px 10px rgba(0, 0, 0, 0.02);
    animation: float-hub 6s ease-in-out infinite;
}

/* Inline Style */
.inline-style-749e11c1 {
    font-size: 5rem;
    filter: drop-shadow(0 10px 20px rgba(235, 29, 54, 0.2));
    transform: scale(1.1);
}

/* Inline Style */
.inline-style-e0eaebb3 {
    z-index: 12;
    width: 170px;
    transform: rotate(-3deg);
}

/* Inline Style */
.inline-style-143e03f9 {
    width: 48px;
    height: 48px;
}

/* Inline Style */
.inline-style-a67f6e13 {
    width: 6px;
    height: 6px;
}

/* Inline Style */
.inline-style-c500f497 {
    z-index: 12;
    width: 160px;
    transform: rotate(3deg);
}

/* Inline Style */
.inline-style-267c946a {
    width: 60px;
    height: 60px;
    z-index: 5;
}

/* Inline Style */
.inline-style-533da294 {
    width: 40px;
    height: 40px;
    z-index: 5;
    animation-delay: 1s;
}

/* Inline Style */
.inline-style-f2106393 {
    z-index: 0;
    pointer-events: none;
}

/* Inline Style */
.inline-style-ba76d6bb {
    width: 120%;
    height: 120%;
    filter: blur(60px);
    z-index: 0;
}

/* Inline Style */
.inline-style-09ec06ee {
    width: 50px;
    height: 4px;
}

/* Inline Style */
.inline-style-516f4c53 {
    width: 64px;
    height: 64px;
}

/* Inline Style */
.inline-style-9a6a534a {
    width: 40px;
    height: 40px;
}

/* Inline Style */
.inline-style-76ac443d {
    border-radius: 45px;
    background: linear-gradient(135deg, #FF4B5C 0%, #EB1D36 100%);
    min-height: 320px;
}

/* Inline Style */
.inline-style-d4fe53d1 {
    opacity: 0.1;
}

/* Inline Style */
.inline-style-c4381252 {
    width: 45px;
    height: 120px;
    left: -1px;
    z-index: 10;
}

/* Inline Style */
.inline-style-5d7214c9 {
    margin-left: -5px;
}

/* Inline Style */
.inline-style-87d9a335 {
    font-weight: 900;
    letter-spacing: -1px;
}

/* Inline Style */
.inline-style-331eb2aa {
    letter-spacing: 8px;
    font-family: sans-serif;
}

/* Inline Style */
.inline-style-7851dbc0 {
    text-align: right;
}

/* Inline Style */
.inline-style-40b848ed {
    width: 30px;
    height: 3px;
}

/* Inline Style */
.inline-style-ae014e0b {
    font-size: 1rem;
    text-align: justify;
    text-align-last: right;
}

/* Inline Style */
.inline-style-d83f2247 {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

/* Inline Style */
.inline-style-aaa0b6cd {
    background: radial-gradient(circle at 10% 20%, #f8f9fa 0%, #e9ecef 90%);
}

/* Inline Style */
.inline-style-37386e89 {
    width: 600px;
    height: 600px;
    transform: translate(30%, -30%);
}

/* Inline Style */
.inline-style-4a5266f9 {
    width: 500px;
    height: 500px;
    transform: translate(-30%, 30%);
}

/* Inline Style */
.inline-style-db0e95a6 {
    max-width: 340px;
    perspective: 1000px;
}

/* Inline Style */
.inline-style-ea070b95 {
    border-radius: 45px !important;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Inline Style */
.inline-style-342753c1 {
    width: 35%;
    height: 24px;
}

/* Inline Style */
.inline-style-1468499c {
    height: 600px;
    background: linear-gradient(180deg, #F3F4F6 0%, #FFFFFF 100%);
}

/* Inline Style */
.inline-style-be3c0e04 {
    width: 70px;
    height: 70px;
}

/* Inline Style */
.inline-style-052ff0c6 {
    width: 18px;
    height: 18px;
}

/* Inline Style */
.inline-style-00f66917 {
    height: 4px;
}

/* Inline Style */
.inline-style-3ea13412 {
    width: 25%
}

/* Inline Style */
.inline-style-0beefff5 {
    height: 70px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

/* Inline Style */
.inline-style-dd4f87b5 {
    z-index: 1;
    padding-inline-end: 80px;
}

/* Inline Style */
.inline-style-ba5acec6 {
    width: 62px;
    height: 62px;
}

/* Inline Style */
.inline-style-a898fd7d {
    width: 100%;
    height: 100%;
}

/* Inline Style */
.inline-style-394c9a64 {
    font-size: 3.5rem;
}

/* Inline Style */
.inline-style-e09a7622 {
    height: 50px;
}

/* Inline Style */
.inline-style-7a937c2b {
    height: 54px;
}

/* Inline Style */
.inline-style-84cea379 {
    height: 20px;
}

/* Inline Style */
.inline-style-9df68d2c {
    height: 42px;
    min-width: 110px;
}

/* Inline Style */
.inline-style-e2dfddff {
    letter-spacing: 4px;
    font-family: monospace, sans-serif;
}

/* Inline Style */
.inline-style-a06603ef {
    min-width: 200px;
}

/* Inline Style */
.inline-style-351b3caa {
    min-width: 240px;
}

/* Inline Style */
.inline-style-90d11ae1 {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

/* Inline Style */
.inline-style-d1cac21e {
    background: linear-gradient(90deg, #34D399 0%, #10B981 100%);
}

/* Inline Style */
.inline-style-9a941e5f {
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

/* Inline Style */
.inline-style-c25159cb {
    width: 150px;
}

/* Inline Style */
.inline-style-b5e11883 {
    background-color: #ffffff;
}

/* Inline Style */
.inline-style-eb9eb8ea {
    height: 400px;
}

/* Inline Style */
.inline-style-9791c141 {
    max-width: 900px;
    text-align: justify;
}

/* Inline Style */
.inline-style-ec647db7 {
    line-height: 0;
    pointer-events: none;
}

/* Inline Style */
.inline-style-c7b4c30f {
    width: 100%;
    height: auto;
    min-height: 60px;
}

/* Inline Style */
.inline-style-c4510109 {
    background-color: #E6F0FF;
    min-height: 80px;
}

/* Inline Style */
.inline-style-ea311719 {
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    min-width: 250px;
}

/* Inline Style */
.inline-style-4237df37 {
    background-color: #EB1D36;
    border-color: #EB1D36;
}

/* Inline Style */
.inline-style-69883647 {
    background-color: #EB1D36;
    border: none;
}

/* Inline Style */
.inline-style-9db6d704 {
    background-color: #F8F9FA;
}

/* Inline Style */
.inline-style-b4604794 {
    width: 25px;
    height: 1.5px;
    background-color: #EB1D36;
}

/* Inline Style */
.inline-style-6e47c6cb {
    font-size: 0.95rem;
}

/* Inline Style */
.inline-style-40b72cba {
    font-size: 1.8rem;
}

/* Inline Style */
.inline-style-1f83aeff {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Inline Style */
.inline-style-89fa5842 {
    transition-timing-function: linear;
}

/* Inline Style */
.inline-style-dc251bdb {
    width: auto;
}

/* Inline Style */
.inline-style-ff3afd15 {
    width: 380px;
    height: 130px;
    overflow: hidden;
    border-color: #E6E8EA !important;
    padding: 1.25rem;
}

/* Inline Style */
.inline-style-e540e1d6 {
    color: #EB1D36;
    font-size: 1.05rem;
    max-width: 70%;
}

/* Inline Style */
.inline-style-05f6a00f {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* Inline Style */
.inline-style-3dc4627d {
    object-fit: cover;
}

/* Inline Style */
.inline-style-fbe98b0a {
    max-width: 400px;
}

/* Inline Style */
.inline-style-4840e3b9 {
    max-width: 650px;
    font-size: 0.95rem;
}

/* Inline Style */
.inline-style-1b6aa013 {
    height: 2px;
    background: #DDE2E5;
    top: 40px;
}

/* Inline Style */
.inline-style-0b50e5cf {
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
}

/* Inline Style */
.inline-style-7968724c {
    width: 260px;
    scroll-snap-align: center;
}

/* Inline Style */
.inline-style-e54506cd {
    width: 72px;
    height: 72px;
    border: 3px solid #1469EB;
    box-shadow: 0 4px 15px rgba(20, 105, 235, 0.15) !important;
}

/* Inline Style */
.inline-style-8117167b {
    font-size: 1.6rem;
}

/* Inline Style */
.inline-style-8bca1b91 {
    width: 20px;
    height: 20px;
    transform: translateX(-50%) !important;
    border: 1px solid #DDE2E5;
}

/* Inline Style */
.inline-style-060226b2 {
    font-size: 0.5rem;
}

/* Inline Style */
.inline-style-64d9cea0 {
    border: 1px solid #E6E8EA;
}

/* Inline Style */
.inline-style-4c8a7df5 {
    width: 44px;
    height: 44px;
}

/* Inline Style */
.inline-style-e7992da2 {
    font-size: 0.85rem;
}

/* Inline Style */
.inline-style-1926a5f1 {
    background-color: #1469EB;
    border-color: #1469EB;
}

/* Inline Style */
.inline-style-f5959ab4 {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #f8f9fa;
}

/* Inline Style */
.inline-style-7d701bf7 {
    max-width: 800px;
}

/* Inline Style */
.inline-style-73975e43 {
    width: 48px;
    height: 48px;
    background-color: rgba(220, 53, 69, 0.1);
}

/* Inline Style */
.inline-style-0e571a96 {
    background-color: #0C3F8D;
}

/* Inline Style */
.inline-style-32d1c0d6 {
    max-width: 420px;
    width: 100%;
}

/* Inline Style */
.inline-style-a0a6c0d8 {
    width: 54px;
    height: 54px;
}

/* Inline Style */
.inline-style-9df292ef {
    height: 40px;
    width: 1px;
}

/* Inline Style */
.inline-style-0eeecf53 {
    display: none !important;
}

/* Inline Style */
.inline-style-715ac183 {
    bottom: -20%;
    left: -10%;
}

/* Inline Style */
.inline-style-198aa017 {
    width: 56px;
    height: 56px;
}

/* Inline Style */
.inline-style-3e36fd5e {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
}

/* Inline Style */
.inline-style-ef4432ce {
    max-width: 320px;
}

/* Inline Style */
.inline-style-a5619f55 {
    min-height: 320px;
}

/* Inline Style */
.inline-style-aa969e7f {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Inline Style */
.inline-style-6d5a4177 {
    width: 32px;
    height: 32px;
    min-width: 32px;
}

/* Inline Style */
.inline-style-45b4d846 {
    min-height: 400px;
}

/* Inline Style */
.inline-style-b6a9bc58 {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Inline Style */
.inline-style-d308b7db {
    z-index: 0;
    margin-top: -100px;
}

/* Inline Style */
.inline-style-e5b971f3 {
    line-height: 1.9;
}

/* Inline Style */
.inline-style-6d179b35 {
    width: 12px;
    height: 12px;
}

/* Inline Style */
.inline-style-7cf108db {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inline Style */
.inline-style-934b5c95 {
    width: 60px;
    height: 4px;
    opacity: 0.8;
}

/* Inline Style */
.inline-style-f95f3891 {
    line-height: 2.2;
    font-size: 1.05rem;
    max-width: 900px;
}

/* Inline Style */
.inline-style-13ce310f {
    width: 60px;
    height: 60px;
}

/* Inline Style */
.inline-style-35bb8144 {
    line-height: 2;
}

/* Inline Style */
.inline-style-d19b1670 {
    height: 250px;
}

/* Inline Style */
.inline-style-ce7ff716 {
    min-width: 60px;
}

/* Inline Style */
.inline-style-6ec2d9cf {
    min-width: 0;
}

/* Inline Style */
.inline-style-54a53601 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Inline Style */
.inline-style-8a8a8b6a {
    min-width: 140px;
}

/* Inline Style */
.inline-style-c664f841 {
    max-width: 700px;
}

/* Inline Style */
.inline-style-bbc66993 {
    max-width: 150px;
    color: #495057;
}

/* Inline Style */
.inline-style-41290b5b {
    max-width: 900px;
    height: 220px;
}

/* Inline Style */
.inline-style-3a51f73a {
    height: 6px;
    background: #f1f3f5;
    position: relative;
    top: 40px;
    width: 100%;
    border-radius: 10px;
}

/* Inline Style */
.inline-style-4ee84e5b {
    height: 100%;
    background: #eb1d36;
    width: 0%;
    position: absolute;
    left: 0;
    transition: width 0.1s;
    border-radius: 10px;
}

/* Inline Style */
.inline-style-0a417690 {
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Inline Style */
.inline-style-21a449ca {
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Inline Style */
.inline-style-d446b5da {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

/* Inline Style */
.inline-style-1a1c7a9e {
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 170px;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

/* Inline Style */
.inline-style-0fd8321d {
    margin-top: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #dc3545;
}

/* Inline Style */
.inline-style-697e4d20 {
    left: 33%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Inline Style */
.inline-style-56114245 {
    left: 66%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Inline Style */
.inline-style-5c6d5665 {
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Inline Style */
.inline-style-a5e31115 {
    width: 32px;
    height: 32px;
    background: white;
    border: 5px solid #dc3545;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    z-index: 20;
    transition: box-shadow 0.2s;
}

/* Inline Style */
.inline-style-e3c98a04 {
    font-size: 1.05rem;
}

/* Inline Style */
.inline-style-6a78e297 {
    color: #1469EB;
}

/* Inline Style */
.inline-style-90696fad {
    font-size: 1.05rem;
    border-radius: var(--radius-md, 20px);
}

/* Inline Style */
.inline-style-2e890ed1 {
    top: 2rem;
}

/* Inline Style */
.inline-style-ce8ee990 {
    --bs-focus-ring-color: rgba(20, 105, 235, 0.25);
    text-align: right;
}

/* Inline Style */
.inline-style-ab4b9f47 {
    height: 40%
}

/* Inline Style */
.inline-style-45e6f20b {
    height: 60%
}

/* Inline Style */
.inline-style-24f2ddb4 {
    height: 90%
}

/* Inline Style */
.inline-style-2e6a629a {
    height: 50%
}

/* Inline Style */
.inline-style-29cd2970 {
    height: 70%
}

/* Inline Style */
.inline-style-8315e31b {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

/* Inline Style */
.inline-style-921635f9 {
    min-height: 400px;
    max-width: 450px;
}

/* Inline Style */
.inline-style-fbd181a3 {
    width: 250px;
    height: 250px;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.15;
}

/* Inline Style */
.inline-style-f63b3c57 {
    aspect-ratio: 1/1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 320px;
}

/* Inline Style */
.inline-style-29e82dad {
    width: 8px;
    height: 8px;
}

/* Inline Style */
.inline-style-21889776 {
    height: 40%;
    width: 12%;
    display: inline-block;
}

/* Inline Style */
.inline-style-fe205ca7 {
    height: 70%;
    width: 12%;
    display: inline-block;
    margin: 0 4%;
}

/* Inline Style */
.inline-style-1a6df6c9 {
    height: 90%;
    width: 12%;
    display: inline-block;
}

/* Inline Style */
.inline-style-cbfb95f4 {
    height: 50%;
    width: 12%;
    display: inline-block;
    margin: 0 4%;
}

/* Inline Style */
.inline-style-0e5fca65 {
    height: 80%;
    width: 12%;
    display: inline-block;
}

/* Inline Style */
.inline-style-4a5876fb {
    top: 15%;
    right: -5%;
    min-width: 100px;
}

/* Inline Style */
.inline-style-a7e1d7b6 {
    direction: ltr;
}

/* Inline Style */
.inline-style-41eecef0 {
    bottom: 15%;
    left: -5%;
}

/* Inline Style */
.inline-style-53eb636c {
    font-size: 32px;
    line-height: 1;
}

/* Inline Style */
.inline-style-d8269867 {
    height: 8px;
}

/* Inline Style */
.inline-style-beb29a59 {
    bottom: 15%;
    right: -5%;
}

/* Inline Style */
.inline-style-13cd79ea {
    width: 10px;
    height: 10px;
    animation: pulse 2s infinite;
}

/* Inline Style */
.inline-style-7d026552 {
    width: 24px;
    height: 2px;
    display: inline-block;
}

/* Inline Style */
.inline-style-267f6d50 {
    font-size: 14px;
}

/* Inline Style */
.inline-style-bf8f61d9 {
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Inline Style */
.inline-style-0d300275 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

/* Inline Style */
.inline-style-e24316d8 {
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Inline Style */
.inline-style-337b9b8e {
    width: 135px;
    height: 90px;
}

/* Inline Style */
.inline-style-1c7444d8 {
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Inline Style */
.inline-style-345895de {
    font-size: 12px;
}

/* Inline Style */
.inline-style-45917b94 {
    top: 10%;
    left: 0;
    background: #1469EB;
}

/* Inline Style */
.inline-style-e1d7c2ab {
    height: 1.6em;
}

/* Inline Style */
.inline-style-6348d65c {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

/* Inline Style */
.inline-style-3b8bffd8 {
    max-width: 320px;
    transform: rotate(-2deg);
}

#RegisterModern .register-modern-media-frame {
    max-width: 440px;
    margin-inline: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.2);
}

#RegisterModern .register-modern-media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 300px;
    object-fit: cover;
    background: #f2f4f7;
}

#RegisterModern .register-modern-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #eb1d36;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#RegisterModern .register-modern-play-btn i {
    font-size: 2.2rem;
    line-height: 1;
    margin-right: -2px;
}

#RegisterModern .register-modern-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

#RegisterModern .register-modern-media-frame.is-playing .register-modern-play-btn {
    opacity: 0;
    pointer-events: none;
}

#RegisterModern .register-modern-media-fallback {
    min-height: 260px;
    padding: 1rem;
}

@media (max-width: 991.98px) {
    #RegisterModern .register-modern-media-frame {
        max-width: 380px;
    }

    #RegisterModern .register-modern-media {
        aspect-ratio: 4 / 3;
        min-height: 260px;
    }
}

@media (max-width: 575.98px) {
    #RegisterModern .register-modern-media-frame {
        max-width: 100%;
        border-radius: 18px;
    }

    #RegisterModern .register-modern-play-btn {
        width: 64px;
        height: 64px;
    }

    #RegisterModern .register-modern-play-btn i {
        font-size: 1.9rem;
    }

    #RegisterModern .register-modern-media-fallback {
        min-height: 200px;
    }

    #RegisterModern .register-modern-media {
        min-height: 220px;
    }
}

/* Inline Style */
.inline-style-40430a3c {
    width: 70px;
}

/* Inline Style */
.inline-style-1a15f7a6 {
    top: -200px;
    left: -200px;
    background: #1469EB;
}

/* Inline Style */
.inline-style-7f47a0e7 {
    height: 18px;
}

/* Inline Style */
.inline-style-fec492af {
    min-height: 50px;
}

/* Inline Style */
.inline-style-5afc7337 {
    font-size: 3rem;
}

/* Inline Style */
.inline-style-6ec70819 {
    font-size: 11px;
}

/* Inline Style */
.inline-style-3cf21fe6 {
    line-height: 1;
    padding-top: 2px;
}

/* Inline Style (Pass 2) */
.inline-style-d055af19 {
    max-height: 90px;
    object-fit: contain;
}

/* Inline Style (Pass 2) */
.inline-style-abb93e68 {
    max-height: 160px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Inline Style (Pass 2) */
.inline-style-3e0512b1 {
    border: none;
}

/* Inline Style (Pass 2) */
.inline-style-89854a63 {
    width: 45px;
    height: 45px;
    opacity: 0.8;
}

/* Inline Style (Pass 2) */
.inline-style-790d50e3 {
    max-height: 400px;
}

/* Inline Style (Pass 2) */
.inline-style-900677a1 {
    width: 34px;
    height: 34px;
    border-color: #DDE2E5;
}

/* Inline Style (Pass 2) */
.inline-style-4a50d931 {
    min-height: 450px;
}

/* Inline Style (Pass 2) */
.inline-style-ce586bb5 {
    max-width: 90%;
}

/* Inline Style (Pass 2) */
.inline-style-13859468 {
    min-height: 300px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* Inline Style (Pass 2) */
.inline-style-c0a23b03 {
    transition: transform 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

/* Inline Style (Pass 2) */
.inline-style-f1d02c8b {
    min-width: 80px;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

/* Section Patterns */
.section-bg-blob {
    position: relative;
    overflow: hidden;
}

.section-bg-blob::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(235, 29, 54, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    border-radius: 50%;
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1A1A1A;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.8;
}

.minimal-phone-frame {
    width: 280px;
    height: 560px;
    background: #1A1A1A;
    border-radius: 45px;
    padding: 10px;
    border: 4px solid #333;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.phone-display {
    width: 100%;
    height: 100%;
    background: #FDFDFD;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    padding: 24px;
}

.app-logo-mini {
    color: #EB1D36;
    font-weight: 800;
    font-size: 0.9rem;
}

.app-user-icon {
    width: 28px;
    height: 28px;
    background: #f2f2f7;
    border-radius: 50%;
    border: 1px solid #e5e5ea;
}

.app-main-card {
    background: #EB1D36;
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(235, 29, 54, 0.2);
}

.card-label {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.card-value {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 45px;
}

.c-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
}

.c-bar.active {
    background: white;
}

/* iOS Message Notifications - Exact iPhone Style */
.ios-messages-container {
    position: relative;
    width: 100%;
    min-height: 70px;
    padding: 12px 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ios-message-bubble {
    position: absolute;
    top: 12px;
    right: 10px;
    background-color: #e5e5ea;
    color: #000000;
    padding: 8px 12px;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    font-size: 11px;
    line-height: 1.35;
    max-width: 85%;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.ios-message-bubble.active {
    opacity: 1;
    transform: translateY(0);
}

.trust-stats {
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.icon-box-sm {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.visual-blob-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
    border-radius: 50%;
}

.glass-main-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    width: 320px;
    z-index: 2;
    position: relative;
}

.mockup-chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 150px;
}

.chart-bar {
    flex: 1;
    background: #FFDEE2;
    border-radius: 5px;
}

.chart-bar.active {
    background: #EB1D36;
}

.stat-1 {
    top: 10%;
    right: 10%;
}

.stat-2 {
    bottom: 10%;
    left: 10%;
}

.icon-box-md {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.skeleton-line {
    height: 8px;
    background: #FDFDFD;
    border: 1px solid #FFF0F1;
    border-radius: 4px;
}

.dev-visual-card {
    background: #1A1A1A;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(235, 29, 54, 0.15);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dot-red {
    width: 12px;
    height: 12px;
    background: #FF5F56;
    border-radius: 50%;
}

.dot-yellow {
    width: 12px;
    height: 12px;
    background: #FFBD2E;
    border-radius: 50%;
}

.dot-green {
    width: 12px;
    height: 12px;
    background: #27C93F;
    border-radius: 50%;
}

.terminal-title {
    color: #8F8FA3;
    font-size: 0.8rem;
    font-family: monospace;
}

.code-block {
    font-family: "Fira Code", monospace;
    font-size: 0.9rem;
}

.code-key {
    color: #EB1D36;
}

.code-func {
    color: #FF8C94;
}

.code-str {
    color: #C3E88D;
}

.code-class {
    color: #FFCB6B;
}

.code-comment {
    color: #676E95;
}

.icon-circle-sm {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-arrow-inline {
    margin-right: auto;
    color: #EB1D36;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.card-arrow {
    width: 40px;
    height: 40px;
    background: #FFF5F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EB1D36;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(10px);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #EB1D36;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pkg-icon {
    font-size: 2.5rem;
    color: #EB1D36;
}

.stats-compact-section {
    padding: 40px 0;
    color: white;
}

.stat-compact-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-compact-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.stat-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.stat-info h3 {
    font-size: 2.2rem;
    color: white;
    line-height: 1;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 2rem;
    color: #FFDEE2;
    line-height: 1;
    margin-bottom: 0px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A4A4A;
    font-style: italic;
}

.testimonial-avatar img,
.avatar-placeholder {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.avatar-placeholder {
    background: #EB1D36;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 50%;
}

.advantage-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #FFF0F1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px !important;
}

.advantage-icon-wrapper {
    width: 44px;
    height: 44px;
    background: #FFF5F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #EB1D36;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.advantage-card:hover .advantage-icon-wrapper {
    background: #EB1D36;
    color: #FFFFFF;
    transform: rotate(10deg);
}

.advantage-card:hover .advantage-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.line-decor {
    width: 30px;
    height: 4px;
    background: #FFDEE2;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.partner-logo img {
    max-height: 35px;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

.modern-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(235, 29, 54, 0.08);
    border-color: #FFDEE2;
}

.read-more-link {
    color: #EB1D36;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(-5px);
}

.accordion-item-modern {
    background: #FFFBFC;
    border-radius: 20px;
    border: 1px solid #FFF0F1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item-modern:has(.accordion-trigger.active),
.accordion-item-modern:has(.accordion-trigger[aria-expanded=true]) {
    background: #FFFFFF;
    border-color: #EB1D36;
    box-shadow: 0 10px 30px rgba(235, 29, 54, 0.05);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

.accordion-trigger[aria-expanded=true] i {
    transform: rotate(45deg);
    color: #EB1D36;
}

.accordion-body-modern {
    padding: 0 30px 24px 30px;
}

.glass-seo-card {
    background: #FFFFFF;
    border-radius: 40px;
    border: 1px solid #FFF0F1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.seo-content {
    font-size: 0.95rem;
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-content.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, #FFFFFF);
}

.seo-content.expanded {
    max-height: 2000px;
}

.test-tool-card {
    background: linear-gradient(135deg, #FFFBFC 0%, #FFFFFF 100%);
    border-radius: 40px;
    border: 1px solid #FFF0F1;
    position: relative;
    overflow: hidden;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #FFF0F1;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(235, 29, 54, 0.05);
}

.input-group-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-modern i {
    position: absolute;
    right: 20px;
    color: #EB1D36;
    font-size: 1.2rem;
}

.form-control-modern {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: #FDFDFD;
    border: 2px solid #FFF0F1;
    border-radius: 16px;
    font-size: 0.95rem;
    color: #1A1A1A;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    background: #FFFFFF;
    border-color: #EB1D36;
    outline: none;
    box-shadow: 0 0 0 4px rgba(235, 29, 54, 0.1);
}

.captcha-img {
    height: 52px;
    flex-grow: 1;
    cursor: pointer;
    background: #FFF5F6;
}

.cta-wrapper {
    background: #EB1D36;
    border-radius: 50px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.cta-decor-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.main-phone-mockup.tilted {
    transform: rotate(-15deg) translateY(20px);
    width: 240px;
    height: 500px;
    padding-top: 100px;
}

.icon-circle-xs {
    width: 40px;
    height: 40px;
    background: #FFF5F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

button[aria-expanded="true"] .toggle-arrow {
    transform: rotate(180deg);
}

/* Contact Page Specific Utilities */
.ltr-font {
    direction: ltr;
    font-family: sans-serif;
}