html {
    scroll-behavior: smooth;
}

.evx-body {
    background: #fcf9f8;
    color: #1b1c1c;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
}

.evx-body * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.evx-page {
    --evx-bg: #fcf9f8;
    --evx-surface: #ffffff;
    --evx-soft: #f6f3f2;
    --evx-soft-2: #f0eded;
    --evx-text: #1b1c1c;
    --evx-muted: #4f4350;
    --evx-line: #e4d9e4;
    --evx-primary: #5c0078;
    --evx-primary-2: #7a1c99;
    --evx-gold: #735c00;
    --evx-shadow: 0 14px 44px rgba(122, 28, 153, .06);
    background: var(--evx-bg);
    min-height: 100vh;
}

.evx-page a {
    text-decoration: none;
}

.evx-page img {
    max-width: 100%;
}

.evx-page button,
.evx-page input,
.evx-page select,
.evx-page textarea {
    font: inherit;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.justify-content-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-3 {
    gap: 12px;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-5 {
    margin-bottom: 32px;
}

.pt-0 {
    padding-top: 0;
}

.evx-symbol-sm {
    font-size: 17px;
}

.evx-symbol-md {
    font-size: 20px;
}

.evx-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
}

.evx-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 76px;
    background: rgba(253, 246, 242, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.evx-nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.evx-logo-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    height: 64px;
}

.evx-logo-img,
.evx-logo-brand img,
.evx-logo-brand .logo {
    display: block;
    height: 60px;
    max-height: 63px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.evx-logo-brand:hover img {
    transform: scale(1.02);
}

.evx-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.evx-nav-links a {
    color: #27272a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.evx-nav-links a:hover {
    color: #000000;
    font-weight: 600;
}

.evx-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.evx-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18181b;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.evx-circle-btn:hover {
    background: #f7f0ea;
    border-color: rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.evx-circle-btn .material-symbols-outlined {
    font-size: 20px;
}

.evx-mobile-menu {
    display: none;
    flex: 0 0 auto;
    position: relative;
}

.evx-mobile-menu summary {
    align-items: center;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(210, 193, 210, .72);
    border-radius: 999px;
    color: var(--evx-primary);
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    list-style: none;
    width: 42px;
}

.evx-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.evx-mobile-panel {
    background: rgba(252, 249, 248, .98);
    border: 1px solid rgba(210, 193, 210, .72);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(92, 0, 120, .14);
    display: grid;
    gap: 4px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(82vw, 320px);
}

.evx-mobile-panel a:not(.evx-btn) {
    border-radius: 8px;
    color: var(--evx-muted);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 14px;
}

.evx-mobile-panel a:not(.evx-btn):hover {
    background: rgba(122, 28, 153, .08);
    color: var(--evx-primary);
}

.evx-mobile-panel .evx-btn {
    margin-top: 8px;
    width: 100%;
}

.evx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.evx-btn:hover {
    transform: translateY(-2px);
}

.evx-btn-primary {
    background: var(--evx-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(92, 0, 120, .18);
}

.evx-btn-primary:hover {
    color: #fff;
    background: var(--evx-primary-2);
    box-shadow: 0 14px 28px rgba(92, 0, 120, .26);
}

.evx-btn-glass,
.evx-btn-outline,
.evx-btn-light {
    color: var(--evx-primary);
    background: rgba(92, 0, 120, 0.08);
    border-color: rgba(92, 0, 120, 0.18);
}

.evx-btn-glass:hover,
.evx-btn-outline:hover,
.evx-btn-light:hover {
    color: var(--evx-primary);
    background: rgba(92, 0, 120, 0.14);
    border-color: rgba(92, 0, 120, 0.28);
}

.evx-section {
    padding: 104px 0;
}

.evx-section-compact {
    padding: 72px 0;
}

/* --- Hero Section Redesign --- */
.evx-hero {
    min-height: calc(100vh - 76px);
    padding: 60px 0 90px;
    display: flex;
    align-items: center;
    background: #fdf6f2;
    overflow: hidden;
}

.evx-hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Hero Copy */
.evx-hero-headline {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: #09090b;
    margin: 0 0 24px 0;
}

.evx-gradient-text {
    background: linear-gradient(90deg, #7c3aed 0%, #d946ef 45%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.evx-hero-subtext {
    font-size: 16px;
    line-height: 1.65;
    color: #52525b;
    max-width: 470px;
    margin: 0 0 36px 0;
    font-weight: 400;
}

.evx-hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* Glass Wrapper Button */
.evx-btn-glass-wrapper {
    padding: 3px;
    border-radius: 999px;
    background: rgba(239, 131, 108, 0.15);
    border: 1px solid rgba(239, 131, 108, 0.35);
    display: inline-block;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.evx-btn-glass-wrapper:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 131, 108, 0.6);
}

.evx-btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 26px 10px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed 0%, #ef5350 60%, #f46b45 100%);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
    transition: box-shadow 0.2s ease;
}

.evx-btn-primary-gradient:hover {
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.38);
}

.evx-btn-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.evx-btn-icon-circle .material-symbols-outlined {
    font-size: 20px;
    color: #ffffff;
}

.evx-btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 999px;
    background: #f2ebe5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #18181b !important;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.evx-btn-contact:hover {
    background: #e7ded6;
    border-color: rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
}

/* Trust Badges */
.evx-hero-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #27272a;
}

