/* ==========================================================
   PIXIGRAM STUDIO — CLEANED MASTER STYLES
   Drop-in file for: assets/css/styles.css
========================================================== */

/* =========================
   RESET + TOKENS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-orange-start: #FF6B6B;
    --brand-orange-end: #FFD25F;
    --brand-blue: #00FFFF;
    --brand-pink: #FF00E0;
    --brand-purple: #A200FF;
    --brand-purple-dark: #160026;
    --brand-bg-dark: #160026;
    --brand-bg-darker: #0b021f;

    --text-light: #f7f7f7;
    --text-muted: #cfc7da;

    --header-height: 80px;
    --header-pad-x: 4.5%;

    --grad-primary-cta: linear-gradient(90deg, var(--brand-purple), var(--brand-blue));
    --grad-secondary-cta: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
    --grad-text-p-p: linear-gradient(90deg, var(--brand-pink), var(--brand-purple));
    --grad-text-p-c: linear-gradient(90deg, var(--brand-purple), var(--brand-blue));
    --gradient-full: linear-gradient(90deg, #ffbdfc 0%, #ff32f0 33%, #9b4dff 66%, #00e5ff 100%);

    --section-pad-y: 78px;
    --container-max: 1180px;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.09);
    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
}

body,
input,
textarea,
select,
button {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--brand-purple-dark);
    color: var(--text-light);
    overflow-x: hidden;
    font-size: 17px;
    line-height: 1.6;
}

/* =========================
   GLOBAL POLISH
========================= */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0b021f; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-purple), var(--brand-pink));
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-blue); }

::selection {
    background: var(--brand-pink);
    color: #fff;
}

a {
    color: inherit;
}

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

.text-pink { color: var(--brand-pink) !important; }
.text-blue { color: var(--brand-blue) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 16px !important; }

.hidden-element {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-base {
    padding: var(--section-pad-y) 8%;
}

.section-inner,
.demos-inner,
.how-inner,
.pricing-snapshot-inner,
.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-heading {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto 38px;
    background: var(--gradient-full);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: table;
    text-shadow: 0 0 30px rgba(162, 0, 255, 0.18);
}

.section-subheading,
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin: -18px auto 40px;
    opacity: 0.92;
    color: #e7dff1;
    max-width: 980px;
}

.section-divider {
    border: none;
    height: 1px;
    width: 100%;
    margin: 0;
    background: linear-gradient(
        90deg,
        rgba(255,0,224,0),
        rgba(255,0,224,0.7),
        rgba(0,255,255,0.7),
        rgba(255,0,224,0)
    );
    opacity: 0.58;
}

/* =========================
   GRADIENT TEXT
========================= */

.grad-pink-purple,
.grad-purple-cyan {
    display: inline;
    font-weight: 900;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

.grad-pink-purple {
    background-image: linear-gradient(90deg,#ff4fd8,#9c4cff);
}

.grad-purple-cyan {
    background-image: linear-gradient(90deg,#9c4cff,#6df6ff);
}

/* =========================
   HEADER
========================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    padding: 0 var(--header-pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #120027, #1A0033);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

header a.header-left,
header a.header-left span,
header a.header-left img {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 0;
}

.header-left img {
    height: 58px;
    width: auto;
}

.brand-text {
    font-weight: 900;
    font-size: 1.42rem;
    color: #fff;
    text-shadow: 0 0 16px rgba(162, 0, 255, 0.28);
    white-space: nowrap;
}

nav.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

nav.nav-links a {
    margin-left: 0;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.22s ease, transform 0.22s ease;
    position: relative;
    white-space: nowrap;
}

nav.nav-links a:hover {
    color: var(--brand-blue);
    transform: translateY(-1px);
}

nav.nav-links a.active {
    color: var(--brand-blue);
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.25s;
}

/* Header CTA */
.cta-header {
    background: radial-gradient(circle at top left, #2b0c5a, #0b0220);
    border: 2px solid rgba(0,255,255,0.6);
    padding: 10px 24px !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem !important;
    color: #fff !important;
    margin-left: 8px;
    animation: pulseGlow 6s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 18px rgba(255, 0, 224, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cta-header:hover,
.cta-va-style:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 24px rgba(255, 0, 224, 0.8), 0 0 14px rgba(0, 255, 255, 0.72);
}

.cta-va-style {
    background: radial-gradient(circle at top left, #2b0c5a, #0b0220) !important;
    border: 2px solid rgba(0,255,255,0.6) !important;
    box-shadow: 0 0 18px rgba(255, 0, 224, 0.4) !important;
    animation: pulseGlow 6s ease-in-out infinite !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* =========================
   HERO
========================= */
.hero-section {
    background-image: url('../images/pixigram_main_hero.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 42px 8%;
    min-height: calc(100vh - var(--header-height));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,0,25,0.92) 0%,
        rgba(10,0,25,0.82) 38%,
        rgba(10,0,25,0.55) 55%,
        rgba(10,0,25,0.22) 72%,
        rgba(10,0,25,0.06) 90%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding-right: 4vw;
    text-align: left;
}

.hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    opacity: 0.68;
    margin-bottom: 12px;
}

.headline {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 22px;
}

.magic-text { color: #ffffff; }

.subtitle {
    font-size: 1.18rem;
    color: var(--brand-blue);
    margin-bottom: 14px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}

.tagline {
    font-size: 1.03rem;
    opacity: 0.96;
    margin-bottom: 24px;
}

.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.main-cta-button,
.secondary-cta-button,
.main-cta-button-cta {
    padding: 16px 30px;
    border-radius: 999px;
    font-size: 1.04rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.secondary-cta-button,
.btn-pink,
.main-cta-button-cta {
    background: var(--grad-secondary-cta);
    box-shadow: 0 4px 20px rgba(255, 0, 224, 0.45);
}

.main-cta-button,
.btn-cyan {
    background: var(--grad-primary-cta);
    box-shadow: 0 4px 22px rgba(0, 255, 255, 0.55);
}

.secondary-cta-button:hover,
.btn-pink:hover,
.main-cta-button-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 224, 0.86);
}

.main-cta-button:hover,
.btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.88);
}

.hero-microtrust {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    margin-top: 14px;
    text-align: left;
    max-width: 100%;
}

/* =========================
   VALUE STRIP
========================= */
.value-strip {
    background: #190033;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 18px 8%;
}

.value-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    font-size: 0.95rem;
}

.value-strip-item .label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-blue);
    margin-bottom: 4px;
}
.value-strip-item {
    line-height: 1.5;
}
.value-strip-item {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.value-strip-item:hover {
    transform: translateY(-2px);
}
.value-strip-inner {
    position: relative;
}

.value-strip-item {
    position: relative;
    padding: 6px 18px;
}

/* =========================
   WHAT IS PIXIGRAM
========================= */
.what-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, #240046 0%, #0f001e 100%);
    overflow: hidden;
}

.what-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

.what-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 224, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

.what-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.what-body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.what-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    color: #e0e0e0;
}

