.elementor-4607 .elementor-element.elementor-element-67acd14{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4607 .elementor-element.elementor-element-d11753a{width:100%;max-width:100%;}.elementor-4607 .elementor-element.elementor-element-f36e30f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4607 .elementor-element.elementor-element-6da09f7.elementor-element{--align-self:center;}:root{--page-title-display:none;}/* Start custom CSS */:root {
    /* Color Palette */
    --pm-primary: #0f172a;
    --pm-primary-hover: #1e293b;
    --pm-accent: #6366f1; /* purple-blue */
    --pm-accent-hover: #4f46e5;
    --pm-accent-glow: rgba(99, 102, 241, 0.5);
    --pm-gradient-primary: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    --pm-gradient-warm: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
    
    --pm-surface: #ffffff;
    --pm-surface-alt: #f8fafc;
    --pm-surface-glass: rgba(255, 255, 255, 0.6);
    --pm-surface-glass-border: rgba(255, 255, 255, 0.4);
    
    --pm-text-main: #0f172a;
    --pm-text-muted: #64748b;
    
    --pm-border: #e2e8f0;
    --pm-border-light: #f1f5f9;
    
    --pm-success: #10b981;
    --pm-warning: #f59e0b;

    /* Metrics */
    --pm-radius-sm: 8px;
    --pm-radius-md: 12px;
    --pm-radius-lg: 20px;
    --pm-radius-xl: 32px;
    --pm-radius-pill: 9999px;
    
    --pm-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --pm-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --pm-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
    --pm-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --pm-shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    
    --pm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --pm-container-width: 1280px;
    --pm-spacing-section: 120px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--pm-text-main);
    background-color: var(--pm-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.pm-container {
    width: 100%;
    max-width: var(--pm-container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.pm-section {
    padding: var(--pm-spacing-section) 0;
    position: relative;
    z-index: 2;
}

.pm-bg-light {
    background-color: var(--pm-surface-alt);
}

.pm-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.pm-text-center {
    text-align: center;
}

/* Buttons */
.pm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--pm-radius-md);
    cursor: pointer;
    transition: var(--pm-transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

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

.pm-btn-gradient {
    background: var(--pm-gradient-primary) !important;
    color: white !important;
    border: none !important;
}
.pm-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--pm-accent-glow);
}

.pm-btn-outline {
    background-color: transparent;
    border: 1px solid var(--pm-border);
    color: var(--pm-text-main);
}
.pm-btn-outline:hover {
    border-color: var(--pm-primary);
    background-color: var(--pm-surface-alt);
}

.pm-btn-text {
    background: transparent;
    color: var(--pm-primary);
    padding: 8px 16px;
    font-weight: 600;
}
.pm-btn-text:hover {
    gap: 12px;
    background: var(--pm-surface-alt);
}

.pm-btn-glow {
    background: white;
    color: var(--pm-accent);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transition: var(--pm-transition);
}
.pm-btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

.pm-btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.pm-btn-full {
    width: 100%;
}

/* Badges */
.pm-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--pm-radius-sm);
}

.pm-badge-free {
    background-color: var(--pm-surface-alt);
    color: #475569;
    border: 1px solid var(--pm-border);
}

.pm-badge-premium {
    background: var(--pm-gradient-primary);
    color: white;
    border: 1px solid transparent;
}

.pm-badge-trending {
    background: var(--pm-gradient-warm);
    color: white;
}

/* Section Headers */
.pm-section-header {
    margin-bottom: 56px;
}

.pm-section-title {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #0f172a;
}

.pm-section-subtitle {
    font-size: 1.125rem;
    color: var(--pm-text-muted);
    max-width: 600px;
}

.pm-text-center .pm-section-subtitle {
    margin: 0 auto;
}

/* --- HERO SECTION --- */
.pm-hero {
    position: relative;
    padding: 40px 0 100px; /* Reduced top spacing for header fix */
    background: #f8fafc;
    overflow: hidden;
}

.pm-hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pm-shape {
    position: absolute;
    border-radius: var(--pm-radius-pill);
    filter: blur(80px);
    opacity: 0.4;
    animation: pm-float 15s ease-in-out infinite alternate;
}