.evx-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.evx-bullet {
    color: #71717a;
    font-size: 14px;
}

/* --- Right Side Visual UI Stack --- */
.evx-hero-visual-stack {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Phone Container */
.evx-meeting-phone {
    width: 300px;
    background: #0d0e12;
    border-radius: 34px;
    padding: 24px 20px;
    color: #ffffff;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 4;
}

.evx-phone-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.evx-phone-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.evx-phone-subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #e4e4e7;
}

.evx-phone-dots {
    color: #71717a;
    font-size: 20px;
    cursor: pointer;
}

/* Audio Waveform */
.evx-phone-waveform-wrap {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 16px 12px 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.evx-waveform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    margin-bottom: 12px;
}

.evx-waveform span {
    width: 3px;
    background: #3f3f46;
    border-radius: 4px;
    display: inline-block;
}

.evx-waveform span.active-bar {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.evx-waveform-playhead {
    position: absolute;
    top: 10px;
    left: 68%;
    width: 2px;
    height: 60px;
    background: #ef4444;
}

.evx-waveform-timeline {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #52525b;
    font-weight: 500;
}

.evx-waveform-timeline span.active-time {
    color: #a1a1aa;
}

/* Status pills */
.evx-phone-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.evx-timer-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #d4d4d8;
    font-weight: 500;
}

.evx-analyzing-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(90deg, #ec4899, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.evx-sparkle-dot {
    -webkit-text-fill-color: initial;
    color: #ec4899;
}

/* Live Transcript */
.evx-phone-transcript {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 12px;
}

.evx-chat-line {
    margin: 0;
    line-height: 1.45;
}

.evx-chat-line.highlighted {
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
}

.evx-chat-line.muted {
    color: #a1a1aa;
}

.evx-chat-author {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 2px;
    color: #71717a;
}

.evx-chat-author strong {
    color: #d4d4d8;
}

.evx-chat-line.faded {
    color: #52525b;
    opacity: 0.7;
}