.what-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.what-list li {
    margin-bottom: 14px;
    font-size: 1.02rem;
    padding: 12px 18px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 3px solid var(--brand-pink);
    transition: transform 0.2s ease, background 0.2s ease;
}

.what-list li:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 15px rgba(255, 0, 224, 0.16);
}

.what-list li::before {
    content: "✨";
    margin-right: 12px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(162, 0, 255, 0.2), rgba(0, 0, 0, 0));
    border: 1px solid rgba(162, 0, 255, 0.3);
    padding: 24px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    box-shadow: 0 0 20px rgba(162, 0, 255, 0.15) inset;
}

/* =========================
   SERVICES
========================= */
.services-section {
    background: #170032;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.services-card,
.pricing-card {
    background: radial-gradient(circle at top, #300a50, #1b002e);
    border-radius: 26px;
    padding: 30px 30px 32px;
    box-shadow: 0 0 20px rgba(0,255,255,0.1), 0 0 40px rgba(255,0,224,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover,
.pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 32px rgba(0,255,255,0.35), 0 0 56px rgba(255,0,224,0.28);
}

.services-card-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.icon-pink {
    background: linear-gradient(45deg, var(--brand-pink), #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-cyan {
    background: linear-gradient(45deg, var(--brand-blue), #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-card h3,
.pricing-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.services-card p,
.pricing-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.96;
    margin-bottom: 18px;
}

.services-card ul,
.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}

.services-card ul li,
.pricing-card ul li {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.services-card a,
.pricing-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.services-card-header{
	display:flex;
	align-items:center;
	gap:10px;
	margin-bottom:8px;
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(90deg,#ff4fd8,#5ae6ff);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* =========================
   DEMOS
========================= */
.demos-section {
    padding: 80px 5% 100px;
    background: radial-gradient(circle at top, #3b0f7a 0%, #1a0033 55%, #120027 100%);
    color: var(--text-light);
}

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

.demos-main {
    margin-top: 20px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-video-shell {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    touch-action: pan-y;
}

.demo-main-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;

    border: 2px solid rgba(0,255,255,0.6);

    box-shadow: 0 0 22px rgba(0,255,255,0.5);

    animation: pulseGlow 6s ease-in-out infinite;
}

.demo-main-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.demo-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.demo-dots button,
.demo-dots .demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--brand-blue);
    background: transparent;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.demo-dots button.active,
.demo-dots .demo-dot.active {
    background: var(--brand-blue);
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.8);
    transform: scale(1.15);
}

.demo-swipe-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 880px;
    margin: 14px auto 8px;
    text-align: center;
}

.demo-main-copy {
    max-width: 880px;
    width: 100%;
    margin: 24px auto 0;
    text-align: left;
}

.demo-main-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    text-align: left;
}

.demo-main-meta {
    font-size: 0.9rem;
    color: var(--brand-blue);
    margin-bottom: 8px;
    text-align: left;
}

.demo-main-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
    text-align: left;
}

.demos-footer-cta {
    margin-top: 26px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 18px;
}

.demos-footer-cta p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.demos-footer-btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.demo-thumbnails{
display:flex;
justify-content:center;
gap:14px;
margin-top:20px;
flex-wrap:wrap;
}

.demo-thumb{
border:none;
background:none;
cursor:pointer;
text-align:center;
opacity:.7;
transition:all .25s ease;
}

.demo-thumb img{
width:110px;
height:70px;
object-fit:cover;
border-radius:10px;
border:2px solid rgba(255,255,255,.1);
}

.demo-thumb span{
display:block;
font-size:.8rem;
margin-top:6px;
opacity:.8;
}

.demo-thumb:hover{
opacity:1;
transform:translateY(-2px);
}

.demo-thumb.active img{
border-color:#7be8ff;
opacity:1;
}
/* =========================
   HOW IT WORKS
========================= */
.how-section {
    padding: 80px 8% 100px;
    background: #15002b;
    position: relative;
}

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

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.how-card {
    position: relative;
    background: linear-gradient(145deg, #220039, #1a002e);
    border-radius: 24px;
    padding: 40px 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.how-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.12;
    line-height: 1;
}

.step-1 .step-number { color: var(--brand-pink); }
.step-2 .step-number { color: var(--brand-purple); }
.step-3 .step-number { color: var(--brand-blue); }

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.25));
}

.how-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.how-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.how-trust {
    margin-top: 28px;
    margin-bottom: 6px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
}

.how-trust strong {
    color: #fff;
    font-weight: 700;
}

.how-links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.how-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.how-btn-pink {
    color: var(--brand-pink) !important;
    border-color: rgba(255, 0, 224, 0.3) !important;
}

.how-btn-cyan {
    color: var(--brand-blue) !important;
    border-color: rgba(0, 255, 255, 0.3) !important;
}

.how-btn-pink:hover {
    background: rgba(255, 0, 224, 0.1) !important;
    box-shadow: 0 0 15px rgba(255, 0, 224, 0.2);
    transform: translateY(-2px);
}

.how-btn-cyan:hover {
    background: rgba(0, 255, 255, 0.1) !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-section {
    padding: 80px 8%;
    background: #15002b;
    overflow: hidden;
}

.reviews-trust {
    margin: 22px auto 36px;
    text-align: center;
    opacity: 0.92;
    font-size: 0.98rem;
}

.reviews-trust-stars {
    display: inline-block;
    margin-right: 10px;
    letter-spacing: 2px;
    color: #FFD700;
}

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 10px 0 40px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-card {
    min-width: 340px;
    max-width: 340px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    flex: 0 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.review-text {
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.reviewer {
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}

.verified {
    font-size: 0.7rem;
    color: var(--brand-blue);
    text-transform: uppercase;
    background: rgba(0,255,255,0.1);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 700;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    align-items: center;
}

.carousel-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--brand-blue);
    color: #000;
    border-color: var(--brand-blue);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.carousel-dot:hover {
    transform: scale(1.15);
}

.carousel-dot.is-active {
    background: rgba(0,255,255,0.5);
    border-color: rgba(0,255,255,0.65);
    box-shadow: 0 0 12px rgba(0,255,255,0.25);
}

/* =========================
   PERFECT FOR
========================= */
.perfect-section {
    background: #170032;
    padding: 70px 8% 80px;
}

.perfect-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.perfect-card {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 30px 20px 35px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.perfect-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.perfect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}

.perfect-card:hover::after {
    transform: scaleX(1);
}

.perfect-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(255, 0, 224, 0.25));
    transition: transform 0.3s ease;
}

.perfect-card:hover .perfect-icon {
    transform: scale(1.18) rotate(-5deg);
}

.perfect-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.perfect-card p {
    font-size: 0.92rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #e0e0e0;
}

/* =========================
   WHY CHOOSE
========================= */
.why-section {
    background: #190033;
    padding: 70px 8% 80px;
}

.why-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.2);
}