.pm-shape-1 {
    width: 600px; height: 600px;
    top: -200px; left: -100px;
    background: linear-gradient(135deg, #60a5fa, #818cf8);
}

.pm-shape-2 {
    width: 500px; height: 500px;
    bottom: -150px; right: -50px;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    animation-delay: -5s;
}

.pm-shape-3 {
    width: 300px; height: 300px;
    top: 30%; left: 60%;
    background: linear-gradient(135deg, #34d399, #38bdf8);
    animation-delay: -10s;
    border-radius: 50%;
}

.pm-glass-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

.pm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

/* Live pulse dot */
.pm-pill-badge-wrap {
    margin-bottom: 24px;
}
.pm-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--pm-surface-glass-border);
    border-radius: var(--pm-radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pm-primary);
    box-shadow: var(--pm-shadow-md);
}
.pm-pulse-dot {
    width: 8px; height: 8px;
    background-color: var(--pm-success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pm-pulse-anim 2s infinite;
}
@keyframes pm-pulse-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pm-hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #0f172a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pm-hero-subtitle {
    font-size: 1.25rem;
    color: var(--pm-text-muted);
    margin-bottom: 48px;
    max-width: 640px;
    margin-inline: auto;
}

/* ADVANCED SEARCH BAR (Most Important) */
.pm-search-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

/* BRAND NEW SEARCH BAR REPLACEMENT */
.pm-new-premium-search {
    position: relative;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(255,255,255,0.7), rgba(255,255,255,0.3)), linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(139, 92, 246, 0.05)); /* Glassmorphism + light purple tint */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
    padding: 6px;
}

.pm-new-premium-search:focus-within {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.25), 0 10px 40px -10px rgba(139, 92, 246, 0.15);
}

.pm-nps-inner {
    display: flex;
    align-items: center;
    border-radius: 50px;
}

.pm-nps-icon-wrap {
    padding-left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-nps-icon {
    width: 24px;
    height: 24px;
    color: #475569;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.pm-new-premium-search:focus-within .pm-nps-icon {
    opacity: 0.8;
    color: #8b5cf6;
}

.pm-nps-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 18px 24px !important;
    margin: 0 !important;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: inherit;
    outline: none !important;
    color: var(--pm-text-main) !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
.pm-nps-input::placeholder {
    color: #94a3b8;
}

/* Fix autofill */
.pm-nps-input:-webkit-autofill,
.pm-nps-input:-webkit-autofill:hover, 
.pm-nps-input:-webkit-autofill:focus, 
.pm-nps-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--pm-text-main) !important;
}

.pm-nps-submit {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pm-nps-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}
.pm-nps-submit:active {
    transform: scale(0.96);
}

.pm-spinner {
    animation: pm-spin 1s linear infinite;
}
@keyframes pm-spin {
    100% { transform: rotate(360deg); }
}

.pm-search-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--pm-text-muted);
    flex-wrap: wrap;
    font-weight: 500;
}

.pm-tag {
    background: white;
    border: 1px solid var(--pm-border);
    padding: 6px 16px;
    border-radius: var(--pm-radius-pill);
    color: var(--pm-text-main);
    cursor: pointer;
    transition: var(--pm-transition);
    font-size: 0.875rem;
    font-weight: 500;
}

.pm-tag:hover {
    border-color: var(--pm-accent) !important;
    color: var(--pm-accent) !important;
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-sm) !important;
}

.pm-tag:focus, .pm-tag:active, .pm-nps-input:focus, .pm-nps-input:active {
    outline: none !important;
    box-shadow: none !important;
}

/* --- GRID CARDS --- */
/* Security rule: Disable dragging and selection on pattern images */
.pm-card-img-wrap img, .pm-modal-img, .pm-inspire-card img, .pm-category-card {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
}

.pm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.pm-grid-centered {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1040px;
    margin: 0 auto;
    justify-content: center;
}

.pm-card {
    position: relative;
    background: var(--pm-surface);
    border-radius: var(--pm-radius-lg);
    overflow: hidden;
    box-shadow: var(--pm-shadow-md);
    transition: var(--pm-transition);
    border: 1px solid var(--pm-border-light);
    display: flex;
    flex-direction: column;
}

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

.pm-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1f5f9;
}

.pm-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pm-card:hover .pm-card-img-wrap img {
    transform: scale(1.08); /* Zoom slightly */
}