/* Bottom phone control button */
.evx-phone-control {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.evx-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.evx-pause-btn:hover {
    transform: scale(1.08);
}

/* Floating White Speaker Quote Card */
.evx-speaker-quote-card {
    position: absolute;
    left: 20px;
    top: 260px;
    width: 250px;
    background: #ffffff;
    border-radius: 20px;
    padding: 14px 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
    z-index: 8;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.evx-quote-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.evx-quote-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.evx-quote-name {
    font-size: 12px;
    font-weight: 700;
    color: #18181b;
}

.evx-quote-time-pill {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ec4899, #a855f7);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
}

.evx-quote-body {
    font-size: 13px;
    font-weight: 700;
    color: #09090b;
    margin: 0;
    line-height: 1.35;
}

.evx-quote-fade {
    color: #a1a1aa;
}

/* Top Right Rating Badge */
.evx-rating-card {
    position: absolute;
    right: 90px;
    top: 20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 6;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.evx-rating-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fdf2f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stars-gold {
    color: #ec4899;
    font-size: 11px;
    letter-spacing: 1px;
}

.rating-score {
    font-size: 12px;
    font-weight: 800;
    color: #09090b;
    margin-left: 4px;
}

.rating-meta {
    display: block;
    font-size: 10px;
    color: #71717a;
    font-weight: 600;
}

/* 4 Video Call Thumbnails */
.evx-avatar-box {
    position: absolute;
    width: 124px;
    height: 84px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    z-index: 3;
    background: #000000;
    border: 2px solid #ffffff;
}

.evx-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evx-avatar-controls {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    padding: 2px 8px;
    display: flex;
    gap: 6px;
    color: #ffffff;
}

.micro-icon {
    font-size: 12px;
}

/* Positional placements for avatars */
.evx-avatar-top-left {
    left: 10px;
    top: 70px;
    border-color: transparent;
}

.evx-avatar-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #c084fc, #f43f5e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.evx-avatar-bottom-left {
    left: 10px;
    bottom: 25px;
}

.evx-avatar-top-right {
    right: 10px;
    top: 75px;
}

.evx-avatar-bottom-right {
    right: 10px;
    bottom: 25px;
}

/* SVG Connector Line & Node */
.evx-connector-svg {
    position: absolute;
    left: 70px;
    top: 150px;
    z-index: 5;
    pointer-events: none;
}

.evx-sparkle-node {
    position: absolute;
    left: 145px;
    top: 242px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(236, 72, 153, 0.6);
    z-index: 9;
}

.evx-sparkle-icon {
    font-size: 12px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .evx-hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .evx-hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .evx-hero-headline {
        font-size: clamp(38px, 6vw, 56px);
    }

    .evx-hero-subtext {
        max-width: 580px;
    }

    .evx-hero-trust-row {
        justify-content: center;
    }

    .evx-hero-visual-stack {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .evx-nav-links {
        display: none;
    }

    .evx-mobile-menu {
        display: block;
    }

    .evx-hero {
        padding: 40px 0 60px;
    }

    .evx-hero-visual-stack {
        height: auto;
        flex-direction: column;
        transform: none;
    }

    .evx-meeting-phone {
        width: 100%;
        max-width: 320px;
    }

    .evx-avatar-box,
    .evx-connector-svg,
    .evx-sparkle-node,
    .evx-rating-card {
        display: none;
    }

    .evx-speaker-quote-card {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 320px;
        margin-bottom: 20px;
    }
}

.evx-page-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.08) 0%, rgba(239, 83, 80, 0.04) 50%, #fdf6f2 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.evx-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    font-size: 13px;
    font-weight: 700;
}

.evx-hero h1,
.evx-section-title,
.evx-card h3,
.evx-faq summary,
.evx-blog h3 {
    font-family: "Playfair Display", serif;
    overflow-wrap: anywhere;
}

.evx-hero h1 {
    max-width: 760px;
    margin: 28px auto 18px;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
}

.evx-page-hero h1 {
    max-width: 840px;
    margin: 20px auto 16px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #09090b;
}

.evx-hero-lede {
    margin: 0 auto 28px;
    color: var(--evx-muted);
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.evx-page-lede {
    max-width: 680px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #52525b;
}

.evx-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.evx-action-row-center {
    justify-content: center;
}

.evx-microcopy {
    margin-top: 16px;
    color: rgba(79, 67, 80, .72);
    font-size: 12px;
}

/* --- Premium Category Strip with Mobile Optimization --- */
.evx-category-strip {
    padding: 24px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8fc 100%);
    border-top: 1px solid var(--evx-line);
    border-bottom: 1px solid var(--evx-line);
    position: relative;
    z-index: 10;
}

.evx-category-scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}

.evx-category-scroll-container::-webkit-scrollbar {
    display: none;
}

.evx-category-pills-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    white-space: nowrap;
    width: max-content;
    margin: 0 auto;
    padding: 0 4px;
}

.evx-category-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--evx-line);
    color: var(--evx-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.evx-category-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--evx-soft);
    color: var(--evx-primary);
    transition: all 0.25s ease;
}

.evx-category-pill-icon .material-symbols-outlined {
    font-size: 18px;
}

.evx-category-pill-item:hover {
    border-color: var(--evx-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 28, 153, 0.12);
    color: var(--evx-primary);
}

.evx-category-pill-item:hover .evx-category-pill-icon {
    background: var(--evx-primary);
    color: #ffffff;
}

.evx-category-pill-item.active {
    background: linear-gradient(135deg, var(--evx-primary), var(--evx-primary-2));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(122, 28, 153, 0.25);
}

.evx-category-pill-item.active .evx-category-pill-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.evx-category-view-all {
    background: rgba(122, 28, 153, 0.06);
    border: 1px dashed var(--evx-primary);
    color: var(--evx-primary);
}