.why-number {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.why-card:nth-child(1) .why-number { color: var(--brand-pink); }
.why-card:nth-child(2) .why-number { color: var(--brand-blue); }
.why-card:nth-child(3) .why-number { color: var(--brand-purple); }
.why-card:nth-child(4) .why-number { color: var(--brand-pink); }

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.why-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
}

/* =========================
   PRICING
========================= */
.pricing-snapshot {
    background: #170032;
    padding: 70px 8% 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.price-tiers {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-tier {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
    overflow: hidden;
}

.price-tier:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--brand-blue);
}

.tier-name {
    font-weight: 800;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.tier-price {
    float: right;
    font-weight: 900;
    font-size: 1.2rem;
    margin-left: 10px;
}

.pink-price {
    color: var(--brand-pink);
    text-shadow: 0 0 10px rgba(255,0,224,0.35);
}

.cyan-price {
    color: var(--brand-blue);
    text-shadow: 0 0 10px rgba(0,255,255,0.35);
}

.tier-desc {
    font-size: 0.85rem;
    opacity: 0.88;
    line-height: 1.4;
    display: block;
}

.tier-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg,var(--brand-pink),var(--brand-purple));
    box-shadow: 0 0 12px rgba(255,0,224,0.25);
}

.tier-badge-cyan {
    background: linear-gradient(90deg,var(--brand-purple),var(--brand-blue));
    box-shadow: 0 0 12px rgba(0,255,255,0.25);
}

.tier-kicker{
    margin-top: 2px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
}

.pricing-trust {
    margin: 18px auto 0;
    text-align: center;
    font-size: 0.98rem;
    opacity: 0.92;
    max-width: 900px;
}

.pricing-trust strong {
    color: #fff;
    font-weight: 800;
}

.etsy-note {
    margin-top: 26px;
    font-size: 0.96rem;
    text-align: center;
    opacity: 0.9;
}

.etsy-note a {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: underline;
}

.etsy-note a:hover {
    color: var(--brand-pink);
}

/* =========================
   FOREVER GIFT
========================= */
.forever-gift-section {
    background: radial-gradient(circle at center, #240046, #160026);
    padding: 80px 8%;
    text-align: center;
}

.forever-gift-copy p {
    max-width: 780px;
    margin: 15px auto;
    font-size: 1.12rem;
    line-height: 1.8;
    font-weight: 500;
    opacity: 0.9;
}

.forever-gift-copy p:last-child {
    font-weight: 700;
    font-size: 1.22rem;
    margin-top: 32px;
    opacity: 1;
    color: #fff;
}

.brand-highlight {
    color: var(--brand-blue);
    font-weight: 800;
}

/* =========================
   TRUST SECTION
========================= */
.trust-section {
    background: #190033;
    padding: 65px 8% 80px;
}

.trust-grid {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.trust-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 12px rgba(0,255,255,0.12);
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.trust-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}
.trust-note-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.trust-note{
  text-align:center;
  max-width:720px;
  font-size:0.95rem;
  opacity:0.8;
  line-height:1.5;
}

/* =========================
   CLOSING CTA
========================= */
.closing-cta {
    background: radial-gradient(circle at center, #2b0c5a, #0b0220);
    padding: 100px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-cta::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: radial-gradient(white 1px, transparent 1px),
                      radial-gradient(rgba(255,255,255,0.5) 2px, transparent 2px);
    background-size: 60px 60px, 120px 120px;
    background-position: 0 0, 40px 40px;
    opacity: 0.18;
    animation: stardust 60s linear infinite;
    z-index: 0;
}

.closing-cta h2,
.closing-cta p,
.closing-cta-buttons {
    position: relative;
    z-index: 2;
}

.closing-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--brand-pink), var(--brand-blue));
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 900;
}

.closing-cta-text {
    max-width: 740px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    opacity: 0.96;
    line-height: 1.6;
}

.closing-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================
   FAQ
========================= */
.faq-section {
    padding: 80px 8% 100px;
    background: #170032;
}

.faq-grid-collapsed {
    max-width: 950px;
    margin: 40px auto 0;
    padding: 0 5%;
}

.faq-collapsible-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    transition: background 0.3s;
}

.faq-collapsible-item:last-child {
    border-bottom: none;
}

.faq-collapsible-item[open] {
    background: rgba(255,255,255,0.05);
}

.faq-collapsible-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-light);
    list-style: none;
}

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

.faq-collapsible-summary h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    flex-grow: 1;
    word-break: break-word;
    padding-right: 15px;
}

.faq-collapsible-summary::after {
    content: '▼';
    flex-shrink: 0;
    font-size: 0.8em;
    margin-left: 10px;
    transition: transform 0.3s;
    color: var(--brand-blue);
    font-weight: 900;
}

.faq-collapsible-item[open] .faq-collapsible-summary::after {
    content: '▲';
}

.faq-content-collapsible {
    padding: 0 20px 20px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.faq-content-collapsible p {
    margin-bottom: 0;
    padding-left: 30px;
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brand-blue);
    transition: 0.3s ease;
}