/* Beautiful hover overlay for cards */
.pm-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: var(--pm-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.pm-card:hover .pm-card-overlay {
    opacity: 1;
}

.pm-card-action {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--pm-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--pm-shadow-lg);
}

.pm-card-action:hover {
    background: var(--pm-accent);
    color: white;
    transform: scale(1.1);
}

.pm-card:hover .pm-card-action {
    transform: translateY(0) scale(1);
}
.pm-card-action:nth-child(2) {
    transition-delay: 0.05s;
}

.pm-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.pm-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
    position: relative;
    z-index: 2;
}

.pm-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pm-card-cat {
    font-size: 0.875rem;
    color: var(--pm-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pm-text-main);
}

/* --- DYNAMIC SEARCH SECTION --- */
.pm-search-results-section {
    background: var(--pm-surface);
    border-top: 1px solid var(--pm-border-light);
    padding-top: 80px;
}

.pm-results-count {
    color: var(--pm-text-muted);
    font-weight: 500;
}

.pm-empty-state {
    text-align: center;
    padding: 100px 20px;
    background: var(--pm-surface-alt);
    border-radius: var(--pm-radius-xl);
    border: 2px dashed var(--pm-border);
}

.pm-empty-icon-wrap {
    width: 80px; height: 80px;
    background: white;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--pm-shadow-md);
    margin-bottom: 24px;
}

.pm-empty-icon {
    width: 40px; height: 40px;
    color: #94a3b8;
}

.pm-empty-state h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.pm-empty-state p {
    color: var(--pm-text-muted);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

/* Skeletons */
.pm-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: pm-loading 1.5s infinite;
}

@keyframes pm-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pm-skeleton-card .pm-card-img-wrap { background: #f1f5f9; }
.pm-skeleton-text { height: 20px; border-radius: 4px; margin-bottom: 8px; }
.pm-skeleton-title { width: 70%; height: 28px; }
.pm-skeleton-meta { width: 30%; }

/* --- TRENDING GRID (UPGRADE) --- */
.pm-trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 24px;
}

.pm-trending-grid .pm-card {
    height: 100%;
}
.pm-trending-grid .pm-card-img-wrap {
    height: 100%; 
    aspect-ratio: auto;
}
.pm-card-info-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
    transform: translateY(0);
}
.pm-card-info-overlay .pm-card-cat { color: #cbd5e1; }
.pm-card-info-overlay .pm-card-title { color: white; }

.pm-trending-feat {
    grid-column: span 2;
    grid-row: span 2;
}
.pm-trending-feat .pm-card-title {
    font-size: 2rem;
}


/* --- HOW IT WORKS (MOTION) --- */
.pm-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.pm-step-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pm-step-icon-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    background: white;
    border-radius: 30%;
    transform: rotate(45deg);
    box-shadow: var(--pm-shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--pm-transition);
}

.pm-step-icon {
    width: 36px;
    height: 36px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pm-primary);
    transform: rotate(-45deg); /* Correct icon rotation */
    position: relative;
    z-index: 2;
}

.pm-step-glow {
    position: absolute;
    inset: 0;
    background: var(--pm-gradient-primary);
    opacity: 0;
    border-radius: inherit;
    transition: var(--pm-transition);
    z-index: 1;
}

.pm-step-card:hover .pm-step-icon-wrap {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 35px var(--pm-accent-glow);
}

.pm-step-card:hover .pm-step-glow { opacity: 1; }
.pm-step-card:hover .pm-step-icon { color: white; }

.pm-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.pm-step-card p {
    color: var(--pm-text-muted);
    font-size: 1.125rem;
}

.pm-line-connector-animated {
    flex: 0 0 120px;
    height: 96px;
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
}
.pm-line-connector-animated svg { width: 100%; height: 20px; }
.pm-path-dash {
    stroke-dasharray: 8, 8;
    animation: dash-flow 2s linear infinite;
}
@keyframes dash-flow {
    0% { stroke-dashoffset: 16; }
    100% { stroke-dashoffset: 0; }
}