.evx-category-view-all .evx-arrow-mini {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.evx-category-view-all:hover .evx-arrow-mini {
    transform: translateX(3px);
}

.evx-trusted {
    padding: 42px 0 74px;
    text-align: center;
}

.evx-eyebrow {
    color: rgba(79, 67, 80, .7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.evx-brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    margin-top: 28px;
    color: rgba(27, 28, 28, .7);
}

.evx-brand-row span {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
}

.evx-section-head {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.evx-section-label {
    color: var(--evx-primary);
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.evx-section-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.18;
    margin: 0 0 14px;
}

.evx-section-copy {
    color: var(--evx-muted);
    margin: 0;
}

.evx-product-grid,
.evx-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.evx-card,
.evx-product-card,
.evx-feature-card,
.evx-template-card,
.evx-blog-card,
.evx-faq details,
.evx-filter-card {
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(210, 193, 210, .58);
    border-radius: 8px;
    box-shadow: var(--evx-shadow);
}

.evx-card,
.evx-product-card,
.evx-template-card,
.evx-blog-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.evx-card:hover,
.evx-product-card:hover,
.evx-template-card:hover,
.evx-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 54px rgba(122, 28, 153, .1);
}

.evx-product-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 188px;
    overflow: hidden;
}

.evx-product-image {
    background: var(--evx-soft);
    overflow: hidden;
}

.evx-product-image img,
.evx-template-card img,
.evx-blog-card img,
.evx-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evx-product-body,
.evx-card-pad {
    padding: 28px;
}

.evx-product-body,
.evx-template-body,
.evx-blog-body,
.evx-feature-card,
.evx-card-pad {
    min-width: 0;
}

.evx-price {
    color: var(--evx-gold);
    font-size: 12px;
    font-weight: 700;
}

.evx-card h3,
.evx-product-card h3 {
    color: var(--evx-text);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin: 8px 0 12px;
}

.evx-card p,
.evx-product-card p {
    color: var(--evx-muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.evx-text-link {
    color: var(--evx-primary);
    font-size: 13px;
    font-weight: 700;
}

.evx-center {
    margin-top: 36px;
    text-align: center;
}

.evx-features {
    background: #faf7f6;
    border-top: 1px solid rgba(210, 193, 210, .42);
    border-bottom: 1px solid rgba(210, 193, 210, .42);
}

.evx-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.evx-feature-card {
    padding: 28px;
}

.evx-feature-card-wide {
    grid-column: span 2;
}

.evx-feature-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    margin-bottom: 22px;
    background: rgba(122, 28, 153, .1);
    color: var(--evx-primary-2);
}

.evx-feature-card h3 {
    color: var(--evx-text);
    font-size: 17px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin: 0 0 10px;
}

.evx-feature-card p {
    color: var(--evx-muted);
    font-size: 14px;
    margin: 0;
}

.evx-template-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.evx-template-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.evx-template-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.evx-template-media,
.evx-blog-media,
.evx-category-media {
    background: var(--evx-soft-2);
    overflow: hidden;
}

.evx-template-media {
    aspect-ratio: 4 / 3;
}

.evx-blog-media {
    aspect-ratio: 16 / 9;
}

.evx-category-media {
    aspect-ratio: 4 / 3;
}

.evx-template-body {
    padding: 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.evx-template-body h3 {
    color: var(--evx-text);
    font-size: 16px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 6px;
}

.evx-template-body p {
    color: var(--evx-muted);
    flex: 1;
    font-size: 12px;
    margin: 0 0 16px;
}

.evx-template-body .evx-template-theme {
    flex: 0;
    width: fit-content;
    margin: 0 0 14px;
    padding: 6px 9px;
    border: 1px solid rgba(78, 35, 64, 0.14);
    border-radius: 999px;
    background: #fbf7fa;
    color: var(--evx-primary);
    font-weight: 800;
}

.evx-template-button {
    min-height: 34px;
    border: 1px solid var(--evx-primary);
    border-radius: 4px;
    color: var(--evx-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.evx-template-button:hover {
    background: var(--evx-primary);
    color: #fff;
}

.evx-template-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
}

.evx-template-button.secondary {
    border-color: rgba(78, 35, 64, 0.18);
    color: var(--evx-text);
}

.evx-template-button.secondary:hover {
    border-color: var(--evx-text);
    background: var(--evx-text);
    color: #fff;
}

.evx-blog-card {
    overflow: hidden;
}

.evx-blog-body {
    padding: 26px;
}

.evx-blog-tag {
    color: var(--evx-primary);
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.evx-blog h3 {
    color: var(--evx-text);
    font-size: 24px;
    line-height: 1.22;
    margin: 0 0 12px;
}

.evx-blog p {
    color: var(--evx-muted);
}

.evx-empty-state {
    grid-column: 1 / -1;
    text-align: center;
}

.evx-faq {
    max-width: 760px;
    margin: 0 auto;
}

.evx-faq details {
    padding: 20px 24px;
    margin-bottom: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.evx-faq details[open] {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
}

.evx-faq summary {
    color: var(--evx-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
}

.evx-faq summary::-webkit-details-marker {
    display: none;
}

.evx-faq summary .faq-chevron {
    font-size: 24px;
    color: #7c3aed;
    transition: transform 0.3s ease;
}

.evx-faq details[open] summary .faq-chevron {
    transform: rotate(180deg);
}

.evx-faq p {
    color: var(--evx-muted);
    margin: 14px 0 0;
    line-height: 1.6;
}

.evx-filter-card {
    padding: 24px;
    margin-bottom: 36px;
}

.evx-form-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.evx-field label,
.evx-field {
    display: block;
}

.evx-field span {
    color: var(--evx-text);
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.evx-field input,
.evx-field select {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(210, 193, 210, .8);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    color: var(--evx-text);
    padding: 0 14px;
}

.evx-pagination {
    margin-top: 36px;
}

.evx-pagination nav {
    display: flex;
    justify-content: center;
}

.evx-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.evx-pagination .page-link,
.evx-pagination .page-item span {
    align-items: center;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(210, 193, 210, .8);
    border-radius: 999px;
    color: var(--evx-text);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    min-height: 34px;
    min-width: 34px;
    padding: 0 12px;
    text-decoration: none;
}

.evx-pagination .page-item.active .page-link,
.evx-pagination .page-link:hover {
    background: var(--evx-primary);
    border-color: var(--evx-primary);
    color: #fff;
}

.evx-pagination .page-item.disabled .page-link,
.evx-pagination .page-item.disabled span {
    color: var(--evx-muted);
    opacity: .55;
}

.evx-pagination nav[role="navigation"] {
    align-items: center;
    color: var(--evx-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.evx-pagination nav[role="navigation"] a,
.evx-pagination nav[role="navigation"] span[aria-current]>span,
.evx-pagination nav[role="navigation"] span[aria-disabled]>span {
    align-items: center;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(210, 193, 210, .8);
    border-radius: 999px;
    color: var(--evx-text);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    min-height: 34px;
    min-width: 34px;
    padding: 0 12px;
    text-decoration: none;
}

.evx-pagination nav[role="navigation"] a:hover,
.evx-pagination nav[role="navigation"] span[aria-current]>span {
    background: var(--evx-primary);
    border-color: var(--evx-primary);
    color: #fff;
}

.evx-pagination nav[role="navigation"] svg {
    height: 16px;
    width: 16px;
}

.evx-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.evx-media {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--evx-shadow);
    background: var(--evx-soft);
}

.evx-media img {
    aspect-ratio: 16 / 11;
    height: auto;
}

.evx-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.evx-list li {
    color: var(--evx-muted);
    margin-bottom: 12px;
    padding-left: 26px;
    position: relative;
}

.evx-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--evx-primary);
}

.evx-footer {
    background: #e4e2e1;
    padding: 88px 0 24px;
}

.evx-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 54px;
}

.evx-footer p,
.evx-footer li {
    color: var(--evx-muted);
    font-size: 14px;
}

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

.evx-footer li {
    margin-bottom: 10px;
}

.evx-footer h4 {
    color: var(--evx-text);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.evx-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.evx-payment span {
    border: 1px solid rgba(129, 115, 130, .35);
    border-radius: 4px;
    background: rgba(252, 249, 248, .74);
    color: var(--evx-muted);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 8px;
}

.evx-footer-bottom {
    border-top: 1px solid rgba(129, 115, 130, .28);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
}

@media (max-width: 991px) {
    .evx-section {
        padding: 80px 0;
    }

    .evx-page-hero {
        padding: 96px 0 62px;
    }

    .evx-hero h1,
    .evx-page-hero h1,
    .evx-section-title {
        font-size: 36px;
    }

    .evx-nav-links {
        display: none;
    }

    .evx-nav-action {
        display: none;
    }

    .evx-mobile-menu {
        display: block;
    }

    .evx-nav-inner {
        gap: 12px;
    }

    .evx-logo img {
        height: 36px;
    }

    .evx-product-grid,
    .evx-blog-grid,
    .evx-split {
        grid-template-columns: 1fr;
    }

    .evx-feature-grid,
    .evx-template-grid,
    .evx-template-grid-wide,
    .evx-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evx-feature-card-wide {
        grid-column: span 1;
    }

    .evx-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .evx-brand-row {
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .evx-container {
        width: min(100% - 32px, 1120px);
    }

    .evx-nav,
    .evx-nav-inner {
        height: 60px;
    }

    .evx-logo img {
        height: 34px;
        max-width: 132px;
    }

    .evx-mobile-panel {
        right: -4px;
        width: min(88vw, 310px);
    }

    .evx-section {
        padding: 58px 0;
    }

    .evx-section-compact {
        padding: 48px 0;
    }

    .evx-hero {
        min-height: auto;
        padding: 92px 0 76px;
    }

    .evx-page-hero {
        padding: 72px 0 48px;
    }

    .evx-hero h1,
    .evx-page-hero h1 {
        font-size: 32px;
        line-height: 1.12;
        margin-top: 20px;
    }

    .evx-section-title {
        font-size: 30px;
    }

    .evx-hero-lede,
    .evx-page-lede {
        font-size: 16px;
    }

    .evx-chip {
        justify-content: center;
        max-width: 100%;
    }

    .evx-category-strip {
        padding: 16px 0;
    }

    .evx-category-pills-row {
        justify-content: flex-start;
        margin: 0;
        gap: 10px;
    }

    .evx-category-pill-item {
        padding: 8px 16px;
        font-size: 13px;
        gap: 8px;
    }

    .evx-category-pill-icon {
        width: 28px;
        height: 28px;
    }

    .evx-category-pill-icon .material-symbols-outlined {
        font-size: 16px;
    }

    .evx-trusted {
        padding: 32px 0 52px;
    }

    .evx-brand-row {
        gap: 22px;
        margin-top: 22px;
    }

    .evx-brand-row span {
        font-size: 16px;
    }

    .evx-section-head {
        margin-bottom: 34px;
    }

    .evx-product-card,
    .evx-feature-grid,
    .evx-template-grid,
    .evx-template-grid-wide,
    .evx-footer-grid,
    .evx-form-grid {
        grid-template-columns: 1fr;
    }

    .evx-product-card {
        display: block;
        min-height: auto;
    }

    .evx-product-image {
        aspect-ratio: 4 / 3;
    }

    .evx-product-body,
    .evx-card-pad,
    .evx-feature-card,
    .evx-blog-body {
        padding: 20px;
    }

    .evx-card h3,
    .evx-product-card h3,
    .evx-blog h3 {
        font-size: 21px;
    }

    .evx-feature-icon {
        margin-bottom: 16px;
    }

    .evx-template-body {
        padding: 16px;
    }

    .evx-template-button {
        width: 100%;
    }

    .evx-faq details {
        padding: 16px;
    }

    .evx-faq summary {
        align-items: flex-start;
        gap: 16px;
        font-size: 16px;
    }

    .evx-filter-card {
        padding: 18px;
    }

    .evx-form-grid .evx-btn,
    .evx-action-row .evx-btn,
    .evx-hero .evx-btn {
        width: min(100%, 280px);
    }

    .evx-form-grid .evx-btn {
        width: 100%;
    }

    .evx-split {
        gap: 30px;
    }

    .evx-media img {
        aspect-ratio: 4 / 3;
    }

    .evx-footer {
        padding: 56px 0 22px;
    }

    .evx-footer-grid {
        gap: 28px;
        margin-bottom: 34px;
    }

    .evx-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .evx-container {
        width: min(100% - 24px, 1120px);
    }

    .evx-hero h1,
    .evx-page-hero h1 {
        font-size: 29px;
    }

    .evx-section-title {
        font-size: 27px;
    }

    .evx-btn {
        min-height: 42px;
        padding: 0 16px;
    }

    .evx-product-body,
    .evx-card-pad,
    .evx-feature-card,
    .evx-blog-body,
    .evx-template-body {
        padding: 18px;
    }
}

/* =============================================================
   Premium Invitation Solutions Redesign (Modern Creative UI/UX)
   ============================================================= */
.evx-products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdf6f2 0%, #ffffff 50%, #fcf8f5 100%);
    position: relative;
}

.evx-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Products Section Luxury Styling */
.evx-products-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 15%, rgba(124, 58, 237, 0.06) 0%, rgba(236, 72, 153, 0.03) 40%, rgba(255, 255, 255, 0) 70%), #faf9f8;
}

.evx-title-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Product Grid */
.evx-product-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

/* Product Card */
.evx-product-card-modern {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, 0.9);
    box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(124, 58, 237, 0.02);
    display: grid;
    grid-template-columns: 230px 1fr;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.evx-product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px -12px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.35);
    border-color: transparent;
}

/* Media Wrap */
.evx-product-media-wrap {
    position: relative;
    overflow: hidden;
    background: #18181b;
}

.evx-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.evx-product-card-modern:hover .evx-product-img {
    transform: scale(1.08);
}

.evx-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.evx-product-price-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: #7c3aed;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
    z-index: 2;
}

.evx-product-category-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 2;
}

.evx-product-hover-action {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.evx-preview-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.evx-product-card-modern:hover .evx-preview-icon-circle {
    transform: scale(1);
}

.evx-product-card-modern:hover .evx-product-hover-action {
    opacity: 1;
}

/* Card Content */
.evx-product-content {
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.evx-product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.evx-product-name {
    font-family: 'Inter', sans-serif !important;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.evx-product-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(236, 72, 153, 0.08) 100%);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    flex-shrink: 0;
}

.evx-product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 4px 0 20px 0;
}

.evx-product-features-mini {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.evx-mini-feat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    font-size: 12px;
    font-weight: 600;
    color: #3f3f46;
}

.evx-feat-check {
    font-size: 15px !important;
    color: #7c3aed;
}

.evx-product-footer {
    margin-top: auto;
}

.evx-btn-product-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.evx-btn-product-action .evx-btn-arrow {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.evx-btn-product-action:hover .evx-btn-arrow,
.evx-product-card-modern:hover .evx-btn-arrow {
    transform: translateX(4px);
}

.evx-product-card-modern:hover .evx-btn-product-action {
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.evx-btn-explore-glow {
    padding: 16px 36px;
    border-radius: 999px;
    background: #ffffff;
    border: 1.5px solid rgba(124, 58, 237, 0.25);
    color: #0f172a !important;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.evx-btn-explore-glow:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
}

.evx-btn-explore-glow:hover .evx-btn-arrow {
    transform: translateX(5px);
}

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

@media (max-width: 640px) {
    .evx-product-card-modern {
        grid-template-columns: 1fr;
    }

    .evx-product-media-wrap {
        height: 200px;
    }
}

/* =============================================================
   Editor's Choice Templates Redesign (Creative & Stylish Layout)
   ============================================================= */
.evx-templates-section {
    padding: 100px 0;
    background: #fbf8f5;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.evx-template-grid-creative {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.evx-template-card-creative {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.evx-template-card-creative:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.2);
}

.evx-template-media-wrap {
    position: relative;
    overflow: hidden;
    background: #f4ede8;
    aspect-ratio: 4 / 5;
    /* Native portrait invite shape */
}

.evx-template-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.evx-template-card-creative:hover .evx-template-img {
    transform: scale(1.06);
}

.evx-template-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.evx-template-card-creative:hover .evx-template-overlay {
    opacity: 0.95;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
}

/* Badges */
.evx-template-badge-pill {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
}

.evx-template-badge-pill.premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.evx-template-badge-pill.free {
    background: #10b981;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.evx-template-category-pill {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 5;
}

/* Hover actions overlay */
.evx-template-hover-actions {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 6;
}

.evx-template-card-creative:hover .evx-template-hover-actions {
    opacity: 1;
    transform: translateY(0);
}

.evx-template-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 80%;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
}

.evx-template-action-btn.primary {
    background: #ffffff;
    color: #18181b !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.evx-template-action-btn.primary:hover {
    background: #18181b;
    color: #ffffff !important;
}

.evx-template-action-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.evx-template-action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
}

.evx-template-action-btn .material-symbols-outlined {
    font-size: 18px;
}

/* Card Content details */
.evx-template-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.evx-template-title-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px;
    font-weight: 700;
    color: #18181b;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.evx-template-desc-text {
    font-size: 13px;
    line-height: 1.5;
    color: #71717a;
    margin: 0;
}