.faq-collapsible-item:hover .faq-icon,
.faq-collapsible-item[open] .faq-icon {
    background: var(--brand-pink);
    color: #fff;
    box-shadow: 0 0 15px var(--brand-pink);
    transform: rotate(10deg);
}

.faq-full-link {
    text-align: center;
    margin-top: 30px;
}

.faq-full-link a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: var(--brand-blue) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    text-decoration: underline !important;
    display: inline-block;
}

.faq-full-link a:hover {
    color: var(--brand-pink) !important;
}

.faq-section a,
.faq-section a:visited {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.faq-section a:hover {
    color: var(--brand-pink);
    text-shadow: 0 0 6px rgba(255, 0, 224, 0.6);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    padding: 60px 0 30px;
    background: var(--brand-bg-dark, #0b021f);
    color: var(--text-light, #f7f7f7);
}

.footer-inner {
    width: min(1200px, 88%);
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 32px;
    align-items: start;
}

/* Tablet */
@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Desktop: force 5 columns */
@media (min-width: 1100px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr 1fr 1fr 1.25fr;
        gap: 40px 36px;
    }
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d3d3d3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 6px #00ffffaa;
}

.footer-connect {
    min-width: 0;
}

.footer-connect-text {
    font-size: 0.95rem;
    color: #d3d3d3;
    margin-bottom: 14px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.93rem;
    padding: 6px 0;
    transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
    color: var(--brand-blue);
    transform: translateX(3px);
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--brand-blue);
}

.social-label {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    margin-top: 24px;
    text-align: center;
}

.footer-copy {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    font-size: 0.85rem;
    color: #cccccc;
    padding: 6px 0 4px;
    margin: 0 auto;
    width: auto;
}

.footer-copy .footer-logo {
    width: 22px;
    height: auto;
    margin: 0 !important;
    opacity: 0.95;
    display: inline-block !important;
    vertical-align: middle;
    flex: 0 0 auto;
}

/* =========================
   VA WIDGET
========================= */
.va-toggle-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 4px;
    border-radius: 999px;
    border: 2px solid rgba(0,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    background: radial-gradient(circle at top left, #2b0c5a, #0b0220);
    animation: pulseGlow 6s ease-in-out infinite;
    transition: transform 0.2s ease;
}

.va-toggle-btn:hover {
    transform: scale(1.05);
}

.va-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 10px;
    border-radius: 999px;
    background: #1a0033;
}

.va-toggle-btn img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: block;
}

.va-toggle-btn span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.va-widget {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    max-height: 70vh;
    background-color: rgba(7,2,24,0.98);
    border-radius: 18px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.18);
    z-index: 1000;
    box-shadow: 0 0 26px rgba(0,0,0,0.6);
}

.va-header {
    padding: 10px 12px;
    background: linear-gradient(130deg, #4C006B, var(--brand-pink));
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.va-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.va-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.va-title {
    display: flex;
    flex-direction: column;
}

.va-title strong {
    font-size: 0.95rem;
}

.va-title small {
    font-size: 0.72rem;
    opacity: 0.9;
}

.va-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.va-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.va-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    max-height: 260px;
    padding-right: 4px;
    padding-top: 4px;
}

.va-msg {
    max-width: 90%;
    padding: 8px 10px;
    border-radius: 12px;
    margin-bottom: 6px;
    font-size: 0.82rem;
    line-height: 1.5;
    align-self: flex-end;
    background: rgba(255,255,255,0.1);
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.va-msg strong {
    font-weight: 700;
    color: #ffffff;
}

.va-bot {
    background: linear-gradient(130deg, rgba(76,0,107,0.5), rgba(255,0,224,0.2));
    align-self: flex-start;
    border: 1px solid rgba(255,255,255,0.1);
}

.va-typing {
    background: linear-gradient(130deg, rgba(76,0,107,0.5), rgba(255,0,224,0.2));
    align-self: flex-start;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 6px;
    max-width: 90%;
}

.va-typing .dot {
    width: 6px;
    height: 6px;
    background: var(--brand-blue);
    border-radius: 50%;
    margin: 0 2px;
    animation: bounce 1.4s infinite ease-in-out;
}

.va-typing .dot:nth-child(2) { animation-delay: -1.2s; }
.va-typing .dot:nth-child(3) { animation-delay: -1.0s; }

.va-topic-container {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.va-topic-btn,
.va-options .va-option {
    padding: 6px 10px;
    border-radius: 18px;
    border: 1px solid var(--brand-blue);
    background: rgba(0,255,255,0.1);
    color: var(--brand-blue);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
    text-align: center;
}

.va-topic-btn:hover,
.va-options .va-option:hover,
.va-options .va-option:focus-visible {
    background: rgba(0,255,255,0.25);
    color: #fff;
    border-color: var(--brand-pink);
    transform: translateY(-1px);
}

.va-input-wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

#va-input {
    display: block;
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ffffff;
    background: transparent;
    border: none;
    outline: none;
    min-height: 44px;
    max-height: 120px;
    resize: none;
    overflow-y: auto;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

#va-send {
    padding: 7px 12px;
    border-radius: 999px;
    border: none;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(120deg, var(--brand-blue), var(--brand-pink));
}

/* =========================
   PROCESS PAGES
========================= */
.process-section {
    padding: 88px 8% 80px;
    min-height: 100vh;
    background: radial-gradient(circle at top, #2b0c5a 0%, #160026 55%, #0b021f 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
                      radial-gradient(rgba(0,255,255,0.18) 2px, transparent 2px);
    background-size: 80px 80px, 150px 150px;
    background-position: 0 0, 40px 40px;
    opacity: 0.12;
    animation: stardust 55s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.process-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-subheading {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.process-subheading strong {
    background: var(--gradient-full);
    -webkit-background-clip: text;
    color: transparent;
}

.steps-container {
    margin-top: 10px;
}

.step-item {
    margin: 30px 0;
    padding: 32px 30px;
    position: relative;
    background: radial-gradient(circle at top left, rgba(76,0,107,0.65), rgba(11,2,31,0.95));
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 35px rgba(0,0,0,0.6);
    text-align: left;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.step-item::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,0,224,0.6), rgba(0,255,255,0.6));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.28s ease;
}

.step-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.75);
    border-color: transparent;
}

.step-item:hover::after {
    opacity: 0.65;
}

.step-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.step-title-wrap h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.step-title-wrap .icon {
    font-size: 2.4rem;
    background: var(--gradient-full);
    -webkit-background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(0,255,255,0.4));
}

