/**
 * WhatsApp CRM Theme - Professional Styles
 * Modern design with advanced animations
 */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
    /* Colors */
    --primary: #25d366;
    --primary-dark: #128c7e;
    --primary-light: #dcf8c6;
    --secondary: #ff9f43;
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --orange: #f97316;
    --red: #ef4444;

    /* Neutrals */
    --dark: #0f172a;
    --dark-2: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
    --gradient-purple: linear-gradient(
        135deg,
        var(--purple) 0%,
        var(--purple-dark) 100%
    );
    --gradient-blue: linear-gradient(
        135deg,
        var(--blue) 0%,
        var(--blue-dark) 100%
    );
    --gradient-orange: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--orange) 100%
    );
    --gradient-dark: linear-gradient(
        180deg,
        var(--dark) 0%,
        var(--dark-2) 100%
    );

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 30px -5px rgba(37, 211, 102, 0.3);
    --shadow-purple: 0 10px 30px -5px rgba(139, 92, 246, 0.3);

    /* Spacing */
    --container-max: 1400px;
    --container-padding: 2rem;
    --section-padding: 6rem;

    /* Typography */
    --font-family: "Ping-Light", "Segoe UI", Tahoma, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* =====================================================
   BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    direction: rtl;
}

.whatscrm-theme {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.whatscrm-theme.theme-loaded {
    opacity: 1;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes float-slow {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes particle-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(10px, -20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, -40px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(-15px, -20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes scroll-indicator {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate="scale"] {
    transform: scale(0.9);
}

[data-animate].animate-visible,
.animate-visible [data-stagger] {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

[data-stagger] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   HEADER
   ===================================================== */
.theme-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    animation: fadeInDown 0.6s ease-out;
}

.theme-header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.theme-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform var(--transition);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    /* background: var(--gradient-primary);
    border-radius: var(--radius); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: var(--shadow-primary); */
    transition: all var(--transition);
}

.logo-icon:hover {
    transform: rotate(5deg);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.logo-icon img,
.logo-icon .whatsapp-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Navigation */
.header-nav {
    display: flex;
    gap: 2.5rem;
}

/* Theme menu (Botble Menu location) */
.header-nav .menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .menu .menu-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.header-nav .menu .menu-item > a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.header-nav .menu .menu-item > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition);
}

.header-nav .menu .menu-item > a:hover,
.header-nav .menu .menu-item > a.active {
    color: var(--primary);
}

.header-nav .menu .menu-item > a:hover::after,
.header-nav .menu .menu-item > a.active::after {
    width: 100%;
}

.header-nav .menu .menu-item > a svg,
.header-nav .menu .menu-item > a i {
    margin-inline-end: 0.35rem;
}

/* Dropdown submenu */
.header-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 2000;
}

.header-nav .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.header-nav .menu-item-has-children.open > .sub-menu {
    display: block;
}

.header-nav .sub-menu .menu-item {
    display: block;
}

.header-nav .sub-menu .menu-item > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 700;
}

.header-nav .sub-menu .menu-item > a::after {
    display: none;
}

.header-nav .sub-menu .menu-item > a:hover,
.header-nav .sub-menu .menu-item > a.active {
    background: var(--gray-50);
    color: var(--primary);
}

/* Submenu toggle button (mobile) */
.header-nav .sub-toggle {
    display: none;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.header-nav .sub-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(-45deg);
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Ensure header nav link colors aren't overridden by other frameworks */
.theme-header .header-nav a,
.theme-header .header-nav a.nav-link {
    color: var(--gray-700) !important;
}

.theme-header .header-nav a:hover,
.theme-header .header-nav a.active,
.theme-header .header-nav a.nav-link:hover,
.theme-header .header-nav a.nav-link.active {
    color: var(--primary) !important;
}

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

/* Responsive visibility helpers for header auth UI */
.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

/* Account menu (dropdown) */
.theme-header .account-menu {
    position: relative;
}

.theme-header .account-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-header .account-trigger:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.theme-header .account-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-header .account-avatar svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.theme-header .account-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.theme-header .account-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-800);
}

.theme-header .account-email {
    font-size: 0.72rem;
    color: var(--gray-500);
}

.theme-header .account-chev {
    width: 14px;
    height: 14px;
    color: var(--gray-500);
    transition: transform var(--transition-fast);
}

.theme-header .account-dropdown.open ~ .account-chev,
.theme-header .account-menu.open .account-chev {
    transform: rotate(180deg);
}

.theme-header .account-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    z-index: 1100;
    overflow: hidden;
}

.theme-header .account-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-header .account-dropdown .dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
}

.theme-header .account-dropdown .dropdown-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.theme-header .account-dropdown .dropdown-avatar svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.theme-header .account-dropdown .dropdown-user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.theme-header .account-dropdown .dropdown-name {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-header .account-dropdown .dropdown-email {
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.theme-header .account-dropdown .dropdown-divider {
    height: 1px;
    background: var(--gray-200);
}

.theme-header .account-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: background var(--transition-fast);
    font-size: 0.9rem;
}

.theme-header .account-dropdown .dropdown-item:hover {
    background: var(--gray-50);
}

.theme-header .account-dropdown .dropdown-item svg {
    width: 18px;
    height: 18px;
    color: var(--gray-500);
}

.theme-header .account-dropdown .dropdown-item-danger {
    color: var(--red);
}

.theme-header .account-dropdown .dropdown-item-danger svg {
    color: var(--red);
}

.theme-header .account-dropdown .dropdown-item-danger:hover {
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .theme-header .account-info {
        display: none;
    }
    .theme-header .account-dropdown {
        right: -20px;
    }
}

.btn-header-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.btn-header-secondary svg {
    width: 18px;
    height: 18px;
}

.btn-header-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-header-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition);
    overflow: hidden;
    position: relative;
}

.btn-header-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-header-primary:hover::before {
    left: 100%;
}

.btn-header-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.4);
}

.btn-header-primary svg {
    width: 18px;
    height: 18px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 70% 20%,
            rgba(37, 211, 102, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 30% 80%,
            rgba(139, 92, 246, 0.08) 0%,
            transparent 50%
        ),
        linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: var(--primary);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    opacity: 0.3;
    animation: particle-float var(--duration) var(--delay) infinite ease-in-out;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        black 0%,
        transparent 70%
    );
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow);
    width: fit-content;
    animation: float 3s ease-in-out infinite;
}

.badge-stars {
    display: flex;
    gap: 2px;
}

.badge-stars svg {
    width: 16px;
    height: 16px;
    color: #ffd700;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
}

.title-line {
    display: inline;
}

.title-highlight {
    display: inline;
    position: relative;
    color: var(--white);
    padding: 0 0.75rem;
    margin: 0 0.25rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.title-brand {
    display: inline;
    color: var(--primary);
}

.title-accent {
    display: inline;
    color: var(--purple);
    position: relative;
}

.title-accent::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 4px;
    z-index: -1;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 500px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -10px rgba(37, 211, 102, 0.5);
}

.btn-hero-primary svg {
    width: 24px;
    height: 24px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--gray-700);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-hero-secondary .play-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.btn-hero-secondary .play-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    margin-right: -2px;
}

.btn-hero-secondary:hover .play-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.hero-trust svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-main {
    position: relative;
}

.visual-main img {
    width: 100%;
    /* max-width: 600px; */
    border-radius: var(--radius-lg);
    /* box-shadow: var(--shadow-xl); */
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float-slow 4s ease-in-out infinite;
    z-index: 2;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon.messages {
    background: var(--gradient-purple);
}

.floating-card .card-icon.automation {
    background: var(--gradient-blue);
}

.floating-card .card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.floating-card .card-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.floating-card .card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.card-users {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-messages {
    bottom: 30%;
    left: -20px;
    animation-delay: 1s;
}

.card-automation {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

/* Hero Trusted */
.hero-trusted {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    text-align: center;
}

.trusted-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.trusted-logo {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--transition);
}

.trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trusted-logo img {
    height: 30px;
    width: auto;
}

.trusted-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-indicator 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* =====================================================
   SECTION COMMON STYLES
   ===================================================== */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-padding) var(--container-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary);
}

.section-badge svg {
    width: 18px;
    height: 18px;
}

.section-badge.green {
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary);
}

.section-badge.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.section-badge.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
}

.section-badge.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title .highlight-green {
    color: var(--primary);
}

.section-title .highlight-purple {
    color: var(--purple);
}

.section-title .highlight-blue {
    color: var(--blue);
}