@media (max-width: 992px) {
    .evx-template-grid-creative {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .evx-template-grid-creative {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   Premium & Creative Footer Redesign (Deep Contrast Layout)
   ============================================================= */
.evx-footer-premium {
    background: #0f1013;
    padding: 100px 0 40px;
    color: #a1a1aa;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.evx-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evx-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: 50px;
}

.evx-footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Render white logo logo mark */
}

.evx-footer-brand-text {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.evx-footer-about {
    font-size: 14px;
    line-height: 1.6;
    color: #a1a1aa;
    max-width: 320px;
    margin: 0;
}

.evx-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.evx-social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4d4d8;
    transition: all 0.25s ease;
}

.evx-social-circle:hover {
    background: #7c3aed;
    color: #ffffff !important;
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.evx-social-circle .material-symbols-outlined {
    font-size: 18px;
}

/* Titles & Lists */
.evx-footer-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 8px;
}

.evx-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #7c3aed;
}

.evx-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.evx-footer-links a {
    color: #a1a1aa;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.evx-link-arr {
    font-size: 16px;
    color: #71717a;
    transition: transform 0.2s ease, color 0.2s ease;
}

.evx-footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.evx-footer-links a:hover .evx-link-arr {
    color: #7c3aed;
}

/* Newsletter Signup */
.evx-footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evx-newsletter-text {
    font-size: 14px;
    color: #a1a1aa;
    margin: 0;
}

.evx-footer-form {
    display: flex;
    width: 100%;
    position: relative;
}

.evx-footer-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 12px 52px 12px 20px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

.evx-footer-form input:focus {
    border-color: #7c3aed;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
}

.evx-footer-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f1013;
    cursor: pointer;
    transition: all 0.2s ease;
}