.step-content p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.98rem;
    color: var(--text-light);
}

.step-content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.step-content ul li::before {
    content: "💖";
    margin-right: 10px;
    font-size: 1.1em;
    line-height: 1;
}

.result-box {
    margin-top: 60px;
    padding: 46px 40px 40px;
    border-radius: 26px;
    border: 1px solid rgba(0,255,255,0.9);
    background: radial-gradient(circle at top, #4a0b7c, #220039 55%, #160026 100%);
    box-shadow: 0 0 18px rgba(0,255,255,0.35), 0 0 40px rgba(255,0,224,0.28);
    text-align: center;
    position: relative;
}

.result-box h4 {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ffffff, var(--brand-pink), var(--brand-blue));
    -webkit-background-clip: text;
    color: transparent;
}

.result-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 20px;
    color: #fdfdfd;
}

.result-box ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.result-box ul li {
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(0,255,255,0.18);
    border: 1px solid rgba(0,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.process-cta-bar {
    margin-top: 36px;
    padding: 40px 32px;
    text-align: center;
    border-radius: 26px;
    background: radial-gradient(circle at top, #3b0f7a 0%, #1a0033 55%, #120027 100%);
    border: 1px solid rgba(0,255,255,0.8);
    box-shadow: 0 0 25px rgba(0,255,255,0.28), 0 0 45px rgba(255,0,224,0.24);
}
.process-cta-bar p {
    margin-bottom: 22px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-bridge-text {
    margin: 24px auto 18px;
    text-align: center;
    font-size: 1.05rem;
    max-width: 760px;
    opacity: 0.92;
    line-height: 1.6;
}

.process-cta-bar h4 {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #ffffff 10%, var(--brand-pink) 45%, var(--brand-blue) 90%);
    -webkit-background-clip: text;
    color: transparent;
}

.process-cta-bar .main-cta-button {
    padding: 16px 34px;
    font-size: 1.15rem;
    border-radius: 999px;
    background: var(--grad-primary-cta);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes pulseGlow {
    0%   { box-shadow: 0 0 22px rgba(0,255,255,0.5); }
    50%  { box-shadow: 0 0 40px rgba(255,0,224,0.9); }
    100% { box-shadow: 0 0 22px rgba(0,255,255,0.5); }
}

@keyframes floatGlow {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(30px, 40px); }
}

@keyframes stardust {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 1200px) {
    .headline { font-size: 4.35rem; }
    .subtitle { font-size: 1.28rem; }
    .tagline { font-size: 1.08rem; }
}

@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .footer-columns {
        grid-template-columns: repeat(4, minmax(230px, 1fr));
        column-gap: 30px;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    header {
        padding: 0 4%;
    }

    .header-left img {
        height: 50px;
    }

    .brand-text {
        font-size: 1.22rem;
    }

    nav.nav-links {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        padding: 14px 6%;
        background: linear-gradient(180deg, #1A0033, #0b021f);
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        display: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav.nav-links a {
        font-size: 0.98rem;
        width: 100%;
    }

    nav.nav-links .cta-header {
        margin-left: 0;
        margin-top: 10px;
        width: fit-content;
    }

    .nav-toggle {
        display: block;
    }

    body.nav-open nav.nav-links {
        display: flex;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-section {
        padding: 32px 6% 44px;
        background-position: 70% center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .value-strip-inner,
    .services-grid,
    .how-grid,
    .pricing-grid,
    .trust-grid,
    .perfect-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .what-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .what-card {
        padding: 30px 24px;
    }

    .demos-footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .demos-footer-btn {
        margin-top: 10px;
    }

    .how-links {
        flex-direction: column;
        gap: 12px;
    }

    .how-links a {
        text-align: center;
    }

    .review-card {
        min-width: 320px;
        max-width: 320px;
    }

    .process-section {
        padding: 100px 6% 70px;
    }

    .step-item {
        padding: 26px 22px;
    }

    .result-box {
        padding: 38px 26px 32px;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }

    .header-left img {
        height: 44px;
    }

    .brand-text {
        font-size: 1.12rem;
    }

    .hero-section {
        padding: 22px 6% 40px;
        background-position: 65% center;
        min-height: calc(100vh - 70px);
        align-items: flex-start;
    }

    .headline {
        font-size: 2.35rem;
        line-height: 1.06;
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: 1.02rem;
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 0.96rem;
        margin-bottom: 16px;
    }

    .hero-microtrust {
        font-size: 0.84rem;
        text-align: left;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .section-subheading,
    .section-subtitle {
        font-size: 1rem;
    }

    .demo-main-title {
        font-size: 1.06rem;
    }

    .demo-main-desc {
        font-size: 0.9rem;
    }

    .demo-main-video-wrapper {
        border-radius: 18px;
        box-shadow: 0 0 30px rgba(0,255,255,0.3);
    }

    .va-widget {
        width: 92vw;
        right: 4vw;
        bottom: 86px;
        max-height: 60vh;
    }

    .va-toggle-btn {
        right: 16px;
        bottom: 18px;
    }

    .va-toggle-btn .va-inner {
        padding: 6px 10px 6px 6px;
        gap: 6px;
    }

    .va-toggle-btn img {
        width: 32px;
        height: 32px;
    }

    .va-toggle-btn span {
        font-size: 0;
    }

    .va-toggle-btn span::before {
        content: "VA";
        font-size: 0.85rem;
        color: #fff;
        display: inline-block;
    }

    .process-cta-bar h4,
    .result-box h4,
    .closing-cta h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 600px) {
    .hero-cta,
    .closing-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .main-cta-button,
    .secondary-cta-button,
    .main-cta-button-cta {
        width: 100%;
        justify-content: center;
    }

    .review-card {
        min-width: 85vw;
        max-width: 85vw;
    }

    .site-footer {
        padding: 40px 6% 26px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2.15rem;
        line-height: 1.04;
    }

    .subtitle {
        font-size: 0.98rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .footer-inner {
        width: 90%;
    }

    .va-toggle-btn {
        bottom: 12px;
        right: 10px;
    }

    .va-widget {
        width: 94vw;
        right: 3vw;
        bottom: 80px;
        max-height: 58vh;
    }
}
/* ==========================================================
   FINAL CLEAN OVERRIDES
   Replace all messy add-ons at bottom with this block only
========================================================== */

/* =========================
   FOOTER FINAL
========================= */
.site-footer {
    padding: 60px 0 30px;
    background: var(--brand-bg-dark, #0b021f);
    color: var(--text-light, #f7f7f7);
}

.site-footer .footer-inner {
    width: min(1200px, 88%);
    margin: 0 auto;
}

.site-footer .footer-columns {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px 32px !important;
    align-items: start !important;
}

.site-footer .footer-col,
.site-footer .footer-columns > div {
    min-width: 0 !important;
    margin-bottom: 0 !important;
}

.site-footer .footer-heading {
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 700;
}

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

.site-footer .footer-links li {
    margin-bottom: 8px;
}

.site-footer .footer-links a {
    color: #d3d3d3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.site-footer .footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 6px #00ffffaa;
}

.site-footer .footer-connect {
    min-width: 0 !important;
}

.site-footer .footer-connect-text {
    font-size: 0.95rem;
    color: #d3d3d3;
    margin-bottom: 14px;
    line-height: 1.6;
    max-width: 260px !important;
}

.site-footer .footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.93rem;
    padding: 6px 0;
    transition: color 0.2s, transform 0.2s;
}

.site-footer .social-link:hover {
    color: var(--brand-blue);
    transform: translateX(3px);
}

.site-footer .social-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.site-footer .social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--brand-blue);
}

.site-footer .social-label {
    font-weight: 500;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    margin-top: 24px;
    text-align: center;
}

.site-footer .footer-copy {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    font-size: 0.85rem;
    color: #cccccc;
    padding: 6px 0 4px;
    margin: 0 auto;
    width: auto;
}

.site-footer .footer-copy .footer-logo {
    width: 22px;
    height: auto;
    margin: 0 !important;
    opacity: 0.95;
    display: inline-block !important;
    vertical-align: middle;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .site-footer .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1100px) {
    .site-footer .footer-columns {
        grid-template-columns: 1.1fr 0.9fr 1fr 1.1fr 1fr !important;
    }
}

/* =========================
   HERO FINAL
========================= */
.hero-content {
    background: linear-gradient(
        90deg,
        rgba(10,0,25,0.78) 0%,
        rgba(10,0,25,0.56) 58%,
        rgba(10,0,25,0.18) 82%,
        rgba(10,0,25,0) 100%
    );
    border-radius: 14px;
}

.headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.02em;
    overflow: visible;
}

.headline .magic-text,
.headline .grad-pink-purple,
.headline .grad-purple-cyan,
.headline .or-text {
    display: block;
    width: auto !important;
    max-width: none !important;
    overflow: visible;
}

.headline .or-text {
    font-weight: 800;
    color: #ffffff;
}

.headline .grad-pink-purple,
.headline .grad-purple-cyan {
    padding-bottom: 0.08em; /* fixes clipped descenders like g/y/p */
}

@media (min-width: 961px) {
    .hero-section {
        min-height: calc(100vh - var(--header-height));
        padding-top: 24px;
        padding-bottom: 24px;
        align-items: center;
    }

    .hero-content {
        max-width: 720px;
        padding: 34px 42px 28px 0;
    }

    .hero-eyebrow {
        margin-bottom: 10px;
        font-size: 0.78rem;
        letter-spacing: 0.18em;
        opacity: 0.68;
    }

    .headline {
        font-size: 4.05rem;
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .headline .magic-text,
    .headline .grad-pink-purple,
    .headline .grad-purple-cyan,
    .headline .or-text {
        white-space: nowrap;
    }

    .subtitle {
        font-size: 1.08rem;
        margin-bottom: 16px;
        max-width: 680px;
		margin-bottom: 28px;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 22px;
        max-width: 660px;
    }

    .hero-cta {
        gap: 18px;
        margin-bottom: 28px;
    }

    .main-cta-button,
    .secondary-cta-button {
        padding: 14px 26px;
        font-size: 1rem;
    }

    .hero-microtrust {
        font-size: 0.84rem;
        line-height: 1.45;
        margin-top: 16px;
        opacity: 0.84;
        max-width: 640px;
    }
}

@media (max-width: 960px) {
    .headline {
        font-size: 2.7rem;
        line-height: 1.04;
    }

    .headline .magic-text,
    .headline .grad-pink-purple,
    .headline .grad-purple-cyan,
    .headline .or-text {
        white-space: normal;
    }

    .headline .grad-pink-purple,
    .headline .grad-purple-cyan {
        padding-bottom: 0.05em;
    }

    .hero-content {
        background: linear-gradient(
            180deg,
            rgba(10,0,25,0.55) 0%,
            rgba(10,0,25,0.20) 100%
        );
        padding: 0;
        border-radius: 0;
    }
}
/* =========================
   HEADER BRAND BLOCK FINAL
========================= */
.header-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
    text-decoration: none !important;
}

.header-left img {
    display: block !important;
    width: auto !important;
    height: 56px !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    object-fit: contain !important;
}

.brand-block {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    line-height: 1.05 !important;
    min-width: 0 !important;
}

.brand-text {
    display: block !important;
    font-weight: 900 !important;
    font-size: 1.42rem !important;
    color: #fff !important;
    text-shadow: 0 0 16px rgba(162, 0, 255, 0.28) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.brand-tagline {
    display: block !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.08em !important;
    color: rgba(255,255,255,0.68) !important;
    margin-top: 4px !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
}

@media (max-width: 960px) {
    .header-left img {
        height: 48px !important;
    }

    .brand-text {
        font-size: 1.18rem !important;
    }

    .brand-tagline {
        font-size: 0.58rem !important;
        letter-spacing: 0.05em !important;
    }
}

@media (max-width: 768px) {
    .brand-tagline {
        display: none !important;
    }

    .header-left img {
        height: 44px !important;
    }

    .brand-text {
        font-size: 1.08rem !important;
    }
}
.hero-microtrust {
    font-size: 0.88rem;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

/* =========================
   DEMO THUMBNAILS — CLEAN FINAL
========================= */
.demo-thumbnails {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 22px auto 0;
    max-width: 980px;
}

.demo-thumb {
    position: relative;
    width: 190px;
    height: 110px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    opacity: 0.82;
    transition:
        transform 0.24s ease,
        opacity 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        filter 0.24s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.28);
}

.demo-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,4,40,0.68) 0%,
        rgba(10,4,40,0.24) 50%,
        rgba(10,4,40,0.05) 100%
    );
    pointer-events: none;
}

.demo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.28s ease, filter 0.28s ease;
    filter: brightness(0.88) saturate(0.96);
}

/* Centered label pill */
.demo-thumb-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    padding: 12px 10px;
    margin: 0;

    background: rgba(18, 8, 56, 0.82);
    border: 0;
    border-radius: 0;

    color: #fff;
    text-align: center;

    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    transform: none !important;
    max-width: none !important;
    min-width: 0 !important;
    box-shadow: none !important;
}

.demo-thumb.active .demo-thumb-label {
    background: linear-gradient(
        90deg,
        rgba(162,0,255,0.98),
        rgba(0,255,255,0.94)
    ) !important;
    border: 0 !important;
    box-shadow: none !important;
}
.demo-thumb {
    padding: 0 !important;
    overflow: hidden !important;
}

.demo-thumb:hover {
    transform: translateY(-3px);
    opacity: 1;
    border-color: rgba(0,255,255,0.34);
    box-shadow:
        0 12px 24px rgba(0,0,0,0.34),
        0 0 14px rgba(0,255,255,0.10);
}

.demo-thumb:hover img {
    transform: scale(1.06);
    filter: brightness(0.96) saturate(1.02);
}

/* Active thumbnail — no white side lines */
.demo-thumb.active {
    opacity: 1;
    border-color: rgba(0,255,255,0.62);
    box-shadow:
        0 0 0 2px rgba(0,255,255,0.14),
        0 10px 22px rgba(0,0,0,0.38),
        0 0 18px rgba(0,255,255,0.18);
    animation: none;
}

.demo-thumb.active img {
    filter: brightness(1) saturate(1.04);
}

.demo-thumb.active .demo-thumb-label {
    background: linear-gradient(
        90deg,
        rgba(162,0,255,0.82),
        rgba(0,255,255,0.78)
    );
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 6px 14px rgba(0,0,0,0.24);
}

/* Mobile */
@media (max-width: 768px) {
    .demo-thumb-label {
        left: 6px;
        right: 6px;
        bottom: 6px;
        padding: 8px 8px;
        font-size: 0.72rem;
    }
}

    .demo-thumb {
        flex: 0 0 auto;
        width: 156px;
        height: 92px;
        border-radius: 16px;
    }

    .demo-thumb-label {
        bottom: 8px;
        min-width: 108px;
        max-width: 84%;
        padding: 8px 14px;
        font-size: 0.74rem;
    }
}

@media (max-width: 480px) {
    .demo-thumb {
        width: 142px;
        height: 86px;
    }

    .demo-thumb-label {
        min-width: 98px;
        font-size: 0.7rem;
        padding: 7px 12px;
    }
}
/* =========================
   VA WIDGET FINAL FIX
========================= */
.va-widget {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    max-height: 70vh;
    background-color: rgba(7,2,24,0.98);
    border-radius: 18px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.18);
    z-index: 1000;
    box-shadow: 0 0 26px rgba(0,0,0,0.6);
}

.va-widget.open {
    display: flex !important;
}

.va-toggle-btn {
    z-index: 1001;
}

@media (max-width: 768px) {
    .va-widget {
        width: 92vw;
        right: 4vw;
        bottom: 86px;
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .va-widget {
        width: 94vw;
        right: 3vw;
        bottom: 80px;
        max-height: 58vh;
    }
}
.tier-grid-v2{
    align-items: stretch;
}

.tier-card-v2{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding-top: 28px 24px 24px;
	border-radius:22px;
    border:2px solid rgba(255,255,255,0.16);
    background:radial-gradient(circle at top, rgba(255,255,255,0.10), rgba(5,0,25,0.9));
    cursor:pointer;
    transition:all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow:visible;
}

.tier-card-v2 .tier-top{
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    padding-top: 8px;
}

.tier-card-v2 .tier-name{
    font-size: 1.42rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    text-align: center;
}

.tier-card-v2 .tier-length{
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--brand-pink);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-card-v2 .tier-price{
    min-height: 76px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 16px rgba(255, 0, 224, 0.45);
    margin: 0 auto 8px;
    font-variant-numeric: tabular-nums lining-nums;
}

.tier-card-v2 .tier-price-featured{
    font-size: 2.7rem;
}

.tier-divider{
    border: none;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.16),
        transparent
    );
    margin: 8px 0 22px;
}

.tier-card-v2 .tier-body {
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.tier-card-v2 .tier-features{
    background: linear-gradient(
        180deg,
        rgba(35,0,55,0.75),
        rgba(10,0,25,0.92)
    );
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 18px 18px 16px;
    list-style: none;
    margin: 0;
    text-align: left;
    box-shadow:
        inset 0 0 25px rgba(255,255,255,0.02),
        0 10px 30px rgba(0,0,0,0.35);
    min-height: 250px;
}

.tier-card-v2 .tier-features li{
    margin-bottom: 10px;
    font-size: 0.94rem;
    line-height: 1.45;
    padding-left: 26px;
    position: relative;
}

.tier-card-v2 .tier-features li:last-child{
    margin-bottom: 0;
}

.tier-card-v2 .tier-features li::before{
    content: "✔";
    color: var(--brand-pink);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    font-size: 1rem;
}

.tier-card-v2 .tier-features .tier-inherit{
    color: #ffffff;
    padding-left: 22px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-bottom: 12px;
    position: relative;
}

.tier-card-v2 .tier-features .tier-inherit::before{
    content: "✦";
    color: var(--brand-pink);
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.9rem;
    font-weight: 900;
}

.tier-card-v2 .tier-best{
    margin-top:auto;
    min-height:90px;
    font-size:0.9rem;
    line-height:1.5;
    color:rgba(255,255,255,0.9);
    font-style:italic;
    position:relative;
    padding-left:22px;
}
.tier-card-v2 .tier-features{
    margin-bottom:18px;
}

.tier-card-v2 .tier-best::before{
    content: "💜";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tier-card-featured{
    transform: scale(1.02);
    border: 1px solid rgba(255,255,255,0.14);

    background:
        linear-gradient(
            180deg,
            rgba(120,40,200,0.35),
            rgba(20,0,40,0.75)
        );

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        0 0 40px rgba(160,60,255,0.18);
}

.tier-card-featured:hover{
    transform: translateY(-6px) scale(1.02);
}

.tier-corner-badge{
    position: absolute;
    top: 12px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--brand-pink),var(--brand-purple));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 0 18px rgba(255,0,224,0.24);
    white-space: nowrap;
    z-index: 3;
}
.tier-corner-badge-blue{
    position: absolute;
    top: 12px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--brand-purple),var(--brand-blue));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 0 18px rgba(255,0,224,0.24);
    white-space: nowrap;
    z-index: 3;
}

