/*
Theme Name: WP Support Pro
Theme URI: https://example.com/wp-support-pro
Author: Grok Theme Builder
Author URI: https://x.ai
Description: پوسته حرفه‌ای برای سایت خدمات پشتیبانی وردپرس. شامل بخش خدمات، تعرفه‌ها، سیستم تیکتینگ، پنل مدیریت کامل و طراحی مدرن و ریسپانسیو.
Version: 1.9.6
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-support-pro
Tags: custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, blog, e-commerce, portfolio
*/

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
  /* پالت سه‌رنگ: آبی اصلی | سرمه‌ای | آبی روشن */
  --primary: #1B4FCE;
  --primary-dark: #153DAD;
  --primary-light: #3B6FE8;
  --secondary: #0B1F3A;
  --accent: #38BDF8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gray-50: #f5f8fc;
  --gray-100: #eef3f9;
  --gray-200: #dce6f2;
  --gray-300: #c5d2e3;
  --gray-400: #8fa3bc;
  --gray-500: #647892;
  --gray-600: #4a5d78;
  --gray-700: #334155;
  --gray-800: #1e2d42;
  --gray-900: #0B1F3A;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 6px -1px rgb(11 31 58 / 0.08), 0 2px 4px -2px rgb(11 31 58 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(11 31 58 / 0.1), 0 4px 6px -4px rgb(11 31 58 / 0.06);
  --shadow-xl: 0 20px 25px -5px rgb(11 31 58 / 0.12), 0 8px 10px -6px rgb(11 31 58 / 0.08);
  --font-sans: 'Vazirmatn', 'Tahoma', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 55%, var(--accent) 100%);
  --gradient-hero: linear-gradient(155deg, var(--hero-start, var(--secondary)) 0%, var(--hero-mid, #122a4d) 42%, var(--hero-end, var(--primary-dark)) 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 50%;
  transform: translateX(50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-title p {
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.site-logo img {
  height: 42px;
  width: auto;
}

.site-logo span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-700);
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-item .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card .btn-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .btn-link:hover {
  gap: 0.6rem;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-100);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-period {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.pricing-features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--success);
  margin-top: 2px;
}

.pricing-features li.disabled {
  color: var(--gray-400);
}

.pricing-features li.disabled svg {
  color: var(--gray-300);
}

.pricing-card .btn {
  width: 100%;
}

/* ==========================================================================
   Ticketing / Support Form
   ========================================================================== */
.ticket-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}

.ticket-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.ticket-info h2 {
  margin-bottom: 1rem;
}

.ticket-info p {
  margin-bottom: 1.5rem;
}

.ticket-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.ticket-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.ticket-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: var(--transition);
  color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ==========================================================================
   Why Us / Features
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.feature-item h3 {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  position: relative;
  padding-right: 1.5rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  right: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-author .role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.cta-section .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}

.cta-section .btn:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-widget h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-widget ul li {
  margin-bottom: 0.6rem;
}

.footer-widget a {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-widget a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ==========================================================================
   Page Templates
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  font-size: 2.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.content-area {
  padding: 3rem 0;
}

/* ==========================================================================
   Ticket Dashboard (User Area)
   ========================================================================== */
.ticket-dashboard {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ticket-dashboard-header {
  background: var(--gray-900);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-list {
  width: 100%;
  border-collapse: collapse;
}

.ticket-list th,
.ticket-list td {
  padding: 1rem 1.25rem;
  text-align: right;
  border-bottom: 1px solid var(--gray-100);
}

.ticket-list th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.ticket-list tr:hover td {
  background: var(--gray-50);
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-open {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.status-closed {
  background: rgba(100, 116, 139, 0.15);
  color: var(--gray-500);
}

.status-answered {
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary);
}

/* ==========================================================================
   Admin Styles (for custom admin pages)
   ========================================================================== */
.wsp-admin-wrap {
  margin: 20px 20px 0 0;
  direction: rtl;
}

.wsp-admin-header {
  background: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wsp-admin-header h1 {
  margin: 0;
  font-size: 1.5rem;
}

.wsp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.wsp-stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  text-align: center;
}

.wsp-stat-card .number {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
}

.wsp-stat-card .label {
  color: #64748b;
  font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .ticket-wrapper {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-actions .btn {
    display: none;
  }
  
  .hero {
    padding: 4rem 0 3.5rem;
  }
  
  .hero h1 {
    font-size: 1.85rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-lg {
    width: 100%;
  }
}

/* ==========================================================================
   Performance helpers
   ========================================================================== */
.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}
.hero {
  content-visibility: visible; /* above the fold */
}
img {
  content-visibility: auto;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.wsp-kb-suggest {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.wsp-kb-suggest ul { margin: 0.5rem 0; padding-right: 1.1rem; list-style: disc; }
.wsp-kb-suggest li { margin-bottom: 0.35rem; }

/* ==========================================================================
   Extra responsive + Elementor-friendly
   ========================================================================== */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

.pricing-grid,
.services-grid {
  width: 100%;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .ticket-form,
  .form-row {
    grid-template-columns: 1fr !important;
  }
  .site-header .main-nav {
    width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  table.ticket-list {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
  .service-card,
  .pricing-card {
    padding: 1.25rem;
  }
  .wsp-wa-float {
    bottom: 12px;
    left: 12px;
  }
}

/* Elementor canvas: no double padding from theme */
body.wsp-elementor-canvas .site-header,
body.elementor-template-canvas .site-header {
  display: none;
}

/* ==========================================================================
   Emergency homepage + Landing services
   ========================================================================== */
.hero-emergency {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, var(--hero-glow-1, rgba(27, 79, 206, 0.4)), transparent 55%),
    radial-gradient(900px 500px at 10% 110%, var(--hero-glow-2, rgba(56, 189, 248, 0.28)), transparent 50%),
    linear-gradient(160deg, var(--hero-start, var(--secondary)) 0%, var(--hero-mid, #122a4d) 45%, var(--hero-end, var(--primary-dark)) 100%);
  padding: 5.5rem 0 4.5rem;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content-modern { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.25rem; }
.hero-badge { display: inline-flex; align-items: center; padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.badge-pulse {
  background: color-mix(in srgb, var(--primary) 25%, transparent);
  color: #dbeafe;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  animation: wsp-pulse 2s ease-in-out infinite;
}
.badge-soft {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.12);
}
@keyframes wsp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary) 45%, transparent); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.hero-title-xl {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.text-gradient {
  display: block;
  background: linear-gradient(90deg, #f87171, #fb923c, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}
.hero-cta-row { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }
.btn-emergency {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}
.btn-emergency:hover { filter: brightness(1.08); color: #fff !important; }
.btn-glass {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  backdrop-filter: blur(8px);
}
.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
}
.hero-trust-row {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.9rem;
}
.hero-stats-modern {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-modern .stat-item { text-align: center; }
.hero-stats-modern .number { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-stats-modern .label { font-size: 0.8rem; color: #94a3b8; }

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.crisis-card {
  display: block;
  padding: 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.crisis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: #fca5a5;
}
.crisis-icon { font-size: 1.75rem; }
.crisis-card h3 { margin: 0.6rem 0 0.35rem; font-size: 1.05rem; }
.crisis-card p { margin: 0; color: #64748b; font-size: 0.9rem; line-height: 1.6; }
.crisis-cta { display: inline-block; margin-top: 0.75rem; color: #dc2626; font-weight: 600; font-size: 0.9rem; }

.steps-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-m {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.step-num {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-cta-band {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  padding: 2.5rem 0;
}
.teaser-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.teaser-band h2 { color: #fff; margin: 0 0 0.35rem; font-size: 1.35rem; }
.teaser-band p { margin: 0; opacity: 0.9; }

.ticket-form-sos {
  border: 2px solid #fecaca;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}
.sos-phone { text-align: center; margin-top: 1.25rem; font-weight: 600; }
.section-muted { background: #f8fafc; }
.section-dark-soft { background: #f1f5f9; }

.landing-hero {
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  padding: 4rem 1.25rem 3.5rem;
}
.landing-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.75rem; }
.landing-hero p { color: #cbd5e1; max-width: 640px; margin: 0 auto; line-height: 1.8; }
.plan-quota { font-size: 0.85rem; color: #64748b; margin: 0.5rem 0; }

@media (max-width: 992px) {
  .crisis-grid, .steps-modern, .hero-stats-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .crisis-grid, .steps-modern, .hero-stats-modern {
    grid-template-columns: 1fr;
  }
  .hero-emergency { padding: 3.5rem 0 3rem; }
  .teaser-band { flex-direction: column; text-align: center; }
}

/* Tabs */
.wsp-tabs { margin-top: 0.5rem; }
.wsp-tab-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 0.35rem;
  background: #f1f5f9;
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wsp-tab-btn {
  border: 0;
  background: transparent;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: #64748b;
  font-family: inherit;
}
.wsp-tab-btn.is-active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(15,23,42,.08);
}
.wsp-tab-panel { display: none !important; }
.wsp-tab-panel.is-active { display: block !important; animation: wsp-fade-in .35s ease; }
.wsp-tab-panel[hidden] { display: none !important; }
.wsp-tab-panel.is-active:not([hidden]) { display: block !important; }
.tab-more { text-align: center; margin-top: 1.5rem; }
@keyframes wsp-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Lightweight animations */
.wsp-anim-hero .hero-glow {
  animation: wsp-glow-shift 12s ease-in-out infinite alternate;
}
@keyframes wsp-glow-shift {
  from { opacity: 0.85; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}
.wsp-anim-fade-up {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.wsp-anim-fade-up.is-inview {
  opacity: 1;
  transform: none;
}
.wsp-anim-card, .crisis-card, .step-m {
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .45s ease, box-shadow .2s;
}
/* Only hide before inview when JS opt-in is present */
html.wsp-anim-on .wsp-anim-card:not(.is-inview),
html.wsp-anim-on .crisis-card:not(.is-inview),
html.wsp-anim-on .step-m:not(.is-inview),
html.wsp-anim-on .wsp-anim-fade-up:not(.is-inview) {
  opacity: 0;
  transform: translateY(16px);
}
.wsp-anim-card.is-inview, .crisis-card.is-inview, .step-m.is-inview {
  opacity: 1;
  transform: none;
}
.pricing-grid .wsp-anim-card:nth-child(2) { transition-delay: .06s; }
.pricing-grid .wsp-anim-card:nth-child(3) { transition-delay: .12s; }
.digital-grid .wsp-anim-card:nth-child(2) { transition-delay: .05s; }
.digital-grid .wsp-anim-card:nth-child(3) { transition-delay: .1s; }

.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.digital-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem;
  overflow: hidden;
}
.digital-thumb {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.digital-thumb img { width: 100%; height: 100%; object-fit: cover; }
.digital-thumb-placeholder { font-size: 2.5rem; }
.digital-badge {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-weight: 600;
}
.digital-card h3 { font-size: 1.05rem; margin: 0 0 0.35rem; }
.digital-card p { color: #64748b; font-size: 0.9rem; margin: 0 0 0.75rem; }
.digital-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.digital-meta .price { font-weight: 700; color: #2563eb; }
.digital-actions { display: flex; gap: 0.35rem; }

@media (max-width: 900px) {
  .digital-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .digital-grid { grid-template-columns: 1fr; }
  .wsp-tab-nav { width: 100%; border-radius: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .wsp-anim-hero .hero-glow { animation: none; }
  .wsp-anim-fade-up, .wsp-anim-card, .crisis-card, .step-m {
    opacity: 1; transform: none; transition: none;
  }
}

/* ===== Hero enter animation (always visible after load) ===== */
.wsp-hero-enter .hero-badges,
.wsp-hero-enter .hero-title-xl,
.wsp-hero-enter .hero-lead,
.wsp-hero-enter .hero-cta-row,
.wsp-hero-enter .hero-trust-row,
.wsp-hero-enter .hero-stats-modern {
  opacity: 0;
  transform: translateY(22px);
  animation: wsp-hero-rise 0.7s ease forwards;
}
.wsp-hero-enter .hero-badges { animation-delay: 0.05s; }
.wsp-hero-enter .hero-title-xl { animation-delay: 0.15s; }
.wsp-hero-enter .hero-lead { animation-delay: 0.28s; }
.wsp-hero-enter .hero-cta-row { animation-delay: 0.4s; }
.wsp-hero-enter .hero-trust-row { animation-delay: 0.52s; }
.wsp-hero-enter .hero-stats-modern { animation-delay: 0.64s; }

@keyframes wsp-hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-emergency::before,
.hero-emergency::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: wsp-orb 9s ease-in-out infinite alternate;
}
.hero-emergency::before {
  width: 280px; height: 280px;
  background: color-mix(in srgb, var(--primary) 40%, transparent);
  top: -60px; right: 10%;
}
.hero-emergency::after {
  width: 320px; height: 320px;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  bottom: -80px; left: 5%;
  animation-delay: -3s;
}
@keyframes wsp-orb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.12); }
}
.text-gradient {
  background-size: 200% auto;
  animation: wsp-shine 4s linear infinite;
}
@keyframes wsp-shine {
  to { background-position: 200% center; }
}
.badge-pulse {
  animation: wsp-pulse 1.8s ease-in-out infinite;
}

/* Tabs clearer */
#wsp-pricing-tabs .wsp-tab-nav {
  border: 1px solid #e2e8f0;
  background: #e2e8f0;
  padding: 0.4rem;
}
#wsp-pricing-tabs .wsp-tab-btn {
  min-width: 140px;
  transition: background .2s, color .2s, box-shadow .2s;
}
#wsp-pricing-tabs .wsp-tab-btn:hover {
  color: #0f172a;
}
#wsp-pricing-tabs .wsp-tab-panel[hidden] {
  display: none !important;
}
#wsp-pricing-tabs .wsp-tab-panel.is-active {
  display: block !important;
}

/* Affiliate */
.section-affiliate { padding-top: 2rem; }
.affiliate-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark) 55%, var(--primary));
  color: #fff;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.affiliate-box.is-inview { opacity: 1; transform: none; }
.affiliate-box h2 { color: #fff; margin: 0 0 0.75rem; font-size: 1.45rem; }
.affiliate-box p { color: #cbd5e1; line-height: 1.8; margin: 0 0 1rem; }
.affiliate-perks { margin: 0; padding-right: 1.1rem; color: #e2e8f0; line-height: 1.9; }
.affiliate-side { display: grid; gap: 0.75rem; }
.affiliate-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  text-align: center;
}
.affiliate-stat strong { display: block; font-size: 1.35rem; margin-bottom: 0.25rem; }
.affiliate-stat span { font-size: 0.85rem; color: #cbd5e1; }

@media (max-width: 768px) {
  .affiliate-box { grid-template-columns: 1fr; padding: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wsp-hero-enter .hero-badges,
  .wsp-hero-enter .hero-title-xl,
  .wsp-hero-enter .hero-lead,
  .wsp-hero-enter .hero-cta-row,
  .wsp-hero-enter .hero-trust-row,
  .wsp-hero-enter .hero-stats-modern {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-emergency::before,
  .hero-emergency::after,
  .text-gradient,
  .badge-pulse { animation: none !important; }
}

/* Visual scene — animated illustration, NOT a slider */
.section-visual-scene {
  background: var(--secondary);
  color: #fff;
  overflow: hidden;
}
.visual-scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.visual-scene-copy h2 { color: #fff; margin-bottom: 0.75rem; }
.visual-scene-copy p { color: #94a3b8; line-height: 1.85; margin-bottom: 1.25rem; }

.vs-stage {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-monitor {
  width: 220px;
  height: 150px;
  border-radius: 14px;
  background: #1e293b;
  border: 3px solid #334155;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  position: relative;
  z-index: 2;
  animation: vs-bob 4s ease-in-out infinite;
}
.vs-monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 40px;
  height: 18px;
  background: #334155;
  transform: translateX(-50%);
  border-radius: 0 0 6px 6px;
}
.vs-screen {
  margin: 12px;
  height: calc(100% - 24px);
  border-radius: 8px;
  background: #020617;
  position: relative;
  overflow: hidden;
}
.vs-line {
  height: 6px;
  border-radius: 4px;
  background: #334155;
  margin: 14px 12px 0;
  transform-origin: right center;
}
.vs-line-1 { width: 70%; animation: vs-scan 2.2s ease-in-out infinite; }
.vs-line-2 { width: 55%; animation: vs-scan 2.2s ease-in-out infinite .2s; }
.vs-line-3 { width: 80%; animation: vs-scan 2.2s ease-in-out infinite .4s; }
.vs-alert, .vs-ok {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.vs-alert {
  background: rgba(239,68,68,.2);
  color: #fca5a5;
  animation: vs-swap 6s ease-in-out infinite;
}
.vs-ok {
  background: rgba(16,185,129,.2);
  color: #6ee7b7;
  opacity: 0;
  animation: vs-swap-ok 6s ease-in-out infinite;
}
@keyframes vs-swap {
  0%, 40% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes vs-swap-ok {
  0%, 45% { opacity: 0; }
  55%, 90% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes vs-scan {
  0%, 100% { transform: scaleX(1); opacity: .7; }
  50% { transform: scaleX(0.85); opacity: 1; }
}
@keyframes vs-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.vs-orbit {
  position: absolute;
  border: 1px dashed rgba(148,163,184,.35);
  border-radius: 50%;
  animation: vs-spin 14s linear infinite;
}
.vs-orbit-1 { width: 260px; height: 260px; }
.vs-orbit-2 { width: 320px; height: 320px; animation-duration: 22s; animation-direction: reverse; opacity: .6; }
@keyframes vs-spin { to { transform: rotate(360deg); } }
.vs-float {
  position: absolute;
  font-size: 1.5rem;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.35));
  animation: vs-float 3.5s ease-in-out infinite;
}
.vs-float-a { top: 18%; right: 18%; animation-delay: 0s; }
.vs-float-b { bottom: 22%; left: 16%; animation-delay: .6s; }
.vs-float-c { top: 28%; left: 22%; animation-delay: 1.1s; }
@keyframes vs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.vs-pulse-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(239, 68, 68, 0.35);
  animation: vs-ring 2.8s ease-out infinite;
  z-index: 1;
}
@keyframes vs-ring {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 800px) {
  .visual-scene-grid { grid-template-columns: 1fr; text-align: center; }
  .vs-stage { height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  .vs-monitor, .vs-line, .vs-alert, .vs-ok, .vs-orbit, .vs-float, .vs-pulse-ring {
    animation: none !important;
  }
  .vs-ok { opacity: 1; }
  .vs-alert { opacity: 0; }
}


.shop-tab-desc {
  text-align: center;
  color: var(--gray-500);
  margin: 0 0 1.5rem;
}
#wsp-shop-tabs .wsp-tab-nav {
  margin-bottom: 1.5rem;
}


/* ===== Pricing cards: always readable text (fix white-on-white) ===== */
.pricing-card,
.pricing-card.featured,
.landing-hero ~ section .pricing-card,
.section .pricing-card {
  background: #ffffff !important;
  color: #1e293b !important;
}
.pricing-card h3,
.pricing-card .pricing-header h3,
.pricing-card .pricing-price,
.pricing-card .price {
  color: #0f172a !important;
}
.pricing-card .pricing-price span,
.pricing-card .pricing-period,
.pricing-card .period {
  color: #64748b !important;
}
.pricing-card .pricing-features li,
.pricing-card .features li,
.pricing-card li {
  color: #334155 !important;
}
.pricing-card .pricing-features li.disabled {
  color: #94a3b8 !important;
}
.pricing-card .feat-icon {
  color: #10b981;
  font-weight: 700;
  margin-left: 0.35rem;
}
.pricing-card .pricing-features li.disabled .feat-icon {
  color: #cbd5e1;
}
.single-article .entry-content {
  color: #334155;
  line-height: 1.85;
  font-size: 1.05rem;
}
.single-article .entry-content h2,
.single-article .entry-content h3 {
  color: #0f172a;
  margin-top: 1.75rem;
}
.single-article .entry-content pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  direction: ltr;
  text-align: left;
}
.single-article .entry-content a.btn,
.single-article .entry-content a[style*="background"] {
  color: #fff !important;
}


/* ===== Package store page ===== */
.pkg-hero {
  background: var(--gradient-hero, linear-gradient(155deg, var(--secondary) 0%, var(--primary-dark) 100%));
  color: #fff;
  text-align: center;
  padding: 4.5rem 0 3.5rem;
}
.pkg-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.pkg-hero p { color: #cbd5e1; max-width: 640px; margin: 0 auto; line-height: 1.8; }
.pkg-hero .btn-outline { border-color: rgba(255,255,255,.45); color: #fff; }
.pkg-hero .btn-outline:hover { background: #fff; color: var(--primary); }

.pkg-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pkg-benefit {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.pkg-benefit-icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.pkg-benefit h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.pkg-benefit p { margin: 0; font-size: 0.9rem; color: var(--gray-500); }

.pkg-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pkg-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 560px;
}
.pkg-compare-table th,
.pkg-compare-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.pkg-compare-table th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-900);
}
.pkg-compare-table th.is-featured,
.pkg-compare-table td:nth-child(3) {
  background: rgba(27, 79, 206, 0.06);
}
.pkg-compare-table td:first-child,
.pkg-compare-table th:first-child {
  text-align: right;
  font-weight: 600;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}
.faq-list summary { cursor: pointer; font-weight: 600; color: var(--gray-900); }
.faq-list details p { margin: 0.65rem 0 0; color: var(--gray-600); font-size: 0.95rem; }

@media (max-width: 900px) {
  .pkg-benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pkg-benefits-grid { grid-template-columns: 1fr; }
}

/* Team / About */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; font-size: 2rem; font-weight: 700; color: var(--primary);
}
.team-name { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-role { color: var(--primary); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.team-bio { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 0.85rem; line-height: 1.6; }
.team-links { display: flex; gap: 0.5rem; justify-content: center; }
.team-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-700); font-weight: 700; font-size: 0.85rem;
}
.team-link:hover { background: var(--primary); color: #fff; }
.team-link-li { font-family: Georgia, serif; font-style: italic; }