.evx-footer-form button:hover {
    background: #7c3aed;
    color: #ffffff;
    transform: scale(1.04);
}

.evx-footer-form button .material-symbols-outlined {
    font-size: 18px;
}

/* Payment Chip Badges */
.evx-payment-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.evx-pay-chip {
    font-size: 11px;
    font-weight: 700;
    color: #d4d4d8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.evx-pay-chip:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Footer Bottom */
.evx-footer-bottom-premium {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #71717a;
}

.evx-footer-bottom-premium p {
    margin: 0;
}

.evx-dev-note {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.heart-pulse {
    color: #ef4444;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .evx-footer-premium {
        padding: 60px 0 30px;
    }

    .evx-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .evx-footer-bottom-premium {
        margin-top: 40px;
        flex-direction: column;
        text-align: center;
    }
}

/* Back To Top Button */
.evx-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d4d4d8;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.evx-back-to-top:hover {
    background: #7c3aed;
    color: #ffffff;
    border-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

.evx-back-to-top .material-symbols-outlined {
    font-size: 16px;
}

/* --- Evokes Premium Pricing & Comparison Table --- */
.evx-pricing-section {
    background: #fdfaf9;
    position: relative;
    overflow: hidden;
}

.evx-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    align-items: stretch;
}

.evx-pricing-card {
    background: var(--evx-surface);
    border: 1px solid var(--evx-line);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: var(--evx-shadow);
}

.evx-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(122, 28, 153, 0.12);
    border-color: var(--evx-primary);
}