@media (max-width: 960px){
    .tier-card-featured{
        transform: none;
    }

    .tier-card-featured:hover{
        transform: translateY(-6px);
    }

    .tier-card-v2 .tier-top,
    .tier-card-v2 .tier-length,
    .tier-card-v2 .tier-price,
    .tier-card-v2 .tier-body,
    .tier-card-v2 .tier-features{
        min-height: auto;
    }

    .tier-corner-badge{
        top: 10px;
        right: 12px;
        font-size: 0.68rem;
        padding: 6px 11px;
    }
}
.total-breakdown{
    margin: 18px auto 0;
    max-width: 520px;
    text-align: left;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.total-breakdown-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    padding: 6px 0;
}

.total-breakdown-row span:first-child{
    opacity: 0.92;
}

.total-breakdown-row span:last-child{
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.total-breakdown-row.is-total{
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.14);
    font-size: 1rem;
}
.ready-microcopy{
    margin-top: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    text-align: center;
}
.ready-card{
    margin-top: 28px;
}

.cta-micro-trust{
    margin-top:8px;
    margin-bottom:18px;
    font-size:0.95rem;
    opacity:0.85;
}

.cta-subtle-note{
    margin-top:10px;
    font-size:0.85rem;
    opacity:0.6;
}

.inline-field-error{
    display:block;
    margin-top:10px;
    color:#ff6b6b;
    font-weight:800;
    font-size:0.88rem;
}
@keyframes ctaGlowPulse {
    0% {
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.10),
            0 0 18px rgba(0,255,255,0.18),
            0 10px 28px rgba(0,0,0,0.30);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.14),
            0 0 32px rgba(0,255,255,0.35),
            0 16px 40px rgba(0,0,0,0.45);
    }

    100% {
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.10),
            0 0 18px rgba(0,255,255,0.18),
            0 10px 28px rgba(0,0,0,0.30);
    }
}
/* =========================================================
   GLOBAL HOMEPAGE CLEANUP (NON-DESTRUCTIVE OVERRIDE)
   ========================================================= */