/* Moving glowing dot on line */
.pm-moving-dot {
    position: absolute;
    width: 12px; height: 12px;
    background: var(--pm-accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--pm-accent);
    top: calc(50% - 6px);
    left: 0;
    animation: dot-move 3s ease-in-out infinite;
    z-index: 3;
}
@keyframes dot-move {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* --- TESTIMONIALS (GLASS CARDS) --- */
.pm-testimonials {
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.pm-testimonials .pm-section-title { color: white; }

.pm-test-bg-shapes {
    position: absolute;
    inset: 0; z-index: 0; overflow: hidden;
}
.pm-t-shape {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}
.shadow-blue { top: -100px; left: -100px; background: #3b82f6; }
.shadow-purple { bottom: -100px; right: -100px; background: #8b5cf6; }

.pm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative; z-index: 2;
}

.pm-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--pm-radius-xl);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: var(--pm-transition);
}
.pm-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.pm-rating {
    display: flex; gap: 4px; margin-bottom: 24px; color: var(--pm-warning);
}
.pm-rating .lucide { width: 20px; height: 20px; fill: currentColor; }

.pm-testimonial-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 32px;
}

.pm-testimonial-author {
    display: flex; align-items: center; gap: 16px;
}
.pm-author-img {
    width: 56px; height: 56px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
}
.pm-auth-info h4 { font-size: 1.125rem; font-weight: 600; }
.pm-auth-info span { font-size: 0.875rem; color: #94a3b8; }


/* --- PREMIUM CTA SECTION --- */
.pm-cta-section { padding: 120px 0; }

.pm-cta-card-premium {
    background: var(--pm-gradient-primary);
    border-radius: var(--pm-radius-xl);
    padding: 80px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -10px rgba(99, 102, 241, 0.4);
}

.pm-cta-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: orb-float 8s infinite alternate ease-in-out;
}
.pm-cta-orb-1 { width: 300px; height: 300px; top: -100px; right: 10%; }
.pm-cta-orb-2 { width: 150px; height: 150px; bottom: 40px; right: 30%; animation-delay: -3s; }
.pm-cta-orb-3 { width: 80px; height: 80px; top: 50px; left: 45%; animation-delay: -5s; }

@keyframes orb-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, -40px) rotate(20deg); }
}

.pm-cta-content { flex: 1; max-width: 600px; position: relative; z-index: 2; }
.pm-cta-content h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 24px; line-height: 1.1; }
.pm-cta-content p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 32px; font-weight: 300;}

.pm-cta-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pm-cta-features li { display: flex; align-items: center; gap: 12px; font-size: 1.125rem; font-weight: 600; }
.pm-cta-features .lucide { color: #a78bfa; width: 24px; height: 24px; }

.pm-cta-action {
    position: relative; z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--pm-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    min-width: 380px;
}
.pm-cta-action .pm-btn { width: 100%; margin-bottom: 20px; }
.pm-cta-guarantee { font-size: 0.875rem; opacity: 0.8; font-weight: 500; }

/* --- MODAL --- */
.pm-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    z-index: 1000; padding: 20px; opacity: 0;
    transition: opacity 0.3s ease;
}
.pm-modal-overlay.pm-active {
    display: flex; animation: pm-fadeIn 0.3s forwards;
}
@keyframes pm-fadeIn { from { opacity: 0; } to { opacity: 1; } }

.pm-modal {
    background: var(--pm-surface);
    width: 100%; max-width: 1000px;
    border-radius: var(--pm-radius-xl);
    overflow: hidden; position: relative;
    display: flex; flex-wrap: wrap; box-shadow: var(--pm-shadow-xl);
    transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pm-modal-overlay.pm-active .pm-modal { transform: scale(1); }

.pm-modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; background: white;
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: var(--pm-shadow-md); z-index: 10;
    color: var(--pm-text-main); transition: var(--pm-transition);
}
.pm-modal-close:hover { background: #f1f5f9; transform: scale(1.1) rotate(90deg); color: var(--pm-accent); }

.pm-modal-body { display: flex; width: 100%; }
.pm-modal-image-container {
    flex: 3; background: #f8fafc; min-height: 500px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pm-modal-image-container img { width: 100%; height: 100%; object-fit: contain; }

.pm-modal-info { flex: 2; padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.pm-modal-header { margin-bottom: 40px; }
.pm-modal-header .pm-badge { margin-bottom: 16px; }
.pm-modal-header h3 { font-size: 2.25rem; font-weight: 800; margin-bottom: 8px; line-height: 1.1; }
.pm-modal-header p { color: var(--pm-text-muted); font-size: 1.125rem; font-weight: 500;}

.pm-modal-actions { display: flex; flex-direction: column; gap: 16px; }


/* --- WHY CHOOSE US --- */
.pm-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}
.pm-why-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--pm-radius-lg);
    box-shadow: var(--pm-shadow-sm);
    border: 1px solid var(--pm-border-light);
    text-align: center;
    transition: var(--pm-transition);
}
.pm-why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pm-shadow-lg);
}
.pm-why-icon {
    width: 72px; height: 72px;
    background: var(--pm-surface-alt);
    color: var(--pm-accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: var(--pm-transition);
}
.pm-why-icon i { font-size: 32px; }
.pm-why-card:hover .pm-why-icon {
    background: var(--pm-accent);
    color: white;
    transform: scale(1.1);
}
.pm-why-card h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 700; color: var(--pm-text-main); }
.pm-why-card p { color: var(--pm-text-muted); font-size: 1.05rem; }

