.elementor-1549 .elementor-element.elementor-element-19873924{--display:flex;}/* Start custom CSS */.tkl-support-product {
    --primary: #1A2A44;
    --primary-light: #2A3C5C;
    --accent: #ECC05A;
    --accent-hover: #DAB04B;
    --bg-color: #F7F8FA;
    --card-bg: #FFFFFF;
    --text-main: #1F2937;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 0 30px rgba(236, 192, 90, 0.2);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tkl-support-product {
    font-family: 'Kalameh', Tahoma, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
p {
    color: var(--text-secondary);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 80px 0;
}
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 8px;
}
.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(236, 192, 90, 0.4);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 192, 90, 0.5);
}
.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white !important;
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    background-color: rgba(236, 192, 90, 0.15);
    color: var(--accent);
    margin-bottom: 1rem;
}
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1624 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 2.5rem;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.trust-bar {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 4rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}
.trust-item svg {
    color: var(--success);
    width: 20px;
    height: 20px;
}
.pricing-section {
    background-color: var(--bg-color);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}
.pricing-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.pricing-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.pricing-currency {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.pricing-meta {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
}
.pricing-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--success);
    margin-top: 2px;
}
.pricing-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}
.btn-card-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--border-color);
}
.btn-card-outline:hover {
    border-color: var(--primary);
    background-color: var(--bg-color);
}
.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-glow);
    z-index: 2;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 15px 35px rgba(236, 192, 90, 0.25);
}
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #DAB04B);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(236, 192, 90, 0.3);
}
.table-section {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.compare-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    text-align: center;
    background-color: var(--card-bg);
}
.compare-table th, .compare-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
}
.compare-table th {
    background-color: var(--bg-color);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
}
.compare-table th:first-child {
    text-align: right;
    width: 30%;
}
.compare-table td:first-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-main);
}
.compare-table tr:last-child td {
    border-bottom: none;
}
.compare-table tr:hover td {
    background-color: rgba(247, 248, 250, 0.5);
}
.table-icon-check { color: var(--success); width: 24px; height: 24px; }
.table-icon-cross { color: var(--border-color); width: 24px; height: 24px; }
.col-highlight {
    background-color: rgba(236, 192, 90, 0.05) !important;
    border-left: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}
.compare-table th.col-highlight {
    background-color: rgba(236, 192, 90, 0.1);
    border-top: 2px solid var(--accent);
}
.compare-table tr:last-child td.col-highlight {
    border-bottom: 2px solid var(--accent);
}
.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.target-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.target-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.target-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 42, 68, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary);
}
.target-icon svg { width: 28px; height: 28px; }
.target-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.target-card p { font-size: 0.875rem; margin: 0; }
.benefits-section { background-color: var(--card-bg); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}
.benefit-item {
    display: flex;
    gap: 1rem;
}
.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(236, 192, 90, 0.2), rgba(236, 192, 90, 0.05));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-content h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.benefit-content p { font-size: 0.95rem; }
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}
.workflow-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary) 50%, var(--border-color) 50%);
    background-size: 20px 2px;
    z-index: 0;
    opacity: 0.3;
}
.workflow-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.step-number {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 0 0 8px var(--bg-color);
    transition: var(--transition);
}
.workflow-step:hover .step-number {
    background: var(--primary);
    color: var(--card-bg);
    transform: scale(1.1);
}
.workflow-step h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.workflow-step p { font-size: 0.9rem; }
.lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.list-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.list-card-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.list-card-title.success-title { color: var(--primary); }
.list-card-title.warning-title { color: var(--primary); }
.list-items { list-style: none; }
.list-items li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
}
.list-items.included li svg { color: var(--success); width: 22px; height: 22px; }
.list-items.excluded li svg { color: var(--warning); width: 22px; height: 22px; }
.rules-box {
    background: linear-gradient(to left, rgba(26, 42, 68, 0.03), rgba(26, 42, 68, 0.08));
    border: 1px solid rgba(26, 42, 68, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.rules-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.rules-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.rules-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
.rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}
.rules-list li::before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
}
.faq-section { background: var(--card-bg); }
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--card-bg);
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary-light);
}
.faq-question {
    width: 100%;
    text-align: right;
    padding: 1.25rem 1.5rem;
    background: #fff !important;
    border: none;
    font-family: inherit;
    font-size: 1.125rem;
    color: var(--primary) !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--bg-color);
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    border-top: 1px solid transparent;
}
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
}
.faq-item.active .faq-answer-inner {
    border-top-color: var(--border-color);
    padding-top: 1.25rem;
}
.cta-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236,192,90,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}
.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; grid-column: span 2; max-width: 500px; margin: 0 auto; width: 100%; }
    .pricing-card.popular:hover { transform: translateY(-8px); }
    
    .target-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .lists-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
    
    .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pricing-card.popular { grid-column: span 1; max-width: 100%; }
    .popular-badge { top: -20px; font-size: 0.95rem; padding: 8px 20px; }
    
    .workflow-grid { grid-template-columns: 1fr; gap: 3rem; }
    .workflow-grid::before {
        top: 0; right: 30px; left: auto; width: 2px; height: 100%;
        background: linear-gradient(to bottom, var(--primary) 50%, var(--border-color) 50%);
        background-size: 2px 20px;
    }
    .workflow-step { display: flex; align-items: flex-start; gap: 1.5rem; text-align: right; }
    .step-number { margin: 0; flex-shrink: 0; width: 60px; height: 60px; font-size: 1.25rem; }
    
    .benefits-grid { grid-template-columns: 1fr; }
    .target-grid { grid-template-columns: 1fr; }
    
    .rules-box { flex-direction: column; text-align: center; align-items: center; padding: 2rem; }
    .rules-list li { text-align: right; justify-content: flex-start; }
    
    .hero-ctas { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn { width: 100%; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}/* End custom CSS */