/* 1. UNIFY BACKGROUND AFTER HERO */
.value-strip,
.demos-section,
.what-section,
.services-section,
.how-section,
.testimonials-section,
.perfect-section,
.why-section,
.pricing-snapshot,
.forever-gift-section,
.trust-section,
.closing-cta,
.faq-section {
    background: #070417 !important;
}

/* 2. UNIFIED CARD SYSTEM */
.services-card,
.pricing-card,
.perfect-card,
.why-card,
.trust-item,
.review-card,
.faq-home-card {
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.04), transparent 40%),
        linear-gradient(180deg, rgba(28, 0, 48, 0.92), rgba(14, 0, 28, 0.96)) !important;

    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 22px !important;

    box-shadow: 0 16px 40px rgba(0,0,0,0.55) !important;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

/* 3. CINEMATIC HOVER SYSTEM (UNIFIED) */
.services-card:hover,
.pricing-card:hover,
.perfect-card:hover,
.why-card:hover,
.trust-item:hover,
.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);

    box-shadow:
        0 24px 60px rgba(0,0,0,0.65),
        0 0 28px rgba(255,0,224,0.12); /* base glow */
}

/* special glow tuning */
.services-card:nth-child(1):hover {
    box-shadow:
        0 24px 60px rgba(0,0,0,0.65),
        0 0 34px rgba(255,0,224,0.18);
}