.section-title .highlight-orange {
    color: var(--orange);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.feature-card.green::before {
    background: var(--gradient-primary);
}
.feature-card.purple::before {
    background: var(--gradient-purple);
}
.feature-card.orange::before {
    background: var(--gradient-orange);
}
.feature-card.blue::before {
    background: var(--gradient-blue);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.feature-icon .icon-bg {
    position: absolute;
    inset: 0;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature-card.green .icon-bg {
    background: rgba(37, 211, 102, 0.1);
}
.feature-card.purple .icon-bg {
    background: rgba(139, 92, 246, 0.1);
}
.feature-card.orange .icon-bg {
    background: rgba(249, 115, 22, 0.1);
}
.feature-card.blue .icon-bg {
    background: rgba(59, 130, 246, 0.1);
}

.feature-card:hover .icon-bg {
    transform: rotate(10deg) scale(1.1);
}

.feature-icon svg {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    margin: 19px;
    color: var(--primary);
}

.feature-card.green .feature-icon svg {
    color: var(--primary);
}
.feature-card.purple .feature-icon svg {
    color: var(--purple);
}
.feature-card.orange .feature-icon svg {
    color: var(--orange);
}
.feature-card.blue .feature-icon svg {
    color: var(--blue);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition);
}

.feature-card.purple .feature-link {
    color: var(--purple);
}
.feature-card.orange .feature-link {
    color: var(--orange);
}
.feature-card.blue .feature-link {
    color: var(--blue);
}

.feature-link:hover {
    gap: 0.75rem;
}

.feature-link svg {
    width: 18px;
    height: 18px;
}

/* Features Stats */
.features-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
        --container-padding: 1.5rem;
    }

    .header-nav {
        display: none;
    }

    .header-nav.nav-open {
        display: flex;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 1rem var(--container-padding);
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        gap: 1rem;
        z-index: 1001;
    }

    .header-nav.nav-open .menu {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .header-nav.nav-open .menu .menu-item {
        width: 100%;
        justify-content: space-between;
    }

    .header-nav.nav-open .sub-toggle {
        display: inline-flex;
    }

    .header-nav.nav-open .sub-menu {
        position: static;
        box-shadow: none;
        border: 1px solid var(--gray-200);
        margin-top: 0.5rem;
        width: 100%;
        display: none;
    }

    .header-nav.nav-open .menu-item-has-children.open > .sub-menu {
        display: block;
    }

    /* Reduce header footprint on mobile */
    .header-container {
        padding: 0.75rem var(--container-padding);
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .logo-name {
        font-size: 1.05rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
    }

    /* If login/register buttons are present in header-actions, keep them compact */
    .header-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
    }

    .btn-header-primary,
    .btn-header-secondary {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .header-nav.nav-open .menu .menu-item > a,
    .header-nav.nav-open .menu .menu-item > a.nav-link {
        padding: 0.35rem 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .features-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .trusted-logos {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-tagline {
        display: none;
    }
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate],
    [data-stagger] {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/**
 * WhatsApp CRM Theme - Component Styles
 * Integration, Pricing, UseCases, FAQ, CTA, Footer
 */

/* =====================================================
   CHECKOUT (WhatsCRM Vue)
   ===================================================== */
.checkout-section {
    background: var(--white);
    padding: 7.5rem 0 4rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
}

.checkout-card__title {
    font-weight: 900;
    color: var(--gray-900);
    margin: 0 0 1rem;
    font-size: 1.05rem;
}

.checkout-plan {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
}

.checkout-plan__name {
    font-weight: 800;
    color: var(--gray-900);
}

.checkout-plan__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.checkout-plan__amount {
    font-weight: 900;
    color: var(--gray-900);
}

.checkout-plan__period {
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.9rem;
}

.checkout-note {
    margin-top: 0.9rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.checkout-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkout-method {
    display: block;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    padding: 0.9rem;
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.checkout-method:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
    transform: translateY(-1px);
}

.checkout-method input[type="radio"] {
    margin-inline-end: 0.6rem;
}

.checkout-method__content {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.checkout-method__label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    color: var(--gray-800);
}

.checkout-bank {
    margin: 0.25rem 0 0.75rem;
    padding: 0.9rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
}

.checkout-bank__title {
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.checkout-bank__box {
    line-height: 1.9;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.checkout-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.checkout-actions .btn-hero-primary,
.checkout-actions .btn-hero-secondary {
    flex: 1 1 220px;
    justify-content: center;
}

.checkout-alert {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkout-alert--error {
    background: var(--gray-50);
}

.checkout-alert--success {
    background: var(--gray-50);
}

/* =====================================================
   INTEGRATION SECTION
   ===================================================== */
.integration-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.integration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integration-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.integration-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    cursor: default;
}

.integration-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.integration-item .item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.integration-item .item-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.integration-item .item-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.integration-item .item-check {
    width: 18px;
    height: 18px;
    color: var(--primary);
    margin-right: auto;
}

.btn-integration {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--purple);
    border: 2px solid var(--purple);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-integration:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-integration svg {
    width: 20px;
    height: 20px;
}

/* Integration Visual */
.integration-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: var(--dark);
    border-radius: 36px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.phone-mockup::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: var(--dark-2);
    border-radius: 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--primary);
    padding: 2.5rem 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.chat-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #e5ddd5;
}

.message {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    position: relative;
}

.message p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.message .time {
    font-size: 0.65rem;
    color: var(--gray-500);
    position: absolute;
    bottom: 4px;
    left: 8px;
}

.message.received {
    background: var(--white);
    align-self: flex-start;
    border-bottom-right-radius: 4px;
}

.message.sent {
    background: var(--primary-light);
    align-self: flex-end;
    border-bottom-left-radius: 4px;
}

/* Floating Integrations */
.floating-integration {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-integration .fi-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.floating-integration .fi-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.floating-integration .fi-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-300), transparent);
}

.floating-integration.pos-1 {
    top: 10%;
    right: 80%;
}
.floating-integration.pos-2 {
    top: 30%;
    left: 85%;
}
.floating-integration.pos-3 {
    bottom: 30%;
    right: 85%;
}
.floating-integration.pos-4 {
    bottom: 10%;
    left: 80%;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.billing-toggle span {
    font-weight: 600;
    color: var(--gray-500);
    transition: color var(--transition);
}

.billing-toggle span.active {
    color: var(--dark);
}

.toggle-switch {
    width: 56px;
    height: 28px;
    background: var(--gray-200);
    border: none;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
}

.toggle-switch.annual {
    background: var(--primary);
}

.toggle-indicator {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch.annual .toggle-indicator {
    right: auto;
    left: 3px;
}

.discount-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    margin-right: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    border: 2px solid var(--gray-100);
    transition: all var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
    z-index: 1;
}

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

.pricing-card.popular {
    border-color: var(--purple);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.card-badge svg {
    width: 14px;
    height: 14px;
}

.card-badge.popular {
    background: var(--gradient-primary);
    color: var(--white);
}

.card-badge.recommended {
    background: var(--gradient-purple);
    color: var(--white);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
}

.plan-icon.green {
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary);
}

.plan-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.plan-icon svg {
    width: 32px;
    height: 32px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Plan Price */
.plan-price {
    text-align: center;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-500);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--gray-500);
}

/* Plan Features */
.plan-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

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

.feature-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
    margin-top: 2px;
}

/* Plan CTA */
.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
    overflow: hidden;
    position: relative;
}

.plan-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.plan-cta:hover::before {
    left: 100%;
}

.plan-cta svg {
    width: 18px;
    height: 18px;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.4);
}

.cta-secondary {
    background: var(--gray-100);
    color: var(--dark);
    border: 1px solid var(--gray-200);
}

.cta-secondary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

/* Pricing Trust */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* =====================================================
   USE CASES SECTION
   ===================================================== */
.usecases-section {
    background: var(--white);
    position: relative;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.usecase-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

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

.usecase-visual {
    height: 180px;
    overflow: hidden;
}

.usecase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.usecase-card:hover .usecase-visual img {
    transform: scale(1.1);
}

.usecase-content {
    padding: 1.5rem;
}

.usecase-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.usecase-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.usecase-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.usecase-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.usecase-stats .stat {
    display: flex;
    flex-direction: column;
}

.usecase-stats .stat-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.usecase-stats .stat-label {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.card-green:hover {
    border-color: var(--primary);
}
.card-blue:hover {
    border-color: var(--blue);
}
.card-purple:hover {
    border-color: var(--purple);
}
.card-orange:hover {
    border-color: var(--orange);
}

.card-green .usecase-stats .stat-value {
    color: var(--primary);
}
.card-blue .usecase-stats .stat-value {
    color: var(--blue);
}
.card-purple .usecase-stats .stat-value {
    color: var(--purple);
}
.card-orange .usecase-stats .stat-value {
    color: var(--orange);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    background: var(--gray-50);
    position: relative;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-content {
    position: sticky;
    top: 120px;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition);
    margin-top: 1rem;
}

.btn-faq:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(37, 211, 102, 0.4);
}

.btn-faq svg {
    width: 20px;
    height: 20px;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.is-open {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--gray-600);
    transition: transform var(--transition);
}

.faq-item.is-open .faq-icon {
    background: var(--primary);
}

.faq-item.is-open .faq-icon svg {
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    position: relative;
    background: var(--light-bg);
    padding: var(--section-padding) var(--container-padding);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-particles {
    position: absolute;
    inset: 0;
}

.cta-particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particle-float 10s var(--delay) infinite ease-in-out;
}

.cta-globe {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(
        ellipse,
        rgba(37, 211, 102, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-title .highlight {
    color: var(--secondary);
}

.cta-title .accent {
    color: var(--primary);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -10px rgba(37, 211, 102, 0.5);
}

.btn-cta-primary svg {
    width: 22px;
    height: 22px;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--gradient-primary);
    border: 2px solid rgba(146, 143, 143, 0.3);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.btn-cta-secondary:hover {
    border-color: var(--dark);
    transform: translateY(-2px);
}

/* CTA Trust */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars .avatar {
    width: 36px;
    height: 36px;
    background: var(--gray-600);
    border: 3px solid var(--dark);
    border-radius: 50%;
    margin-right: -10px;
}

.trust-avatars .avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border: 3px solid var(--dark);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
}

.trust-text {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.theme-footer {
    position: relative;
    background: var(--gradient-dark);
}

.footer-wave {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.footer-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    fill: var(--gray-50);
}

.footer-main {
    padding: 4rem 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

/* Footer Brand */
.footer-brand {
    padding-left: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.brand-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo .logo-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.brand-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-desc {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px) rotate(5deg);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: "←";
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    opacity: 1;
    right: -25px;
}

/* Footer Newsletter */
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-newsletter p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    width: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* =====================================================
   RESPONSIVE - COMPONENTS
   ===================================================== */
@media (max-width: 1024px) {
    .integration-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .integration-visual {
        order: -1;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-content {
        position: static;
        text-align: center;
    }

    .faq-content .section-badge,
    .faq-content .btn-faq {
        margin: 0 auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .usecases-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        padding-left: 0;
    }

    .brand-logo,
    .brand-social {
        justify-content: center;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        gap: 1rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .pricing-trust {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-integration {
        display: none;
    }
}

/*
 * Extracted from layouts/base.blade.php
 * Keeps layout clean by moving large inline CSS here.
 */

@font-face {
    font-family: "Ping-Light";
    src: url("/themes/whatscrm/fonts/PingAR+LT-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ping-Regular";
    src: url("/themes/whatscrm/fonts/PingAR+LT-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ping-Medium";
    src: url("/themes/whatscrm/fonts/PingAR+LT-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ping-Bold";
    src: url("/themes/whatscrm/fonts/PingAR+LT-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== SCROLL ANIMATIONS ===== */
/* All elements start visible but shifted */
[data-animate] {
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.6s ease-out !important;
}

/* Starting positions based on data-animate value */
[data-animate="fade-up"]:not(.animated) {
    transform: translateY(40px);
}
[data-animate="fade-down"]:not(.animated) {
    transform: translateY(-40px);
}
[data-animate="fade-left"]:not(.animated) {
    transform: translateX(-40px);
}
[data-animate="fade-right"]:not(.animated) {
    transform: translateX(40px);
}
[data-animate="zoom-in"]:not(.animated) {
    transform: scale(0.9);
}

/* Animated state - normal position */
[data-animate].animated {
    transform: none !important;
}

/* Feature cards animation */
.feature-card,
.faq-item,
.plan-card,
.stat-item {
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.5s ease-out !important;
}
.feature-card:not(.animated) {
    transform: translateY(30px);
}
.faq-item:not(.animated) {
    transform: translateX(30px);
}
.plan-card:not(.animated),
.stat-item:not(.animated) {
    transform: scale(0.95);
}
.feature-card.animated,
.faq-item.animated,
.plan-card.animated,
.stat-item.animated {
    transform: none !important;
}

/* Stagger delays */
.feature-card:nth-child(1),
.faq-item:nth-child(1) {
    transition-delay: 0.05s;
}
.feature-card:nth-child(2),
.faq-item:nth-child(2) {
    transition-delay: 0.1s;
}
.feature-card:nth-child(3),
.faq-item:nth-child(3) {
    transition-delay: 0.15s;
}
.feature-card:nth-child(4),
.faq-item:nth-child(4) {
    transition-delay: 0.2s;
}
.feature-card:nth-child(5),
.faq-item:nth-child(5) {
    transition-delay: 0.25s;
}

/* ===== FORCE ALL CONTENT VISIBLE ===== */
/* Override any hiding from other CSS files */
.whatscrm-theme,
.hero-section,
.hero-title,
.hero-subtitle,
.hero-content,
.hero-actions,
.hero-preview,
.hero-image-container,
.hero-visual,
.hero-badge,
.hero-container,
.hero-bg,
.features-section,
.features-grid,
.section-header,
.integration-section,
.integration-content,
.integration-visual,
.usecases-section,
.pricing-section,
.pricing-section-main,
.pricing-grid,
.faq-section,
.faq-content,
.faq-accordion,
.cta-section,
.cta-container,
section,
main,
[data-animate],
[data-stagger] {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Usecase cards */
.usecase-card {
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.5s ease-out !important;
}
.usecase-card:not(.animated) {
    transform: translateY(30px);
}
.usecase-card.animated {
    transform: none !important;
}

/* ===== CHAT MESSAGES ANIMATION ===== */
.chat-message {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    animation: chatMessageAppear 0.5s ease-out forwards;
    animation-delay: var(--msg-delay, 0s);
}

@keyframes chatMessageAppear {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Repeat animation every 8 seconds */
.chat-messages {
    animation: resetMessages 8s infinite;
}

@keyframes resetMessages {
    0%,
    100% {
        /* Trigger re-animation */
    }
}

/* Re-trigger messages animation */
.integration-visual.animated .chat-message {
    animation: chatMessageAppear 0.5s ease-out forwards;
    animation-delay: var(--msg-delay, 0s);
}
.usecase-card:nth-child(1) {
    transition-delay: 0.05s;
}
.usecase-card:nth-child(2) {
    transition-delay: 0.1s;
}
.usecase-card:nth-child(3) {
    transition-delay: 0.15s;
}
.usecase-card:nth-child(4) {
    transition-delay: 0.2s;
}

/* ===== HERO NETWORK FLOW ANIMATION ===== */
.network-flow {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central WhatsApp Icon */
.central-icon {
    position: relative;
    width: 64px;
    height: 64px;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(
        circle,
        rgba(37, 211, 102, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite;
}

.network-flow .whatsapp-icon {
    position: relative;
    width: 64px;
    height: 64px;
    fill: #25d366;
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.4));
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Flow Nodes */
.flow-node {
    position: absolute;
    animation: nodeAppear 0.6s ease-out forwards;
    animation-delay: var(--node-delay, 0s);
    opacity: 0;
}

.node-top-left {
    top: 8%;
    left: 8%;
}
.node-top-right {
    top: 8%;
    right: 8%;
}
.node-right {
    top: 45%;
    right: 3%;
}
.node-bottom-right {
    bottom: 8%;
    right: 8%;
}
.node-bottom-left {
    bottom: 8%;
    left: 8%;
}
.node-left {
    top: 45%;
    left: 3%;
}

.node-bubble {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8f5e9;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.node-icon {
    font-size: 24px;
}

.node-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap;
}

@keyframes nodeAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

/* Connection Lines */
.connection-line {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

/* Position lines from center to each node */
.line-top-left {
    top: 25%;
    left: 25%;
}
.line-top-right {
    top: 25%;
    right: 25%;
}
.line-right {
    top: 50%;
    right: 22%;
    transform: translateY(-50%);
}
.line-bottom-right {
    bottom: 25%;
    right: 25%;
}
.line-bottom-left {
    bottom: 25%;
    left: 25%;
}
.line-left {
    top: 50%;
    left: 22%;
    transform: translateY(-50%);
}

.line-path {
    fill: none;
    stroke: #25d366;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    stroke-linecap: round;
    opacity: 0;
    animation:
        lineAppear 1s ease-out forwards,
        lineDash 20s linear infinite;
    animation-delay: var(--node-delay, 0s), calc(var(--node-delay, 0s) + 1s);
}

.line-pulse {
    fill: #25d366;
    filter: drop-shadow(0 0 4px #25d366);
}

@keyframes lineAppear {
    to {
        opacity: 0.6;
    }
}

@keyframes lineDash {
    to {
        stroke-dashoffset: -100;
    }
}

/* Chat Bubbles */
.chat-bubbles-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.chat-bubble {
    position: absolute;
    opacity: 0;
    pointer-events: auto;
    animation:
        bubbleAppear 0.55s cubic-bezier(0.2, 0.9, 0.2, 1) forwards,
        bubbleFloat 4s ease-in-out infinite;
    animation-delay:
        var(--bubble-delay, 0s), calc(var(--bubble-delay, 0s) + 0.6s);
    transform-origin: center;
    z-index: 6;
    /* Position values are controlled by CSS variables so they can be adjusted inline */
    top: var(--bubble-top, auto);
    left: var(--bubble-left, auto);
    right: var(--bubble-right, auto);
    bottom: var(--bubble-bottom, auto);
}

/* approximate positions matching the network-flow artwork */
/* Default positional variables for each bubble (can be overridden inline) */
.bubble-1 {
    --bubble-top: 6%;
    --bubble-right: 12%;
}
.bubble-2 {
    --bubble-top: 26%;
    --bubble-left: 10%;
}
.bubble-3 {
    --bubble-top: 36%;
    --bubble-right: 12%;
}
.bubble-4 {
    --bubble-top: 48%;
    --bubble-left: 14%;
}
.bubble-5 {
    --bubble-top: 62%;
    --bubble-right: 18%;
}

/* Set relative widths so the text stays inside the image boxes and scales */
.bubble-1 {
    width: clamp(160px, 36%, 320px);
}
.bubble-2 {
    width: clamp(140px, 44%, 360px);
}
.bubble-3 {
    width: clamp(150px, 40%, 340px);
}
.bubble-4 {
    width: clamp(160px, 42%, 350px);
}
.bubble-5 {
    width: clamp(160px, 38%, 300px);
}

.bubble-content {
    /* make content visually sit inside the boxes in the artwork: transparent container, inline chip */
    background: transparent;
    padding: 0;
    border-radius: 10px;
    font-size: 0.96rem;
    line-height: 1.3;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.bubble-text {
    display: inline-block;
    background: rgba(15, 23, 42, 0.04);
    color: #334155;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(12px, 1.1vw, 15px);
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
}

/* Typing indicator dots */
.typing-dots {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    opacity: 0.9;
    transform: translateY(0);
    animation: typingDot 1s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.12s;
}
.typing-dots span:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes typingDot {
    0% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
}

/* reveal inner text slightly after the bubble appears to feel like a message arrival */
.bubble-content {
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 260ms ease,
        transform 260ms ease;
    transition-delay: calc(var(--bubble-delay, 0s) + 0.12s);
}

.chat-bubble[style] .bubble-content {
    opacity: 1;
    transform: translateY(0);
}

.bubble-header {
    position: absolute;
    top: -10px;
    right: -10px;
}
.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.12);
}
.avatar-1 {
    background: linear-gradient(135deg, #fef3c7, #fb7185);
}
.avatar-2 {
    background: linear-gradient(135deg, #dbeafe, #a78bfa);
}
.avatar-3 {
    background: linear-gradient(135deg, #bbf7d0, #34d399);
}

@keyframes bubbleAppear {
    from {
        opacity: 0;
        transform: scale(0.6) translateY(18px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bubbleFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

/* Flow Stats */
.flow-stats {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: statAppear 0.5s ease-out forwards;
    animation-delay: var(--stat-delay, 0s);
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #25d366;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #64748b;
}

@keyframes statAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .network-flow {
        height: auto;
        min-height: 300px;
        max-width: 100%;
        padding: 0px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .central-icon {
        width: 60px;
        height: 60px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .network-flow .whatsapp-icon,
    .network-flow .whatsapp-logo {
        width: 60px !important;
        height: 60px !important;
    }

    /* Hide all connection lines on mobile */
    .connection-line {
        display: none !important;
    }

    /* Arrange nodes in a simple grid */
    .flow-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: auto;
        margin: 0;
    }

    .node-bubble {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .node-icon {
        font-size: 18px;
    }

    .node-label {
        font-size: 13px;
        font-weight: 500;
    }

    /* Reposition chat bubbles for mobile - stack at bottom of visual */
    .chat-bubbles-overlay {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        padding-top: 12px;
    }
    .chat-bubble {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: bubbleAppear 0.4s ease-out forwards;
    }
    .bubble-content {
        max-width: 90%;
        font-size: 13px;
        padding: 10px 14px;
    }

    /* Hide stats on mobile */
    .flow-stats {
        display: none;
    }
}

@media (max-width: 480px) {
    .network-flow {
        padding: 20px 15px;
        min-height: 250px;
    }

    .central-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .network-flow .whatsapp-icon,
    .network-flow .whatsapp-logo {
        width: 50px !important;
        height: 50px !important;
    }

    .node-bubble {
        padding: 6px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .node-icon {
        font-size: 16px;
    }

    .node-label {
        font-size: 12px;
    }
}

/* ===== PAGE LOADING OVERLAY ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    animation: pulse-logo 1.5s ease-in-out infinite;
}
.loader-logo svg {
    width: 100%;
    height: 100%;
}
@keyframes pulse-logo {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(37, 211, 102, 0.2);
    border-top-color: #25d366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.loader-text {
    margin-top: 20px;
    font-family: "Ping-Light", sans-serif;
    font-size: 18px;
    color: #128c7e;
    animation: fade-text 1.5s ease-in-out infinite;
}
@keyframes fade-text {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}
.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 2px;
    margin-top: 15px;
    overflow: hidden;
}
.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #25d366, #128c7e);
    border-radius: 2px;
    animation: progress-load 2s ease-in-out infinite;
}
@keyframes progress-load {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* ===== SKELETON LOADING FOR SHORTCODES ===== */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
    border-radius: 8px;
}
@keyframes skeleton-shimmer {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.skeleton-text {
    height: 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}
.skeleton-title {
    height: 40px;
    width: 60%;
    margin-bottom: 15px;
}
.skeleton-card {
    height: 250px;
    margin-bottom: 20px;
}
.skeleton-image {
    height: 300px;
    border-radius: 12px;
}

/* ===== LAZY LOAD FADE IN ===== */
[data-lazy-load] {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
[data-lazy-load].lazy-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SECTION LOADING ANIMATION ===== */
.section-loading {
    position: relative;
    min-height: 200px;
}
.section-loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(37, 211, 102, 0.2);
    border-top-color: #25d366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.section-loading.loaded::before {
    display: none;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0.3;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0.3;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0.3;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes zoomIn {
    from {
        opacity: 0.5;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== HOVER EFFECTS ===== */
.feature-card,
.pricing-card,
.plan-card,
.integration-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover,
.pricing-card:hover,
.plan-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.2) !important;
}
.integration-item:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Button Effects */
.btn-primary,
.btn-cta-primary,
.hero-btn-primary,
[class*="btn-whatsapp"] {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary:hover,
.btn-cta-primary:hover,
.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
}

/* Icon Animations */
.feature-icon,
.icon-wrapper {
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon,
.feature-card:hover .icon-wrapper {
    transform: scale(1.2) rotate(10deg) !important;
    color: #128c7e;
}

/* Image Hover */
.hero-preview img,
.integration-item img {
    transition: transform 0.5s ease;
}
.hero-preview:hover img {
    transform: scale(1.05) !important;
}

/* Link Underline Animation */
.nav-link,
.footer-link {
    position: relative;
}
.nav-link::after,
.footer-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #25d366, #128c7e);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.footer-link:hover::after {
    width: 100%;
}

/* FAQ Hover */
.faq-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.faq-item:hover {
    transform: translateX(10px) !important;
    border-left-color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

/* Floating Elements */
.hero-preview,
.floating-element {
    animation: float 4s ease-in-out infinite;
}

/* Gradient Text */
.hero-title,
.section-title {
    background: linear-gradient(135deg, #25d366, #128c7e, #075e54);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 4s ease infinite;
}

/* Stats Counter Pulse */
.stat-number,
.counter {
    transition: all 0.3s ease;
}
.stat-number:hover,
.counter:hover {
    transform: scale(1.1) !important;
    color: #25d366;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(37, 211, 102, 0.2);
    z-index: 99999;
}
.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #25d366, #128c7e);
    width: 0%;
    transition: width 0.1s;
}

/* Ripple Effect for Buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Header Scroll Effect */
.theme-header.scrolled {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Loading Shimmer */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.hero-network-svg text{font-family:Tajawal,sans-serif}.hero-network-svg .name-text{fill:#1e293b;font-size:22px;font-weight:800}.hero-network-svg .role-text{fill:#64748b;font-size:14px;font-weight:500}.hero-network-svg .msg-text{fill:#475569;font-size:16px;font-weight:600}.hero-network-svg .bot-msg-text{fill:#065f46;font-size:16px;font-weight:700}.hero-network-svg .tag-text{font-size:14px;font-weight:700;letter-spacing:.5px}.hero-network-svg .card-base{stroke:#e2e8f0;stroke-width:1.5;rx:24;filter:url(#soft-shadow)}.hero-network-svg .sep-line{stroke:#f1f5f9;stroke-width:2}.hero-network-svg .net-line{fill:none;stroke:#cbd5e1;stroke-width:3;stroke-linecap:round}.hero-network-svg .dot{r:6;filter:url(#glow)}@keyframes cycle-1{0%{opacity:0;transform:translateY(20px)}5.7%{opacity:1;transform:translateY(0)}93%{opacity:1;transform:translateY(0)}96%{opacity:0;transform:translateY(-10px)}to{opacity:0;transform:translateY(20px)}}@keyframes cycle-2{0%{opacity:0;transform:translateY(20px)}11.4%{opacity:0;transform:translateY(20px)}17.1%{opacity:1;transform:translateY(0)}93%{opacity:1;transform:translateY(0)}96%{opacity:0;transform:translateY(-10px)}to{opacity:0;transform:translateY(20px)}}@keyframes cycle-3{0%{opacity:0;transform:translateY(20px)}25.7%{opacity:0;transform:translateY(20px)}31.4%{opacity:1;transform:translateY(0)}93%{opacity:1;transform:translateY(0)}96%{opacity:0;transform:translateY(-10px)}to{opacity:0;transform:translateY(20px)}}@keyframes cycle-4{0%{opacity:0;transform:translateY(20px)}40%{opacity:0;transform:translateY(20px)}45.7%{opacity:1;transform:translateY(0)}93%{opacity:1;transform:translateY(0)}96%{opacity:0;transform:translateY(-10px)}to{opacity:0;transform:translateY(20px)}}.hero-network-svg .g-1{animation:cycle-1 7s ease-in-out infinite}.hero-network-svg .g-2{animation:cycle-2 7s ease-in-out infinite}.hero-network-svg .g-3{animation:cycle-3 7s ease-in-out infinite}.hero-network-svg .g-4{animation:cycle-4 7s ease-in-out infinite}.packages-shortcode .package-card{border-radius:8px;overflow:hidden}.wc-detail-grid{display:grid;gap:.75rem;grid-template-columns:repeat(2,1fr)}.wc-detail-card{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius);padding:.9rem}.wc-detail-card__label{color:var(--gray-700);font-weight:700}.wc-detail-card__value{font-weight:800;margin-top:.35rem}.wc-plan-details{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius);margin-top:.75rem;padding:.9rem}.wc-plan-details__title{font-weight:800;margin-bottom:.35rem}.wc-plan-details__grid{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr);opacity:.85}@media(max-width:640px){.wc-detail-grid,.wc-plan-details__grid{grid-template-columns:1fr}}.wc-table-wrap{-webkit-overflow-scrolling:touch;overflow-x:auto}.wc-history-table{border-collapse:collapse;width:100%}@media(max-width:640px){.wc-table-wrap{overflow:visible}.wc-history-table{min-width:0!important}.wc-history-table thead{display:none}.wc-history-table tbody tr{border-bottom:1px solid var(--gray-200);display:block;padding:.75rem}.wc-history-table tbody td{border-bottom:0!important;display:flex;gap:.75rem;justify-content:space-between;padding:.35rem 0!important;text-align:start}.wc-history-table tbody td:before{color:var(--gray-700);content:attr(data-label);flex:0 0 auto;font-weight:700;opacity:.95}.wc-history-table tbody td>*{flex:1 1 auto;text-align:end}html[dir=ltr] .wc-history-table tbody td>*{text-align:start}}.packages-shortcode .package-actions{display:none}.packages-shortcode .package-card:hover{box-shadow:0 2px 8px rgba(0,0,0,.1);transform:none}.partners-section-pro{background:linear-gradient(180deg,#f8fafc,#fff 50%,#f0fdf4);overflow:hidden;padding:100px 0;position:relative}#contact{padding:10px 0}#contact .row{display:grid;gap:24px;grid-template-columns:repeat(2,minmax(0,1fr))}@media(max-width:992px){#contact .row{grid-template-columns:1fr}}#contact .wrapper{background:#fff;border:1px solid #f1f5f9;border-radius:20px;box-shadow:0 4px 20px rgba(0,0,0,.04);height:100%;padding:28px}#contact .h2,#contact .wrapper h2{color:#1a202c;font-size:1.25rem;font-weight:800;line-height:1.4;margin-bottom:18px;text-transform:none}#contact .contact-name{color:#128c7e;font-weight:800;letter-spacing:.5px;margin-bottom:10px;text-transform:uppercase}#contact .contact-main>div{color:#475569;font-weight:500;margin-bottom:10px}#contact .contact-main a{color:inherit;text-decoration:none}#contact .contact-main a:hover{color:#128c7e;text-decoration:underline}#contact .contact-form .form-group{margin-bottom:14px}#contact .contact-form .form-control{background:#f9fafb;border:2px solid #e5e7eb;border-radius:12px;height:auto;min-height:46px;padding:12px 14px;transition:all .2s ease}#contact .contact-form textarea.form-control{min-height:120px;resize:vertical}#contact .contact-form .form-control:focus{background:#fff;border-color:rgba(37,211,102,.6);box-shadow:0 0 0 4px rgba(37,211,102,.12);outline:none}#contact .contact-form .form-actions{margin-top:10px}.partners-bg-shapes{inset:0;overflow:hidden;pointer-events:none;position:absolute}.partners-shape{border-radius:50%;opacity:.5;position:absolute}.partners-shape-1{background:radial-gradient(circle,rgba(37,211,102,.1) 0,transparent 70%);height:400px;right:-100px;top:-100px;width:400px}.partners-shape-2{background:radial-gradient(circle,rgba(18,140,126,.08) 0,transparent 70%);bottom:-50px;height:300px;left:-50px;width:300px}.partners-container-pro{margin:0 auto;max-width:1200px;padding:0 20px;position:relative;z-index:1}.partners-header-pro{margin-bottom:60px;text-align:center}.partners-badge{align-items:center;background:linear-gradient(135deg,rgba(37,211,102,.1),rgba(18,140,126,.1));border:1px solid rgba(37,211,102,.2);border-radius:50px;color:#128c7e;display:inline-flex;font-size:.9rem;font-weight:600;gap:8px;margin-bottom:20px;padding:8px 20px}.partners-badge svg{color:#25d366}.partners-title-pro{color:#1a202c;font-size:2.8rem;font-weight:800;line-height:1.2;margin-bottom:16px}.partners-subtitle-pro{color:#64748b;font-size:1.15rem;line-height:1.6;margin:0 auto;max-width:550px}.partners-stats-grid{display:grid;gap:24px;grid-template-columns:repeat(4,1fr);margin-bottom:60px}.partner-stat-card{align-items:center;background:#fff;border:1px solid #f1f5f9;border-radius:20px;box-shadow:0 4px 20px rgba(0,0,0,.04);display:flex;gap:18px;padding:28px 24px;transition:all .3s ease}.partner-stat-card:hover{border-color:rgba(37,211,102,.2);box-shadow:0 12px 35px rgba(0,0,0,.08);transform:translateY(-4px)}.stat-icon{align-items:center;border-radius:16px;display:flex;flex-shrink:0;height:56px;justify-content:center;width:56px}.stat-icon svg{height:26px;width:26px}.stat-icon-messages{background:linear-gradient(135deg,#dcfce7,#bbf7d0);color:#16a34a}.stat-icon-customers{background:linear-gradient(135deg,#dbeafe,#bfdbfe);color:#2563eb}.stat-icon-countries{background:linear-gradient(135deg,#fef3c7,#fde68a);color:#d97706}.stat-icon-satisfaction{background:linear-gradient(135deg,#fce7f3,#fbcfe8);color:#db2777}.stat-content{flex:1}.stat-number-pro{color:#1a202c;font-size:1.75rem;font-weight:800;line-height:1.1;margin-bottom:4px;transition:all .3s ease}.stat-label-pro{color:#64748b;font-size:.9rem;font-weight:500}.partners-logos-wrapper{margin-bottom:50px}.partners-logos-label{color:#94a3b8;font-size:.85rem;font-weight:600;letter-spacing:2px;margin-bottom:30px;text-align:center;text-transform:uppercase}.partners-marquee-pro{--partners-marquee-end:-50%;mask-image:linear-gradient(90deg,transparent 0,#000 10%,#000 90%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 10%,#000 90%,transparent);overflow:hidden}[dir=rtl] .partners-marquee-pro{--partners-marquee-end:50%}.partners-track-pro{align-items:center;animation:partners-marquee-pro var(--marquee-duration,35s) linear infinite;display:flex;width:-moz-max-content;width:max-content}.partners-marquee-pro:hover .partners-track-pro{animation-play-state:paused}.partners-row-pro{align-items:center;display:inline-flex;gap:40px;padding-inline-start:40px}.partner-card{align-items:center;border-radius:12px;display:flex;height:80px;justify-content:center;min-width:120px;padding:16px 4px;text-decoration:none;transition:all .3s ease}.partner-card:hover{transform:scale(1.02)}.partner-card-inner{align-items:center;display:flex;justify-content:center}.partner-logo-pro{filter:grayscale(100%);max-height:45px;max-width:120px;-o-object-fit:contain;object-fit:contain;opacity:.6;transition:all .3s ease}.partner-card:hover .partner-logo-pro{filter:grayscale(0);opacity:1}.partner-name-pro{color:#475569;font-size:.95rem;font-weight:700;text-align:center;white-space:nowrap}.partner-card:hover .partner-name-pro{color:#128c7e}.partners-trust{display:flex;flex-wrap:wrap;gap:50px;justify-content:center}.trust-item{align-items:center;color:#64748b;display:flex;font-size:.95rem;font-weight:500;gap:10px}.trust-item svg{color:#25d366;height:22px;width:22px}@keyframes partners-marquee-pro{0%{transform:translateX(0)}to{transform:translateX(var(--partners-marquee-end,-50%))}}@media(prefers-reduced-motion:reduce){.partners-track-pro{animation:none}}@media(max-width:1024px){.partners-stats-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:768px){.partners-section-pro{padding:70px 0}.partners-title-pro{font-size:2rem}.partners-subtitle-pro{font-size:1rem}.partners-stats-grid{gap:16px}.partner-stat-card{gap:14px;padding:20px 18px}.stat-icon{height:48px;width:48px}.stat-icon svg{height:22px;width:22px}.stat-number-pro{font-size:1.4rem}.partners-logos-wrapper{padding:30px 20px}.partners-row-pro{gap:24px;padding-left:24px}.partner-card{height:65px;min-width:130px;padding:12px 18px}.partners-trust{gap:30px}}@media(max-width:480px){.partners-stats-grid{grid-template-columns:1fr}.partners-title-pro{font-size:1.7rem}.partners-badge{font-size:.8rem;padding:6px 16px}.partner-logo-pro{max-height:35px;max-width:100px}.partner-name-pro,.trust-item{font-size:.85rem}.trust-item svg{height:18px;width:18px}}.stat-number-pro.counting{color:#25d366}.pricing-carousel.owl-carousel:not(.owl-loaded){display:flex;flex-wrap:wrap;gap:24px}.pricing-section#pricing,.pricing-section#pricing .pricing-carousel,.pricing-section#pricing .section-container{overflow:visible}.pricing-carousel.owl-carousel:not(.owl-loaded)>.pricing-card{flex:1 1 calc(33.333% - 16px)}@media(max-width:1000px){.pricing-carousel.owl-carousel:not(.owl-loaded)>.pricing-card{flex-basis:calc(50% - 12px)}}@media(max-width:600px){.pricing-carousel.owl-carousel:not(.owl-loaded)>.pricing-card{flex-basis:100%}}.pricing-carousel.owl-carousel .owl-stage{display:flex}.pricing-carousel.owl-carousel .owl-stage-outer{margin-bottom:-24px;margin-top:-36px;padding-bottom:24px;padding-top:36px}.pricing-carousel.owl-carousel .owl-item{display:flex}.pricing-carousel.owl-carousel .pricing-card{height:100%;width:100%}#pricing .pricing-card.featured{transform:translateY(-10px)}#pricing .pricing-card.featured:hover{transform:translateY(-14px)}#pricing .pricing-card:not(.featured):hover{transform:translateY(-5px)}#pricing .pricing-card{will-change:transform}#pricing .plan-features{list-style:none;margin:0;padding:0}#pricing .plan-features .feature-item{align-items:center;color:var(--gray-700);display:flex;font-size:.95rem;gap:.75rem;padding:.5rem 0}#pricing .plan-features .feature-item .feature-icon,#pricing .plan-features .feature-item svg{stroke:var(--primary,#25d366);flex-shrink:0;height:20px;min-width:20px;width:20px}#pricing .pricing-card.featured .feature-item .feature-icon,#pricing .pricing-card.featured .feature-item svg{stroke:#25d366}.pricing-carousel.owl-carousel .owl-nav{margin-top:18px}.pricing-carousel.owl-carousel .owl-nav button{background:var(--white)!important;border:1px solid var(--gray-200)!important;border-radius:999px;color:var(--gray-700)!important;height:42px;width:42px}.pricing-carousel.owl-carousel .owl-nav button:hover{background:var(--gray-50)!important;border-color:var(--gray-300)!important}.whatscrm-proof-form{align-items:center;display:flex;flex-wrap:wrap;gap:.75rem}.whatscrm-proof-input{align-items:center;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);display:flex;flex:1 1 320px;gap:.5rem;min-height:44px;padding:.6rem .75rem}.whatscrm-proof-input input[type=file]{max-width:100%}.whatscrm-proof-input__text{color:var(--gray-700);font-weight:600}.lang-switcher{position:relative}.lang-trigger{align-items:center;background:transparent;border:1px solid var(--gray-200);border-radius:50px;color:var(--gray-700);cursor:pointer;display:flex;font-size:.85rem;font-weight:500;gap:.5rem;padding:.45rem .85rem;transition:all .2s ease}.header-scrolled .lang-trigger,.lang-trigger:hover{border-color:var(--gray-300)}.lang-trigger:hover{background:var(--gray-50)}.lang-flag{align-items:center;border-radius:50%;box-shadow:0 1px 3px rgba(0,0,0,.12);display:flex;height:26px;justify-content:center;overflow:hidden;width:26px}.lang-flag img{height:26px;-o-object-fit:cover;object-fit:cover;width:26px}.lang-name{font-weight:500}.lang-code{font-size:.8rem;font-weight:600}.lang-chev{color:var(--gray-500);height:14px;transition:transform .2s ease;width:14px}.lang-switcher.open .lang-chev{transform:rotate(180deg)}.lang-dropdown{background:#fff;border:1px solid var(--gray-200);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.12);min-width:180px;opacity:0;overflow:hidden;position:absolute;right:0;top:calc(100% + .5rem);transform:translateY(-8px);transition:all .2s ease;visibility:hidden;z-index:1000}.lang-switcher.open .lang-dropdown{opacity:1;transform:translateY(0);visibility:visible}.lang-option{align-items:center;color:var(--gray-700);display:flex;font-size:.875rem;gap:.75rem;padding:.7rem 1rem;text-decoration:none;transition:background .15s ease}.lang-option:hover{background:var(--gray-50)}.lang-option.active{background:linear-gradient(135deg,rgba(37,211,102,.1),rgba(18,140,126,.1));color:#128c7e}.lang-option .lang-flag,.lang-option .lang-flag img{height:24px;width:24px}.lang-check{color:#25d366;height:16px;margin-left:auto;width:16px}[dir=rtl] .lang-check{margin-left:0;margin-right:auto}@media(max-width:768px){.lang-name{display:none}.lang-dropdown{right:-10px}}@media(max-width:480px){.lang-trigger{gap:.4rem;padding:.4rem .6rem}.lang-flag,.lang-flag img{height:24px;width:24px}}.blog-list-section{background:#f8fafc;padding:10px 0 90px}.blog-posts-grid{display:grid;gap:30px;grid-template-columns:repeat(3,1fr);margin-bottom:50px}.blog-card{background:#fff;border:1px solid #eef2f7;border-radius:20px;box-shadow:0 4px 16px rgba(0,0,0,.03);display:flex;flex-direction:column;overflow:hidden;transition:all .3s ease}.blog-card:hover{box-shadow:0 15px 40px rgba(0,0,0,.1);transform:translateY(-8px)}.blog-card-image{aspect-ratio:16/10;background:#f8fafc;display:block;overflow:hidden;position:relative}.blog-card-image img{height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .5s ease;width:100%}.blog-card:hover .blog-card-image img{transform:scale(1.08)}.blog-card-content{display:flex;flex:1;flex-direction:column;padding:25px}.blog-card-badges{align-items:center;display:flex;flex-wrap:wrap;gap:10px;margin-bottom:12px}.blog-badge{align-items:center;background:#f8fafc;border:1px solid #e5e7eb;border-radius:999px;color:#475569;display:inline-flex;font-size:.82rem;font-weight:700;height:30px;padding:0 12px;text-decoration:none;white-space:nowrap}.blog-badge-cat{background:rgba(37,211,102,.08);border-color:rgba(37,211,102,.25);color:#128c7e}.blog-badge-cat:hover{background:rgba(37,211,102,.16);color:#128c7e}.blog-card-title{font-size:1.2rem;font-weight:700;line-height:1.4;margin-bottom:12px}.blog-card-title a{color:#1a202c;text-decoration:none;transition:color .2s ease}.blog-card-title a:hover{color:#128c7e}.blog-card-excerpt{color:#64748b;flex:1;font-size:.95rem;line-height:1.6;margin-bottom:20px}.blog-card-footer{align-items:center;border-top:1px solid #f1f5f9;display:flex;gap:12px;justify-content:flex-end;padding-top:14px}.blog-author{align-items:center;display:inline-flex;gap:10px;min-width:0}.blog-author-name{color:#334155;font-size:.95rem;font-weight:700;max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.blog-author-avatar{align-items:center;background:rgba(37,211,102,.12);border:1px solid rgba(37,211,102,.2);border-radius:999px;display:inline-flex;flex:0 0 auto;height:34px;justify-content:center;overflow:hidden;width:34px}.blog-author-avatar img{display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.blog-author-initial{color:#128c7e;font-size:.95rem;font-weight:800;line-height:1}.blog-pagination{display:flex;justify-content:center}.blog-pagination .pagination{display:flex;gap:8px;list-style:none;margin:0;padding:0}.blog-pagination .page-item .page-link{align-items:center;background:#fff;border:1px solid #e5e7eb;border-radius:12px;color:#64748b;display:flex;font-weight:600;height:45px;justify-content:center;text-decoration:none;transition:all .2s ease;width:45px}.blog-pagination .page-item .page-link:hover{background:#f8fafc;border-color:#25d366;color:#128c7e}.blog-pagination .page-item.active .page-link{background:linear-gradient(135deg,#25d366,#128c7e);border-color:transparent;color:#fff}.blog-pagination .page-item.disabled .page-link{cursor:not-allowed;opacity:.5}@media(max-width:1024px){.blog-posts-grid{gap:24px;grid-template-columns:repeat(2,1fr)}}@media(max-width:768px){.blog-list-section{padding:40px 0 60px}.blog-posts-grid{gap:20px;grid-template-columns:1fr}.blog-card-content{padding:20px}.blog-card-title{font-size:1.1rem}.blog-author-name{max-width:150px}}.archive-hero-section{align-items:flex-end;display:flex;min-height:300px;padding:120px 0 60px;position:relative}.archive-hero-bg{background:linear-gradient(135deg,#1a202c,#2d3748);background-position:50%;background-size:cover;inset:0;position:absolute}.archive-hero-overlay{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.4) 50%,rgba(0,0,0,.2));inset:0;position:absolute}.archive-hero-content{position:relative;text-align:center;width:100%;z-index:1}.archive-breadcrumb-nav{margin-bottom:20px}.archive-breadcrumb-nav .breadcrumb{background:transparent;justify-content:center;margin:0;padding:0}.archive-breadcrumb-nav .breadcrumb-item,.archive-breadcrumb-nav .breadcrumb-item a{color:hsla(0,0%,100%,.7);font-size:.9rem}.archive-breadcrumb-nav .breadcrumb-item a:hover{color:#25d366}.archive-badge{align-items:center;background:rgba(37,211,102,.2);border:1px solid rgba(37,211,102,.3);border-radius:50px;color:#25d366;display:inline-flex;font-size:.9rem;font-weight:600;gap:8px;margin-bottom:15px;padding:8px 18px}.archive-badge svg{height:16px;width:16px}.archive-hero-title{color:#fff;font-size:2.5rem;font-weight:800;line-height:1.3;margin-bottom:12px}.archive-hero-desc{color:hsla(0,0%,100%,.8);font-size:1.1rem;margin:0 auto 20px;max-width:600px}.archive-stats{display:flex;gap:25px;justify-content:center}.archive-stat{align-items:center;color:hsla(0,0%,100%,.7);display:flex;font-size:.95rem;gap:8px}.archive-stat svg{height:18px;opacity:.7;width:18px}.archive-content-section{background:#f8fafc;padding:60px 0 100px}.archive-layout{align-items:start;display:grid;gap:40px;grid-template-columns:1fr 320px}.archive-main{min-width:0}.archive-posts-grid{display:grid;gap:25px;grid-template-columns:repeat(3,1fr);margin-bottom:40px}.archive-card{background:#fff;border:1px solid #eef2f7;border-radius:16px;box-shadow:0 4px 16px rgba(0,0,0,.03);display:flex;flex-direction:column;overflow:hidden;transition:all .3s ease}.archive-card:hover{box-shadow:0 12px 30px rgba(0,0,0,.08);transform:translateY(-5px)}.archive-card-image{aspect-ratio:16/10;display:block;overflow:hidden;position:relative}.archive-card-image img{height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .5s ease;width:100%}.archive-card:hover .archive-card-image img{transform:scale(1.06)}.archive-card-content{display:flex;flex:1;flex-direction:column;padding:22px}.archive-card-badges{align-items:center;display:flex;flex-wrap:wrap;gap:10px;margin-bottom:12px}.archive-badge-pill{align-items:center;background:#f8fafc;border:1px solid #e5e7eb;border-radius:999px;color:#475569;display:inline-flex;font-size:.82rem;font-weight:700;height:30px;padding:0 12px;text-decoration:none;white-space:nowrap}.archive-badge-pill--cat{background:rgba(37,211,102,.08);border-color:rgba(37,211,102,.25);color:#128c7e}.archive-badge-pill--cat:hover{background:rgba(37,211,102,.16);color:#128c7e}.archive-card-title{font-size:1.1rem;font-weight:700;line-height:1.4;margin-bottom:10px}.archive-card-title a{color:#1a202c;text-decoration:none;transition:color .2s ease}.archive-card-title a:hover{color:#128c7e}.archive-card-excerpt{color:#64748b;flex:1;font-size:.9rem;line-height:1.6;margin-bottom:15px}.archive-card-footer{align-items:center;border-top:1px solid #f1f5f9;display:flex;gap:12px;justify-content:flex-end;padding-top:14px}.archive-author{align-items:center;display:inline-flex;gap:10px;min-width:0}.archive-author-name{color:#334155;font-size:.95rem;font-weight:700;max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.archive-author-avatar{align-items:center;background:rgba(37,211,102,.12);border:1px solid rgba(37,211,102,.2);border-radius:999px;display:inline-flex;flex:0 0 auto;height:34px;justify-content:center;overflow:hidden;width:34px}.archive-author-avatar img{display:block;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.archive-author-initial{color:#128c7e;font-size:.95rem;font-weight:800;line-height:1}.archive-sidebar{position:relative}.archive-sidebar .sidebar-sticky{display:flex;flex-direction:column;gap:24px}.archive-pagination{display:flex;justify-content:center}.archive-pagination .pagination{display:flex;gap:8px;list-style:none;margin:0;padding:0}.archive-pagination .page-item .page-link{align-items:center;background:#fff;border:1px solid #e5e7eb;border-radius:10px;color:#64748b;display:flex;font-size:.9rem;font-weight:600;height:42px;justify-content:center;text-decoration:none;transition:all .2s ease;width:42px}.archive-pagination .page-item .page-link:hover{background:#f8fafc;border-color:#25d366;color:#128c7e}.archive-pagination .page-item.active .page-link{background:linear-gradient(135deg,#25d366,#128c7e);border-color:transparent;color:#fff}@media(max-width:1024px){.archive-layout{grid-template-columns:1fr}.archive-posts-grid{grid-template-columns:repeat(2,1fr)}.archive-author-name{max-width:160px}}@media(max-width:768px){.archive-hero-section{min-height:250px;padding:100px 0 40px}.archive-hero-title{font-size:1.8rem}.archive-content-section{padding:40px 0 60px}.archive-posts-grid{gap:20px;grid-template-columns:1fr}}.tag-badge{background:rgba(99,102,241,.2);border-color:rgba(99,102,241,.3);color:#818cf8}.post-hero-section{align-items:flex-end;display:flex;min-height:450px;padding:140px 0 80px;position:relative}.post-hero-bg{background:linear-gradient(135deg,#1a202c,#2d3748);background-position:50%;background-size:cover;inset:0;position:absolute}.post-hero-overlay{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.4) 50%,rgba(0,0,0,.2));inset:0;position:absolute}.post-hero-content{max-width:800px;position:relative;z-index:1}.post-categories{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:20px}.post-category-badge{background:linear-gradient(135deg,#25d366,#128c7e);border-radius:50px;color:#fff;font-size:.85rem;font-weight:600;padding:6px 16px;text-decoration:none;transition:all .3s ease}.post-category-badge:hover{box-shadow:0 5px 15px rgba(37,211,102,.4);color:#fff;transform:translateY(-2px)}.post-hero-title{color:#fff;font-size:2.8rem;font-weight:800;line-height:1.3;margin-bottom:20px}.post-hero-meta{display:flex;flex-wrap:wrap;gap:24px}.post-meta-item{align-items:center;color:hsla(0,0%,100%,.8);display:flex;font-size:.95rem;gap:8px}.post-meta-item svg{height:18px;opacity:.7;width:18px}.post-content-section{background:#f8fafc;padding:60px 0 100px}.post-layout{align-items:start;display:grid;gap:40px;grid-template-columns:320px 1fr}.post-article{background:#fff;border-radius:20px;box-shadow:0 4px 25px rgba(0,0,0,.04);padding:40px}.post-toc-card{background:#fff;border:1px solid #eef2f7;border-radius:18px;box-shadow:0 4px 16px rgba(0,0,0,.03);margin-bottom:18px;padding:18px}.post-toc-title{color:#1a202c;font-size:1rem;font-weight:800;margin-bottom:12px}.post-toc{display:flex;flex-direction:column;gap:8px;list-style:none;margin:0;padding:0}.post-toc-item{margin:0}.post-toc-item--sub{padding-inline-start:14px}.post-toc-link{background:#f8fafc;border:1px solid #eef2f7;border-radius:12px;color:#475569;display:block;font-size:.95rem;font-weight:700;padding:10px 12px;text-decoration:none;transition:all .2s ease}.post-toc-link:hover{background:rgba(37,211,102,.06);border-color:rgba(37,211,102,.25);color:#128c7e}.post-toc-link.is-active{background:rgba(37,211,102,.1);border-color:rgba(37,211,102,.35);color:#128c7e}.post-intro{background:linear-gradient(135deg,rgba(37,211,102,.08),rgba(18,140,126,.08));border-radius:8px;border-right:4px solid #25d366;margin-bottom:30px;padding:20px 24px}.post-intro p{color:#374151;font-size:1.1rem;line-height:1.7;margin:0}.post-body{color:#374151;font-size:1.05rem;line-height:1.8}.post-body h2,.post-body h3,.post-body h4{color:#1a202c;margin-bottom:15px;margin-top:30px}.post-body p{margin-bottom:18px}.post-body img{border-radius:12px;height:auto;max-width:100%}.post-tags{align-items:flex-start;border-top:1px solid #e5e7eb;display:flex;flex-wrap:wrap;gap:12px;margin-top:30px;padding-top:30px}.post-tags-label{align-items:center;color:#64748b;display:flex;font-size:.9rem;font-weight:600;gap:6px;white-space:nowrap}.post-tags-label svg{height:16px;width:16px}.post-tags-list{display:flex;flex-wrap:wrap;gap:8px}.post-tag{background:#f1f5f9;border-radius:6px;color:#475569;font-size:.85rem;padding:6px 14px;text-decoration:none;transition:all .2s ease}.post-tag:hover{background:#25d366;color:#fff}.post-share{align-items:center;display:flex;flex-wrap:wrap;gap:16px;margin-top:30px}.post-share-label{color:#374151;font-weight:600}.post-share-buttons{display:flex;gap:10px}.share-btn{align-items:center;border:none;border-radius:10px;cursor:pointer;display:flex;height:42px;justify-content:center;text-decoration:none;transition:all .3s ease;width:42px}.share-btn svg{height:20px;width:20px}.share-facebook{background:#1877f2;color:#fff}.share-twitter{background:#000;color:#fff}.share-whatsapp{background:#25d366;color:#fff}.share-copy{background:#64748b;color:#fff}.share-btn:hover{box-shadow:0 5px 15px rgba(0,0,0,.15);transform:translateY(-3px)}.post-sidebar{position:relative}.post-sidebar .sidebar-sticky{position:sticky;top:calc(var(--wc-fixed-header-h, 0px) + 18px)}.post-sidebar .widget{background:#fff;border-radius:16px;box-shadow:0 4px 15px rgba(0,0,0,.04);margin-bottom:24px;padding:24px}.related-posts-section{border-top:1px solid #e5e7eb;margin-top:60px;padding-top:60px}.related-posts-title{align-items:center;color:#1a202c;display:flex;font-size:1.5rem;font-weight:700;gap:12px;margin-bottom:30px}.related-posts-title svg{color:#25d366;height:28px;width:28px}.related-posts-grid{display:grid;gap:24px;grid-template-columns:repeat(3,1fr)}.related-post-card{background:#fff;border-radius:16px;box-shadow:0 4px 15px rgba(0,0,0,.04);overflow:hidden;transition:all .3s ease}.related-post-card:hover{box-shadow:0 12px 30px rgba(0,0,0,.1);transform:translateY(-5px)}.related-post-image{aspect-ratio:16/10;display:block;overflow:hidden}.related-post-image img{height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .4s ease;width:100%}.related-post-card:hover .related-post-image img{transform:scale(1.05)}.related-post-content{padding:20px}.related-post-meta{color:#94a3b8;display:flex;font-size:.8rem;gap:8px;margin-bottom:10px}.related-post-title{font-size:1rem;font-weight:700;line-height:1.4;margin-bottom:10px}.related-post-title a{color:#1a202c;text-decoration:none;transition:color .2s ease}.related-post-title a:hover{color:#25d366}.related-post-excerpt{color:#64748b;font-size:.9rem;line-height:1.5;margin:0}@media(max-width:1024px){.post-layout{grid-template-columns:1fr}.post-article{grid-row:1}.post-sidebar{grid-row:2}.related-posts-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:768px){.post-hero-section{min-height:350px;padding:120px 0 60px}.post-hero-title{font-size:1.8rem}.post-hero-meta{gap:16px}.post-article{border-radius:16px;padding:24px}.post-toc-card{border-radius:16px;padding:16px}.post-share-buttons{flex-wrap:wrap}.related-posts-grid{grid-template-columns:1fr}}.page-hero-section{align-items:flex-end;display:flex;min-height:300px;padding:120px 0 60px;position:relative}.page-hero-bg{background:linear-gradient(135deg,#1a202c,#2d3748);background-position:50%;background-size:cover;inset:0;position:absolute}.page-hero-overlay{background:linear-gradient(0deg,rgba(0,0,0,.8) 0,rgba(0,0,0,.4) 50%,rgba(0,0,0,.2));inset:0;position:absolute}.page-hero-content{position:relative;text-align:center;width:100%;z-index:1}.page-breadcrumb-nav{margin-bottom:20px}.page-breadcrumb-nav .breadcrumb{background:transparent;justify-content:center;margin:0;padding:0}.page-breadcrumb-nav .breadcrumb-item,.page-breadcrumb-nav .breadcrumb-item a{color:hsla(0,0%,100%,.7);font-size:.9rem}.page-breadcrumb-nav .breadcrumb-item a:hover{color:#25d366}.page-breadcrumb-nav .breadcrumb-item.active{color:#fff}.page-hero-title{color:#fff;font-size:2.5rem;font-weight:800;line-height:1.3;margin:0}.page-content-section{background:#f8fafc;padding:60px 0 100px}.page-content-wrapper{margin:0 auto;max-width:900px}.page-article{background:#fff;border-radius:20px;box-shadow:0 4px 25px rgba(0,0,0,.04);padding:50px}.page-body{color:#374151;font-size:1.05rem;line-height:1.8}.page-body h2,.page-body h3,.page-body h4{color:#1a202c;font-weight:700;margin-bottom:15px;margin-top:30px}.page-body h2{border-bottom:2px solid #f1f5f9;font-size:1.75rem;padding-bottom:15px}.page-body h3{font-size:1.4rem}.page-body p{margin-bottom:18px}.page-body img{border-radius:12px;height:auto;margin:20px 0;max-width:100%}.page-body ol,.page-body ul{margin-bottom:20px;padding-right:20px}.page-body li{margin-bottom:10px}.page-body blockquote{background:linear-gradient(135deg,rgba(37,211,102,.08),rgba(18,140,126,.08));border-radius:8px;border-right:4px solid #25d366;font-style:italic;margin:25px 0;padding:20px 24px}.page-body table{border-collapse:collapse;border-radius:12px;box-shadow:0 2px 15px rgba(0,0,0,.05);margin:25px 0;overflow:hidden;width:100%}.page-body td,.page-body th{border:1px solid #e5e7eb;padding:14px 18px;text-align:right}.page-body th{background:#f8fafc;color:#1a202c;font-weight:600}.page-body a{border-bottom:1px solid transparent;color:#128c7e;text-decoration:none;transition:all .2s ease}.page-body a:hover{border-bottom-color:#25d366;color:#25d366}@media(max-width:768px){.page-hero-section{min-height:220px;padding:100px 0 40px}.page-hero-title{font-size:1.8rem}.page-content-section{padding:40px 0 60px}.page-article{border-radius:16px;padding:30px 20px}.page-body{font-size:1rem}.page-body h2{font-size:1.5rem}}.error-404-container{align-items:center;background:linear-gradient(135deg,#f5f7fa,#f0f3f7);display:flex;justify-content:center;min-height:70vh;padding:80px 0}.error-404-content{margin:0 auto;max-width:600px;padding:0 20px;text-align:center}.error-404-icon{margin-bottom:30px;position:relative}.error-404-number{color:var(--primary-color,#1d5f6f);font-size:180px;font-weight:700;line-height:1;margin:0;opacity:.15;position:relative}.error-404-illustration{height:120px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:120px}.house-icon{background:var(--primary-color,#1d5f6f);border-radius:20px;height:100%;opacity:.9;position:relative;width:100%}.house-icon:before{border-bottom:50px solid var(--primary-color,#1d5f6f);border-left:60px solid transparent;border-right:60px solid transparent;content:"";height:0;left:0;position:absolute;top:-40px;width:0}.house-icon:after{color:#fff;content:"?";font-size:48px;font-weight:700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.error-404-title{color:#2c3e50;font-size:32px;font-weight:600;line-height:1.3;margin-bottom:20px}.error-404-message{color:#718096;font-size:18px;line-height:1.6;margin-bottom:40px}.error-404-actions{display:flex;flex-wrap:wrap;gap:15px;justify-content:center;margin-bottom:50px}.error-404-btn{align-items:center;border:2px solid transparent;border-radius:8px;display:inline-flex;font-size:16px;font-weight:500;gap:8px;padding:14px 28px;text-decoration:none;transition:all .3s ease}.error-404-btn-primary,.error-404-btn-primary:hover{background:var(--primary-color,#1d5f6f);color:#fff}.error-404-btn-primary:hover{box-shadow:0 10px 20px rgba(29,95,111,.2);opacity:.9;transform:translateY(-2px)}@media(max-width:768px){.error-404-container{padding:60px 0}.error-404-number{font-size:120px}.error-404-illustration{height:80px;width:80px}.house-icon:before{border-bottom-width:35px;border-left-width:40px;border-right-width:40px;top:-28px}.house-icon:after{font-size:32px}.error-404-title{font-size:24px}.error-404-message{font-size:16px}.error-404-actions{align-items:stretch;flex-direction:column}.error-404-btn{justify-content:center}}@media(max-width:480px){.error-404-number{font-size:100px}.error-404-illustration{height:60px;width:60px}.house-icon:before{border-bottom-width:25px;border-left-width:30px;border-right-width:30px;top:-20px}.house-icon:after{font-size:24px}}.wc-contact-section{padding:3rem 0}.wc-contact-grid{display:grid;gap:2rem;grid-template-columns:1fr 1.3fr;margin:0 auto;max-width:1100px}.wc-contact-card{background:var(--white);border:1px solid var(--gray-200);border-radius:1.25rem;box-shadow:0 4px 24px rgba(0,0,0,.06);padding:2rem}.wc-contact-card--info{background:linear-gradient(135deg,var(--primary) 0,var(--primary-darker,var(--primary)) 100%);color:var(--white)}.wc-contact-card__icon{align-items:center;background:transparent;border:1px solid;border-radius:50%;display:flex;height:56px;justify-content:center;margin-bottom:1.25rem;width:56px}.wc-contact-card--info .wc-contact-card__icon{background:transparent}.wc-contact-card--form .wc-contact-card__icon{background:var(--primary);border-color:var(--primary);color:var(--white)}.wc-contact-card__icon svg{height:26px;width:26px}.wc-contact-card__title{font-size:1.5rem;font-weight:800;margin:0 0 .5rem}.wc-contact-card__subtitle{font-size:.95rem;line-height:1.6;margin:0 0 1.5rem;opacity:.85}.wc-contact-info-list{display:flex;flex-direction:column;gap:1.25rem;margin-bottom:1.5rem}.wc-contact-info-item{align-items:flex-start;display:flex;gap:1rem}.wc-contact-info-item__icon{align-items:center;background:hsla(0,0%,100%,.15);border-radius:10px;display:flex;height:40px;justify-content:center;min-width:40px;width:40px}.wc-contact-info-item__icon svg{height:20px;width:20px}.wc-contact-info-item__content{display:flex;flex-direction:column;gap:.15rem}.wc-contact-info-item__label{font-size:.8rem;letter-spacing:.5px;opacity:.75;text-transform:uppercase}.wc-contact-info-item__value{font-size:1rem;font-weight:700}.wc-contact-info-item__value--link{color:inherit;text-decoration:none;transition:opacity .2s}.wc-contact-info-item__value--link:hover{opacity:.8;text-decoration:underline}.wc-contact-socials{border-top:1px solid;display:flex;gap:.75rem;margin-top:1.5rem;padding-top:1.5rem}.wc-contact-social-link{align-items:center;background:transparent;border:1px solid;border-radius:50%;color:inherit;display:flex;font-size:1.1rem;height:42px;justify-content:center;transition:background .2s,transform .2s;width:42px}.wc-contact-social-link:hover{background:var(--white);color:var(--primary);transform:translateY(-2px)}.wc-contact-form{display:grid;gap:1rem;grid-template-columns:repeat(2,minmax(0,1fr))}.wc-contact-form .contact-form-row{display:flex;flex-wrap:wrap;gap:1rem;margin-left:0!important;margin-right:0!important;width:100%}.wc-contact-form .contact-column-12,.wc-contact-form .contact-column-6,.wc-contact-form [class*=contact-column-]{float:none!important;margin-bottom:0!important;padding-left:0!important;padding-right:0!important}.wc-contact-form .contact-column-12{flex:1 1 100%;width:100%}.wc-contact-form .contact-column-6{flex:1 1 calc(50% - 0.5rem);width:100%}.wc-contact-form .contact-form-group{margin-bottom:0!important}@media(max-width:600px){.wc-contact-form .contact-column-6{flex-basis:100%}}.wc-contact-field{margin:0;min-width:0}.wc-contact-field--full{grid-column:1/-1}.wc-contact-field--submit{grid-column:1/-1;margin-top:.25rem}.wc-contact-input{background:var(--gray-50);border:2px solid var(--gray-200);border-radius:.75rem;display:block;font-family:inherit;font-size:1rem;padding:.9rem 1rem;transition:border-color .2s;width:100%}.wc-contact-input:focus{background:var(--white);border-color:var(--primary);outline:none}.wc-contact-input::-moz-placeholder{color:var(--gray-400)}.wc-contact-input::placeholder{color:var(--gray-400)}textarea.wc-contact-input{min-height:120px;resize:vertical}.wc-contact-submit{background:var(--primary)!important;border:1px solid var(--primary)!important;border-radius:.75rem;color:var(--white)!important;cursor:pointer;font-family:inherit;font-size:1rem;font-weight:700;padding:1rem 2rem;transition:transform .2s,box-shadow .2s;width:100%}.wc-contact-submit:hover{box-shadow:0 8px 20px rgba(29,95,111,.25);transform:translateY(-2px)}.wc-contact-submit:active{transform:translateY(0)}.wc-contact-field.has-error .wc-contact-input{border-color:var(--bs-danger,var(--primary))}.wc-contact-field .help-block{color:var(--bs-danger,var(--primary));font-size:.85rem;margin-top:.35rem}@media(max-width:900px){.wc-contact-grid{gap:1.5rem;grid-template-columns:1fr}.wc-contact-card--info{order:2}.wc-contact-card--form{order:1}}@media(max-width:600px){.wc-contact-section{padding:1.5rem 0}.wc-contact-card{border-radius:1rem;padding:1.5rem}.wc-contact-card__title{font-size:1.25rem}.wc-contact-field{grid-column:1/-1}.wc-contact-input{padding:.8rem}.wc-contact-socials{flex-wrap:wrap;justify-content:center}}

/* WhatsCRM Widgets (sidebar + footer) */

.wc-widget {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

/* Sidebar spacing: keep widgets separated (post + archive) */
/* Sticky sidebar (accounts for fixed site header) */
.sidebar-sticky {
    position: sticky;
    top: calc(var(--wc-fixed-header-h, 0px) + 18px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Prevent double spacing from legacy widget margins (any sticky sidebar) */
.sidebar-sticky > .widget {
    margin-bottom: 0 !important;
}

/* Sidebar spacing: keep widgets separated (post + archive) */
.post-sidebar .sidebar-sticky,
.archive-sidebar .sidebar-sticky {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Prevent double spacing from theme legacy widget margins */
.post-sidebar .widget,
.archive-sidebar .widget {
    margin-bottom: 0 !important;
}

/* Blog shell (blog index with sidebar layout) */
.wc-blog-shell {
    background: #f8fafc;
    padding-bottom: 90px;
}

.wc-blog-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.wc-blog-main {
    min-width: 0;
}

.wc-blog-sidebar {
    min-width: 0;
}

/* When a view includes its own wc-blog-container inside the blog shell container, avoid double gutters */
.wc-blog-shell .wc-blog-container .wc-blog-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 1024px) {
    .wc-blog-grid {
        grid-template-columns: 1fr;
    }
}

.wc-widget__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 14px;
}

.wc-widget__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wc-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid #eef2f7;
    background: #f8fafc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wc-post-item:hover {
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.25);
}

.wc-post-item__thumb {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.wc-post-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wc-post-item__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.wc-post-item__title {
    color: #1a202c;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wc-post-item__sub {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 700;
}

.wc-cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-cat-pill {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.25);
    background: rgba(37, 211, 102, 0.08);
    color: #128C7E;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wc-cat-pill:hover {
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.35);
    color: #128C7E;
}

@media (max-width: 768px) {
    .wc-widget {
        padding: 16px;
    }

    .wc-post-item__thumb {
        width: 50px;
        height: 50px;
    }
}

/* Footer compatibility: if a widget is rendered in .footer-links, avoid the card look */
.footer-links .wc-widget {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
}

.footer-links .wc-post-item {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-links .wc-post-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}

.footer-links .wc-post-item__title,
.footer-links .wc-widget__title {
    color: inherit;
}

.footer-links .wc-post-item__sub {
    color: rgba(255, 255, 255, 0.6);
}

/* Blog layout helpers (edge-to-edge) */
.wc-blog-container,
.wc-blog-container.container {
    max-width: none !important;
    width: 100%;
    padding-left: clamp(10px, 2.2vw, 28px) !important;
    padding-right: clamp(10px, 2.2vw, 28px) !important;
}

/* Compact blog header as a widget */
.wc-blog-header {
    padding: calc(var(--wc-fixed-header-h, 0px) + 12px) 0 12px;
    background: #f8fafc;
}

/* Unified blog page background */
.blog-list-section,
.post-content-section,
.archive-content-section {
    background: #f8fafc !important;
}

/* If a page renders the list/content section without wc-blog-header above it,
   add safe spacing for the fixed site header. */
.blog-list-section {
    padding-top: calc(var(--wc-fixed-header-h, 0px) + 10px) !important;
}

.wc-blog-header + .blog-list-section {
    padding-top: 10px !important;
}

.post-content-section {
    padding-top: calc(var(--wc-fixed-header-h, 0px) + 24px) !important;
}

.wc-blog-header + .post-content-section {
    padding-top: 24px !important;
}

.archive-content-section {
    padding-top: calc(var(--wc-fixed-header-h, 0px) + 24px) !important;
}

.wc-blog-header + .archive-content-section {
    padding-top: 24px !important;
}

.wc-widget--blog-header {
    border-radius: 18px;
    padding: 16px 18px;
}

/* Breadcrumb inside compact header */
.wc-widget--blog-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 6px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.wc-widget--blog-header .breadcrumb-item {
    float: none;
}

.wc-widget--blog-header .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: #94a3b8;
    padding: 0 6px;
}

.wc-widget--blog-header .breadcrumb-item,
.wc-widget--blog-header .breadcrumb-item a {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.wc-widget--blog-header .breadcrumb-item a:hover {
    color: #128C7E;
}

.wc-widget--blog-header .breadcrumb-item.active {
    color: #111827;
}

.wc-blog-header__title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #111827;
    margin: 0;
    line-height: 1.35;
}

.wc-blog-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    color: #64748b;
    font-weight: 700;
    font-size: 0.9rem;
}

.wc-blog-search {
    position: relative;
}

.wc-blog-search__icon {
    position: absolute;
    inset-inline-start: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #94a3b8;
    pointer-events: none;
}

.wc-blog-search__icon svg {
    width: 18px;
    height: 18px;
}

.wc-blog-search__input {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 0 18px;
    padding-inline-start: 48px;
    font-size: 1rem;
    outline: none;
    background: #fff;
}

.wc-blog-search__input:focus {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
}

/* Author widget (matches screenshot: icon + label/name + avatar) */
.wc-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #eef2f7;
    border-radius: 999px;
    background: #fff;
}

.wc-widget--author {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
}

/* Content surfaces: subtle card look for main content + legacy widgets */
.post-article {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.post-article {
    padding: 18px;
}

.archive-main {
    padding: 18px;
}

.wc-blog-sidebar .widget,
.post-sidebar .widget,
.archive-sidebar .widget {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.wc-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.wc-author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    text-align: center;
    flex: 1;
}

.wc-author-label {
    color: #64748b;
    font-weight: 800;
    font-size: 0.9rem;
}

.wc-author-name {
    color: #111827;
    font-weight: 900;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.wc-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Avatar fallback: show initial if img is missing/broken */
.wc-author-avatar .wc-author-initial {
    display: none;
}

.wc-author-avatar.is-fallback .wc-author-initial {
    display: inline;
}

.wc-author-initial {
    font-weight: 900;
    color: #128C7E;
    font-size: 1.05rem;
}

/* TOC widget (list style like screenshot) */
.wc-widget--toc .wc-widget__title {
    text-align: center;
    margin-bottom: 12px;
}

.wc-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wc-toc__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.wc-toc__item--sub {
    padding-inline-start: 18px;
}

.wc-toc__dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid #94a3b8;
    flex: 0 0 auto;
    margin-top: 2px;
}

.wc-toc__link {
    color: #334155;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.3;
    flex: 1;
}

.wc-toc__link:hover {
    color: #128C7E;
}

.wc-toc__link.is-active {
    color: #128C7E;
}

.wc-toc__item.is-active .wc-toc__dot {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.12);
}

/* Lists inside article content */
.post-body ul,
.post-body ol {
    padding-inline-start: 1.2rem;
    margin: 1rem 0;
}

.post-body li {
    margin: 0.45rem 0;
    line-height: 1.9;
}

/* Blog/Archive author avatar fallback (broken/missing image) */
.blog-author-avatar .blog-author-initial,
.archive-author-avatar .archive-author-initial {
    display: none;
}

.blog-author-avatar.is-fallback .blog-author-initial,
.archive-author-avatar.is-fallback .archive-author-initial {
    display: inline;
}

@media (max-width: 768px) {
    .wc-blog-header {
        padding: calc(var(--wc-fixed-header-h, 0px) + 10px) 0 10px;
    }

    .wc-widget--blog-header {
        padding: 14px 16px;
    }

    .wc-blog-header__title {
        font-size: 1.2rem;
    }

    .wc-blog-search__input {
        height: 50px;
    }
}

.auth-page{align-items:center;background:linear-gradient(135deg,#f8fafc,#e2e8f0);display:flex;justify-content:center;min-height:calc(100vh - var(--wc-fixed-header-h, 0px));padding:calc(var(--wc-fixed-header-h, 0px) + 40px) 20px 40px;position:relative}.auth-page:before{background:linear-gradient(135deg,#25d366,#128c7e);clip-path:ellipse(80% 100% at 50% 0);content:"";height:300px;left:0;position:absolute;right:0;top:0}.auth-container{max-width:440px;position:relative;width:100%;z-index:1}.auth-card{background:#fff;border-radius:24px;box-shadow:0 20px 60px rgba(0,0,0,.1);padding:40px}.auth-logo{margin-bottom:10px;text-align:center}.auth-logo img{height:60px;width:auto}.auth-header{margin-bottom:30px;text-align:center}.auth-title{color:#1a202c;font-size:1.75rem;font-weight:700;margin-bottom:8px}.auth-subtitle{color:#64748b;font-size:.95rem}.auth-form{gap:20px}.auth-form,.form-group{display:flex;flex-direction:column}.form-group{gap:8px}.form-group label{color:#374151;font-size:.9rem;font-weight:600}.input-wrapper{align-items:center;display:flex;position:relative}.input-wrapper svg{color:#9ca3af;height:20px;pointer-events:none;position:absolute;right:14px;width:20px}.input-wrapper input{background:#f9fafb;border:2px solid #e5e7eb;border-radius:12px;font-size:1rem;padding:14px 45px 14px 14px;transition:all .3s ease;width:100%}.input-wrapper input:focus{background:#fff;border-color:#25d366;box-shadow:0 0 0 4px rgba(37,211,102,.1);outline:none}.toggle-password{background:none;border:none;cursor:pointer;left:14px;padding:0;position:absolute}.toggle-password svg{color:#9ca3af;height:20px;position:static;width:20px}.error-text{color:#ef4444;font-size:.85rem}.form-options{align-items:center;display:flex;justify-content:space-between}.checkbox-wrapper{align-items:center;color:#4b5563;cursor:pointer;display:flex;font-size:.9rem;gap:8px}.checkbox-wrapper input{display:none}.checkmark{border:2px solid #d1d5db;border-radius:6px;height:20px;position:relative;transition:all .2s ease;width:20px}.checkbox-wrapper input:checked+.checkmark{background:#25d366;border-color:#25d366}.checkbox-wrapper input:checked+.checkmark:after{border:solid #fff;border-width:0 2px 2px 0;content:"";height:10px;left:6px;position:absolute;top:2px;transform:rotate(45deg);width:5px}.forgot-link{color:#25d366;font-size:.9rem;text-decoration:none;transition:color .2s ease}.forgot-link:hover{color:#128c7e}.auth-submit{align-items:center;background:linear-gradient(135deg,#25d366,#128c7e);border:none;border-radius:12px;box-shadow:0 4px 15px rgba(37,211,102,.3);color:#fff;cursor:pointer;display:flex;font-size:1rem;font-weight:600;gap:10px;justify-content:center;padding:16px;transition:all .3s ease}.auth-submit:hover{box-shadow:0 8px 25px rgba(37,211,102,.4);transform:translateY(-2px)}.auth-submit svg{height:20px;width:20px}.auth-divider{align-items:center;color:#9ca3af;display:flex;font-size:.85rem;gap:15px}.auth-divider:after,.auth-divider:before{background:#e5e7eb;content:"";flex:1;height:1px}.social-login-grid{display:flex;flex-direction:column;gap:12px}.social-btn-wrapper{width:100%}.social-btn-wrapper>div{width:100%!important}.social-btn{align-items:center;background:#fff;border:2px solid #e5e7eb;border-radius:12px;color:#374151;cursor:pointer;display:flex;font-size:.95rem;font-weight:600;gap:12px;justify-content:center;padding:14px 20px;text-decoration:none;transition:all .3s ease;width:100%}.social-btn:hover{box-shadow:0 4px 12px rgba(0,0,0,.1);transform:translateY(-2px)}.social-btn svg{height:22px;width:22px}.social-btn-facebook{background:#1877f2;border-color:#1877f2;color:#fff}.social-btn-facebook:hover{background:#166fe5;border-color:#166fe5}.social-btn-apple{background:#000;border-color:#000;color:#fff}.social-btn-apple:hover{background:#333;border-color:#333}.auth-alert{align-items:center;border-radius:12px;display:flex;font-size:.9rem;gap:10px;padding:14px}.auth-alert svg{flex-shrink:0;height:20px;width:20px}.auth-alert.error{background:#fef2f2;border:1px solid #fecaca;color:#dc2626}.auth-alert.success{background:#f0fdf4;border:1px solid #bbf7d0;color:#16a34a}.auth-footer{border-top:1px solid #e5e7eb;margin-top:25px;padding-top:25px;text-align:center}.auth-footer p{color:#6b7280;font-size:.95rem}.auth-footer a{color:#25d366;font-weight:600;text-decoration:none}.auth-footer a:hover{color:#128c7e}.back-home{align-items:center;color:#fff;display:flex;font-size:.9rem;gap:8px;justify-content:center;margin-top:20px;text-decoration:none;transition:opacity .2s ease}.back-home:hover{opacity:.8}.back-home svg{height:18px;width:18px}@media(max-width:480px){.auth-card{padding:30px 20px}.auth-title{font-size:1.5rem}.form-options{align-items:flex-start;flex-direction:column;gap:15px}}@media(max-height:700px),(max-width:768px){.auth-page{align-items:flex-start}}

.auth-page{align-items:center;background:linear-gradient(135deg,#f8fafc,#e2e8f0);display:flex;justify-content:center;min-height:calc(100vh - var(--wc-fixed-header-h, 0px));padding:calc(var(--wc-fixed-header-h, 0px) + 40px) 20px 40px;position:relative}.auth-page:before{background:linear-gradient(135deg,#25d366,#128c7e);clip-path:ellipse(80% 100% at 50% 0);content:"";height:350px;left:0;position:absolute;right:0;top:0}.auth-container{max-width:480px;position:relative;width:100%;z-index:1}.auth-card{background:#fff;border-radius:24px;box-shadow:0 20px 60px rgba(0,0,0,.1);padding:40px}.auth-logo{margin-bottom:15px;text-align:center}.auth-logo img{height:55px;width:auto}.auth-header{margin-bottom:25px;text-align:center}.auth-title{color:#1a202c;font-size:1.6rem;font-weight:700;margin-bottom:8px}.auth-subtitle{color:#64748b;font-size:.95rem}.auth-form{gap:18px}.auth-form,.form-group{display:flex;flex-direction:column}.form-group{gap:6px}.form-group label{color:#374151;font-size:.9rem;font-weight:600}.optional{color:#9ca3af;font-size:.8rem;font-weight:400}.input-wrapper{align-items:center;display:flex;position:relative}.input-wrapper svg{color:#9ca3af;height:20px;pointer-events:none;position:absolute;right:14px;width:20px}.input-wrapper input{background:#f9fafb;border:2px solid #e5e7eb;border-radius:12px;font-size:1rem;padding:14px 45px 14px 14px;transition:all .3s ease;width:100%}.input-wrapper input:focus{background:#fff;border-color:#25d366;box-shadow:0 0 0 4px rgba(37,211,102,.1);outline:none}.toggle-password{background:none;border:none;cursor:pointer;left:14px;padding:0;position:absolute}.toggle-password svg{color:#9ca3af;height:20px;position:static;width:20px}.error-text{color:#ef4444;font-size:.85rem}.password-strength{background:#e5e7eb;border-radius:2px;height:4px;margin-top:5px;overflow:hidden}.strength-bar{border-radius:2px;height:100%;transition:all .3s ease;width:0}.strength-weak{background:#ef4444;width:25%}.strength-fair{background:#f59e0b;width:50%}.strength-good{background:#3b82f6;width:75%}.strength-strong{background:#22c55e;width:100%}.checkbox-wrapper{align-items:flex-start;color:#4b5563;cursor:pointer;display:flex;font-size:.85rem;gap:10px;line-height:1.4}.checkbox-wrapper input{display:none}.checkmark{border:2px solid #d1d5db;border-radius:6px;height:20px;margin-top:2px;min-width:20px;position:relative;transition:all .2s ease;width:20px}.checkbox-wrapper input:checked+.checkmark{background:#25d366;border-color:#25d366}.checkbox-wrapper input:checked+.checkmark:after{border:solid #fff;border-width:0 2px 2px 0;content:"";height:10px;left:6px;position:absolute;top:2px;transform:rotate(45deg);width:5px}.checkbox-wrapper a{color:#25d366;text-decoration:none}.checkbox-wrapper a:hover{text-decoration:underline}.auth-submit{align-items:center;background:linear-gradient(135deg,#25d366,#128c7e);border:none;border-radius:12px;box-shadow:0 4px 15px rgba(37,211,102,.3);color:#fff;cursor:pointer;display:flex;font-size:1rem;font-weight:600;gap:10px;justify-content:center;padding:16px;transition:all .3s ease}.auth-submit:hover{box-shadow:0 8px 25px rgba(37,211,102,.4);transform:translateY(-2px)}.auth-submit svg{height:20px;width:20px}.auth-divider{align-items:center;color:#9ca3af;display:flex;font-size:.85rem;gap:15px}.auth-divider:after,.auth-divider:before{background:#e5e7eb;content:"";flex:1;height:1px}.social-login-grid{display:flex;flex-direction:column;gap:12px}.social-btn-wrapper{width:100%}.social-btn{align-items:center;background:#f9fafb;border:2px solid #e5e7eb;border-radius:12px;color:#374151;cursor:pointer;display:flex;font-size:.95rem;font-weight:500;gap:10px;justify-content:center;padding:14px 20px;text-decoration:none;transition:all .3s ease;width:100%}.social-btn:hover{background:#f3f4f6;border-color:#d1d5db;transform:translateY(-1px)}.social-btn svg{height:20px;width:20px}.social-btn-facebook{background:#1877f2;border-color:#1877f2;color:#fff}.social-btn-facebook:hover{background:#166fe5;border-color:#166fe5}.social-btn-apple{background:#000;border-color:#000;color:#fff}.social-btn-apple:hover{background:#1a1a1a;border-color:#1a1a1a}.auth-alert{align-items:center;border-radius:12px;display:flex;font-size:.9rem;gap:10px;padding:14px}.auth-alert svg{flex-shrink:0;height:20px;width:20px}.auth-alert.error{background:#fef2f2;border:1px solid #fecaca;color:#dc2626}.auth-footer{border-top:1px solid #e5e7eb;margin-top:20px;padding-top:20px;text-align:center}.auth-footer p{color:#6b7280;font-size:.95rem}.auth-footer a{color:#25d366;font-weight:600;text-decoration:none}.auth-footer a:hover{color:#128c7e}.back-home{align-items:center;color:#fff;display:flex;font-size:.9rem;gap:8px;justify-content:center;margin-top:20px;text-decoration:none;transition:opacity .2s ease}.back-home:hover{opacity:.8}.back-home svg{height:18px;width:18px}@media(max-width:480px){.auth-card{padding:30px 20px}.auth-title{font-size:1.4rem}}@media(max-height:700px),(max-width:768px){.auth-page{align-items:flex-start}}