.evx-pricing-card.is-popular {
    border: 2px solid var(--evx-primary);
    transform: scale(1.03);
}

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

.evx-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--evx-primary), var(--evx-primary-2));
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(122, 28, 153, 0.3);
}

.evx-pricing-header {
    margin-bottom: 32px;
}

.evx-pricing-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evx-pricing-badge.free {
    background: #e3f2fd;
    color: #0d47a1;
}

.evx-pricing-badge.premium {
    background: #f3e5f5;
    color: #4a148c;
}

.evx-pricing-badge.pro {
    background: #fff8e1;
    color: #ff6f00;
}

.evx-pricing-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--evx-text);
}

.evx-pricing-price {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--evx-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.evx-pricing-price span {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--evx-muted);
}

.evx-pricing-desc {
    color: var(--evx-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    min-height: 48px;
}

.evx-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    border-top: 1px solid var(--evx-soft-2);
    padding-top: 32px;
}

.evx-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--evx-text);
    margin-bottom: 16px;
}

.evx-pricing-features li:last-child {
    margin-bottom: 0;
}

.evx-pricing-features li .check-icon {
    color: #10b981;
    font-size: 20px;
}

.evx-pricing-features li .cross-icon {
    color: #ef4444;
    font-size: 20px;
}

.evx-pricing-action {
    display: block;
}