.services-card:nth-child(2):hover {
    box-shadow:
        0 24px 60px rgba(0,0,0,0.65),
        0 0 34px rgba(108,245,255,0.18);
}

.pricing-card:nth-child(1):hover {
    box-shadow:
        0 24px 60px rgba(0,0,0,0.65),
        0 0 30px rgba(255,0,224,0.16);
}

.pricing-card:nth-child(2):hover {
    box-shadow:
        0 24px 60px rgba(0,0,0,0.65),
        0 0 30px rgba(108,245,255,0.16);
}

/* 4. REMOVE RANDOM GRADIENT LINES (PERFECT SECTION FIX) */
.perfect-card::after {
    display: none !important;
}

/* 5. ACCENT SYSTEM (MATCH "HOW" NUMBERS) */
.decorative-accent {
    position: absolute;
    top: 18px;
    left: 22px;

    font-size: 4.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;

    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.decorative-accent-pink {
    color: #ff54dd;
    text-shadow: 0 0 20px rgba(255,84,221,0.14);
}

.decorative-accent-cyan {
    color: #7fefff;
    text-shadow: 0 0 20px rgba(127,239,255,0.14);
}

/* ensure content sits above accent */
.services-card > *,
.pricing-card > * {
    position: relative;
    z-index: 1;
}

/* spacing so accent doesn't collide */
.services-card.decorative-accent-card,
.pricing-card.decorative-accent-card {
    padding-top: 110px !important;
}

/* 6. CTA CONSISTENCY */
.btn-pink,
.btn-cyan,
.secondary-cta-button,
.main-cta-button {
    min-width: 200px;
    text-align: center;
    border-radius: 999px;
    font-weight: 800;
}

.btn-pink:hover,
.btn-cyan:hover,
.secondary-cta-button:hover,
.main-cta-button:hover {
    transform: translateY(-2px);
}
/* song side hover (Spark / Signature / Spotlight) */
/* SONG TIERS (left) → pink hover */
.pricing-card:first-child .price-tier:hover {
    border-color: var(--brand-pink);
}

/* VIDEO TIERS (right) → cyan hover */
.pricing-card:last-child .price-tier:hover {
    border-color: var(--brand-blue);
}