/* --- INSPIRATION --- */
.pm-inspire-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pm-inspire-card {
    border-radius: var(--pm-radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    box-shadow: var(--pm-shadow-md);
    cursor: pointer;
}
.pm-inspire-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pm-inspire-card:hover img {
    transform: scale(1.15);
}

/* --- FAQ --- */
.pm-faq-list {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 24px;
}
.pm-faq-item {
    background: white;
    padding: 32px;
    border-radius: var(--pm-radius-lg);
    box-shadow: var(--pm-shadow-sm);
    border: 1px solid var(--pm-border-light);
    transition: var(--pm-transition);
}
.pm-faq-item:hover {
    box-shadow: var(--pm-shadow-md);
    transform: translateY(-2px);
}
.pm-faq-item h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--pm-primary); }
.pm-faq-item p { color: var(--pm-text-muted); font-size: 1.125rem; }

/* --- RESPONSIVE CSS --- */
@media (max-width: 1024px) {
    .pm-hero-title { font-size: 4rem; }
    .pm-trending-grid { grid-template-columns: repeat(2, 1fr); }
    .pm-trending-feat { grid-column: span 2; grid-row: auto; }
    .pm-steps-grid { flex-wrap: wrap; }
    .pm-line-connector-animated { display: none; }
    .pm-step-card { min-width: 250px; margin-bottom: 40px; }
    .pm-cta-card-premium { flex-direction: column; text-align: center; gap: 40px; padding: 48px 32px; }
    .pm-cta-features li { justify-content: center; }
    .pm-modal-body { flex-direction: column; }
    .pm-modal-image-container { min-height: 350px; border-bottom: 1px solid var(--pm-border); }
}

@media (max-width: 768px) {
    .pm-hero-title { font-size: 3rem; }
    .pm-hero { padding: 100px 0 80px; }
    .pm-new-premium-search { 
        padding: 8px; border-radius: 24px; 
    }
    .pm-nps-inner {
        flex-direction: column;
        gap: 8px;
    }
    .pm-nps-input { width: 100%; padding: 16px; text-align: center; }
    .pm-nps-submit { width: 100%; border-radius: 16px; padding: 16px; }
    .pm-nps-icon-wrap { display: none; }
    
    .pm-grid-centered { grid-template-columns: repeat(2, 1fr); }
    .pm-inspire-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Sticky Search for mobile */
    .pm-search-container { position: sticky; top: 16px; z-index: 100; }
    .pm-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .pm-categories-grid { grid-template-columns: 1fr; }
    .pm-section-title { font-size: 2.25rem; }
}

@media (max-width: 480px) {
    .pm-inspire-grid { grid-template-columns: 1fr; }
    .pm-grid-centered { grid-template-columns: 1fr; }
}

/* --- ELEMENTOR COMPATIBILITY TWEAKS --- */
.pm-hero, .pm-section {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
}

/* Ensure buttons don't get overwritten */
.elementor-widget-html button.pm-btn {
    border-radius: var(--pm-radius-md) !important;
}
.elementor-widget-html .pm-nps-submit {
    border-radius: 50px !important;
}
.elementor-widget-html .pm-new-premium-search {
    border-radius: 50px !important;
}/* End custom CSS */