.evx-pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.evx-pricing-btn.primary {
    background: linear-gradient(135deg, var(--evx-primary), var(--evx-primary-2));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(122, 28, 153, 0.15);
}

.evx-pricing-btn.primary:hover {
    box-shadow: 0 6px 24px rgba(122, 28, 153, 0.3);
    transform: translateY(-2px);
}

.evx-pricing-btn.secondary {
    background: var(--evx-soft);
    color: var(--evx-text);
    border: 1px solid var(--evx-line);
}

.evx-pricing-btn.secondary:hover {
    background: var(--evx-soft-2);
    transform: translateY(-2px);
}

/* --- Comparison Table Styling --- */
.evx-comparison-container {
    background: var(--evx-surface);
    border: 1px solid var(--evx-line);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--evx-shadow);
    margin-top: 80px;
}

.evx-comparison-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: var(--evx-text);
}

.evx-comparison-wrapper {
    overflow-x: auto;
}

.evx-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.evx-comparison-table th,
.evx-comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--evx-soft-2);
}

.evx-comparison-table th {
    font-weight: 700;
    font-size: 16px;
    color: var(--evx-text);
}

.evx-comparison-table th:not(:first-child) {
    text-align: center;
    width: 22%;
}

.evx-comparison-table td:not(:first-child) {
    text-align: center;
}

.evx-comparison-table tbody tr:hover {
    background: var(--evx-soft);
}

.evx-comparison-feature-name {
    font-weight: 600;
    color: var(--evx-text);
}

.evx-comparison-feature-desc {
    display: block;
    font-size: 12px;
    color: var(--evx-muted);
    font-weight: 400;
    margin-top: 4px;
}

.evx-comparison-table td .check-icon {
    color: #10b981;
    font-size: 22px;
}

.evx-comparison-table td .cross-icon {
    color: #ef4444;
    font-size: 22px;
}

.evx-comparison-table td .badge-value {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    background: var(--evx-soft);
    color: var(--evx-text);
}

.evx-comparison-table td .badge-value.highlight {
    background: #f3e5f5;
    color: #4a148c;
}

/* Spinner Animation Utility */
@keyframes evxSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinning {
    animation: evxSpin 1s linear infinite;
    display: inline-block;
}

.auth-hint-msg {
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
    transition: color 0.2s ease;
}