/* RESET & GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --brand-orange-start: #FF6B6B;
    --brand-orange-end: #FFD25F;
    --brand-blue: #00FFFF;
    --brand-pink: #FF00E0;
    --brand-purple: #A200FF;
    --brand-purple-dark: #160026;
    --text-light: #f7f7f7;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for nav links */
}

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

/* THEME POLISH: Selection Color */
::selection {
    background: var(--brand-pink);
    color: #fff;
}

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

/* SCROLL ANIMATION CLASSES */
.hidden-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* LEFT LOGO (*** MAXIMUM SPECIFICITY FIX APPLIED ***) */
/* Targets the anchor tag with the class directly */
header a.header-left {
    text-decoration: none !important;
}

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

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

.brand-text {
    font-weight: 900;
    font-size: 1.6rem;
    color: #FFF;
    text-shadow: 0 0 16px rgba(162, 0, 255, 0.4);
    /* AGGRESSIVE FIX on the nested Span: Double-layer protection */
    text-decoration: none !important; 
}

/* NAV */
nav.nav-links {
    display: flex;
    align-items: center;
}

nav.nav-links a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.25s;
    position: relative;
}

/* Scroll Spy Active Link Style */
nav.nav-links a.active { color: var(--brand-blue); font-weight: 700; }
nav.nav-links a:hover { color: var(--brand-blue); }

.cta-header {
    background: linear-gradient(90deg, var(--brand-orange-start), var(--brand-orange-end));
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 900; 
    color: #fff !important;
    margin-left: 32px;
    box-shadow: 0 0 16px rgba(255, 107, 107, 0.7);
    transition: transform 0.2s;
}

.cta-header:hover {
    transform: scale(1.05);
}

/* HAMBURGER (MOBILE NAV) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: 0;
}

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

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

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,0,25,0.6),    
        rgba(10,0,25,0.3),
        rgba(10,0,25,0.05)
    );
    z-index: 0;
}

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

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

.magic-text { color: #ffffff; }

/* CUSTOM SONG & CINEMATIC MUSIC VIDEO GRADIENT */
.grad-main {
    background: linear-gradient(90deg, var(--brand-pink) 0%, var(--brand-purple) 45%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    color: transparent;
}

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

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

/* Hero CTAs */
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; }

/* === ORIGINAL BUTTON STYLES === */
.main-cta-button {
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--brand-orange-start), var(--brand-orange-end));
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}
.main-cta-button:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.7); 
}

.secondary-cta-button {
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-pink));
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.secondary-cta-button:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.4); 
}

.hero-microtrust {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* QUICK 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% 18px;
}

.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 span.label {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--brand-blue);
    margin-bottom: 4px;
}

.value-strip-item strong {
    color: var(--text-light);
}

/* 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); }
}

/* VA BUTTON */
.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;
}
.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 POPUP */
.va-widget {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    max-height: 420px;
    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%;
    display: block;
}

.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;
}

.va-msg {
    padding: 8px 10px;
    border-radius: 12px;
    margin-bottom: 6px;
    font-size: 0.78rem;
    line-height: 1.4;
    max-width: 90%;
    align-self: flex-end;
    background: rgba(255,255,255,0.1);
}

.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-input-wrap { display: flex; gap: 6px; align-items: center; }

.va-input-wrap input {
    flex: 1;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: #0003;
    color: #fff;
    font-size: 0.8rem;
}
.va-input-wrap input:focus { outline: none; border-color: var(--brand-blue); }

.va-input-wrap input::placeholder { color: rgba(255,255,255,0.6); }

.va-input-wrap button {
    padding: 7px 10px;
    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));
}

/* VA Quick Topics Container */
.va-topic-container {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

/* NEW VA QUICK TOPICS STYLES */
.va-topic-btn {
    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, border-color 0.2s;
    text-align: center;
}
.va-topic-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    color: #fff;
    border-color: var(--brand-pink);
}

/* TYPING INDICATOR STYLES */
.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; }
@keyframes bounce { 
    0%, 80%, 100% { transform: translateY(0); } 
    40% { transform: translateY(-4px); } 
}


/* GENERAL SECTION STYLES */
.section-base { padding: 70px 8%; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-heading {
    font-size: 2.4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 34px;
    /* MAGICAL HEADINGS STYLE */
    background: linear-gradient(90deg, var(--brand-pink) 20%, var(--brand-blue) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(255, 0, 224, 0.4);
}

/* NEW SUBHEADER STYLE */
.section-subheading {
    text-align: center;
    font-size: 1.15rem;
    margin-top: -20px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

/* Ambient moving glow behind the text */
.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;
}

/* Glass Card Container */
.what-card {
    position: relative;
    z-index: 1; /* Sits above the background glow */
    background: rgba(255, 255, 255, 0.03); /* Very subtle transparency */
    backdrop-filter: blur(12px); /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Magical Gradient Heading */
.magic-heading {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff 20%, var(--brand-pink) 50%, var(--brand-blue) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(162, 0, 255, 0.3);
}

.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;
}

/* Magical List */
.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, background 0.2s;
}

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

.what-list li::before {
    content: "✨";
    margin-right: 12px;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

.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 SECTION (2 CARDS) - MAGICAL UPGRADE */
.services-section { background: #170032; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

/* CARD STYLES (UNIFIED) */
.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(-10px) scale(1.01); 
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 255, 0.6), 0 0 70px rgba(255, 0, 224, 0.6);
}

.services-card-icon {
    font-size: 2.8rem; 
    margin-bottom: 12px;
    background: linear-gradient(45deg, var(--brand-blue), var(--brand-pink));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.services-card h3, .pricing-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; }
.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 p { font-size: 0.95rem; line-height: 1.7; opacity: 0.96; margin-bottom: 18px; }

/* SPECIFIC COLOR OVERRIDES - FORCED */
.services-card .icon-pink, .pricing-card .icon-pink {
    background: linear-gradient(45deg, var(--brand-pink), #ff69b4) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 15px rgba(255, 0, 224, 0.6);
}

.services-card .icon-cyan, .pricing-card .icon-cyan {
    background: linear-gradient(45deg, var(--brand-blue), #0080ff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

/* PINK BUTTON */
.btn-pink {
    background: linear-gradient(90deg, var(--brand-pink), #ff5ebb) !important;
    box-shadow: 0 5px 15px rgba(255, 0, 224, 0.5) !important;
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-pink:hover {
    box-shadow: 0 5px 25px rgba(255, 0, 224, 0.8) !important;
    filter: brightness(1.2);
    transform: translateY(-3px);
}

/* CYAN/BLUE BUTTON */
.btn-cyan {
    background: linear-gradient(90deg, var(--brand-blue), #0080ff) !important;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.5) !important;
    color: #fff !important; /* WHITE TEXT */
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cyan:hover {
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.8) !important;
    filter: brightness(1.1);
    transform: translateY(-3px);
}

/* DEFAULT BUTTON STYLE */
.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;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-pink));
    box-shadow: 0 5px 15px rgba(255, 0, 224, 0.4);
    transition: 0.2s, box-shadow 0.2s;
}
.services-card a:hover, .pricing-card a:hover {
    filter: brightness(1.2);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.7);
}

/* DEMO THUMBNAILS GRID (The Upgrade) */
.demo-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.demo-thumb {
    background: #220039;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    /* ADDED FOR A11Y FOCUS */
    outline: none; 
    box-shadow: none;
}

.demo-thumb:focus {
    box-shadow: 0 0 0 3px var(--brand-blue);
    border-color: var(--brand-blue);
}

.demo-thumb img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
    transition: 0.3s;
}

.demo-thumb span {
    display: block;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: #160026;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover State */
.demo-thumb:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue);
}
.demo-thumb:hover img {
    opacity: 1;
}

/* Active State (Selected) */
.demo-thumb.active {
    border-color: var(--brand-pink);
    box-shadow: 0 0 20px rgba(255, 0, 224, 0.4);
}
.demo-thumb.active img {
    opacity: 1;
}
.demo-thumb.active span {
    background: linear-gradient(90deg, var(--brand-pink), #8a00b0);
}

/* DEMOS SECTION */
.demos-section {
    padding: 80px 4% 80px;
    background: radial-gradient(circle at top, #3b0f7a 0%, #1a0033 55%, #120027 100%);
    color: var(--text-light);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}
.demos-inner { max-width: 1360px; margin: 0 auto; width: 100%; }
.demos-label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.82rem; font-weight: 600; color: var(--brand-blue); margin-bottom: 8px; }
.demos-title { font-size: 2.4rem; font-weight: 900; margin-bottom: 10px; }
.demos-title span { background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue)); -webkit-background-clip: text; color: transparent; }
.demos-subtitle { font-size: 1rem; max-width: 780px; opacity: 0.95; margin-bottom: 26px; }
.demos-main { max-width: 1120px; margin: 0 auto; text-align: center; }
.demo-video-shell { position: relative; }

.demo-main-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0,255,255,0.6);
    background: radial-gradient(circle at top, #3b0f7a, #090018);
    animation: pulseGlow 6s ease-in-out infinite;
}
.demo-main-video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.demo-main-copy { max-width: 860px; margin: 0 auto; text-align: left; margin-top: 20px; }
.demo-main-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.demo-main-meta { font-size: 0.92rem; opacity: 0.85; margin-bottom: 8px; color: var(--brand-blue); }
.demo-main-desc { font-size: 1rem; opacity: 0.92; }
.demos-footer-cta { margin-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.demos-footer-cta p { font-size: 0.98rem; opacity: 0.9; max-width: 600px; }
.demos-footer-cta a { padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 0.98rem; text-decoration: none; color: #fff; background: linear-gradient(90deg, var(--brand-orange-start), var(--brand-orange-end)); box-shadow: 0 0 18px rgba(255, 107, 107, 0.7); }

/* NEW TESTIMONIAL CAROUSEL (RESPONSIVE FIX) */
.testimonials-section {
    padding: 80px 8%;
    background: #15002b;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; /* Prevents scrollbar */
}

.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);
}

.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 */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}
.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); }

/* Mobile Responsive Testimonials */
@media (max-width: 600px) {
    .review-card { 
        min-width: 85vw; 
        max-width: 85vw; 
    }
}

/* DIVIDER */
.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.6;
}

/* HOW IT WORKS (MAGICAL UPGRADE) */
.how-section {
    padding: 80px 8% 100px;
    background: #15002b;
    position: relative;
}

.how-inner { max-width: 1180px; margin: 0 auto; 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 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1;
}

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

/* FIX 4: Increased visibility of faint numbers */
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.12; /* Increased from 0.05 */
    line-height: 1;
    z-index: 0;
    font-family: sans-serif;
}

/* ICONS */
.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.3));
}

/* STEP 1 SPECIFIC (PINK THEME) */
.step-1:hover { box-shadow: 0 10px 30px rgba(255, 0, 224, 0.2); border-color: rgba(255, 0, 224, 0.3); }
.step-1 .step-number { color: var(--brand-pink); }

/* STEP 2 SPECIFIC (PURPLE THEME) */
.step-2:hover { box-shadow: 0 10px 30px rgba(162, 0, 255, 0.2); border-color: rgba(162, 0, 255, 0.3); }
.step-2 .step-number { color: var(--brand-purple); }

/* STEP 3 SPECIFIC (CYAN THEME) */
.step-3:hover { box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2); border-color: rgba(0, 255, 255, 0.3); }
.step-3 .step-number { color: var(--brand-blue); }

.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-links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* HOW IT WORKS LINKS - COLOR CODED */
.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: 0.2s;
    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-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 {
    color: var(--brand-blue) !important;
    border-color: rgba(0, 255, 255, 0.3) !important;
}
.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);
}

/* PERFECT FOR (MAGICAL UPGRADE) */
.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); /* Glassy transparency */
    border-radius: 24px;
    padding: 30px 20px 35px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center; /* Center the content */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

/* Add a bottom gradient bar that appears on hover */
.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); /* Hidden by default */
    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); /* Reveal the gradient line */
}

/* THE NEW ICONS */
.perfect-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(255, 0, 224, 0.3)); /* Neon glow behind icon */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perfect-card:hover .perfect-icon {
    transform: scale(1.2) rotate(-5deg); /* Fun bounce effect */
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6)); /* Change glow color on hover */
}

.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 - MAGICAL UPGRADE */
.why-section {
    background: #190033;
    padding: 70px 8% 80px;
}

.why-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed to 2x2 Grid */
    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);
}

/* Large Neon Numbers */
.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 SECTION (UPGRADED) */
.pricing-snapshot { background: #170032; padding: 70px 8% 80px; }
.pricing-snapshot-inner { max-width: 1180px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }

.price-tiers { margin: 20px 0 20px; }
.price-tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
}
.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; }
/* Neon colors for prices */
.pink-price { color: var(--brand-pink); text-shadow: 0 0 10px rgba(255,0,224,0.4); }
.cyan-price { color: var(--brand-blue); text-shadow: 0 0 10px rgba(0,255,255,0.4); }

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

/* TRUST SECTION (UPGRADED GRID) */
.trust-section { background: #190033; padding: 65px 8% 80px; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 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 { font-size: 2rem; margin-bottom: 12px; display: block; }
.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; }

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

/* Sparkling dust animation */
.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.2;
    animation: stardust 60s linear infinite;
    z-index: 0;
}

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

.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 p {
    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;
}

/* RESTORED ORIGINAL BUTTON COLORS IN CLOSING CTA */
.closing-cta .main-cta-button {
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--brand-orange-start), var(--brand-orange-end));
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}
.closing-cta .main-cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(255, 107, 107, 0.7); }

.closing-cta .secondary-cta-button {
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-pink));
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.closing-cta .secondary-cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0, 255, 255, 0.4); }

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

.faq-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    /* 2 Columns on Desktop for better use of space */
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03); /* Glassy Background */
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

/* Hover Effect: Lift & Glow */
.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brand-purple);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* The Question Mark Icon */
.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;
}

/* Icon Glows Pink on Hover */
.faq-item:hover .faq-icon {
    background: var(--brand-pink);
    color: #fff;
    box-shadow: 0 0 15px var(--brand-pink);
    transform: rotate(15deg);
}

.faq-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.faq-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #e0e0e0;
    margin: 0;
}

/* Mobile: Stack to 1 column */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-item {
        padding: 24px;
    }
}

/* FOOTER (NEW FOR COMPLETENESS) */
footer {
    background: #0b021f;
    padding: 40px 8%;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* RESPONSIVE */
@media (min-width: 1200px) {
    .headline { font-size: 4.4rem; }
    .subtitle { font-size: 1.3rem; }
    .tagline { font-size: 1.08rem; }
    .demos-title { font-size: 2.6rem; }
    .demos-subtitle { font-size: 1.06rem; }
    .demo-helper-text { font-size: 1.04rem; }
    .demo-main-title { font-size: 1.3rem; }
    .demo-main-desc { font-size: 1.04rem; }
    .how-title { font-size: 3rem; }
}

@media (max-width: 960px) {
    header { padding: 0 4%; }
    .header-left img { height: 50px; }
    .brand-text { font-size: 1.35rem; }
    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 { margin-left: 0; font-size: 0.98rem; }
    nav.nav-links .cta-header { margin-left: 0; margin-top: 6px; }
    .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; min-height: calc(100vh - var(--header-height)); align-items: flex-start; background-position: 70% center; }
    .value-strip-inner { grid-template-columns: 1fr; gap: 10px; }
    
    /* Magical Section Mobile */
    .what-card { padding: 30px 24px; }
    .magic-heading { font-size: 2.2rem; }
    .what-body { grid-template-columns: 1fr; gap: 30px; }

    .services-grid { grid-template-columns: 1fr; }
    .demos-section { padding-top: 52px; padding-bottom: 52px; min-height: auto; align-items: flex-start; }
    
    /* Mobile Thumbnails */
    .demo-thumbnails { grid-template-columns: repeat(2, 1fr); }

    .how-section { padding: 60px 6% 70px; }
    .how-grid { grid-template-columns: 1fr; max-width: 500px; margin: 20px auto 0; }
    .how-card { padding: 30px 24px; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
    .step-number { top: 10px; right: 20px; font-size: 5rem; }
    .step-icon { font-size: 2.5rem; }
    .how-links { flex-direction: column; gap: 12px; }
    .how-links a { text-align: center; }

    .perfect-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    header { height: 70px; }
    .header-left img { height: 44px; }
    .brand-text { font-size: 1.2rem; }
    .hero-section { padding: 22px 6% 40px; background-position: 65% center; background-size: cover; min-height: calc(100vh - 70px); align-items: flex-start; }
    .hero-content { max-width: 100%; }
    .headline { font-size: 2.7rem; line-height: 1.06; word-break: normal; margin-bottom: 16px; }
    .headline span { white-space: normal !important; }
    .subtitle { font-size: 1.06rem; margin-bottom: 10px; }
    .tagline { font-size: 0.98rem; margin-bottom: 16px; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
    .main-cta-button, .secondary-cta-button { justify-content: center; width: 100%; font-size: 0.98rem; padding: 13px 22px; }
    .forever-title { font-size: 1.9rem; }
    .demos-title { font-size: 1.9rem; }
    .demos-subtitle { font-size: 0.96rem; }
    .demo-main-title { font-size: 1.04rem; }
    .demo-main-desc { font-size: 0.92rem; }
    
    .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; letter-spacing: 0; white-space: nowrap; }
    .va-toggle-btn span::before { content: "VA"; font-size: 0.85rem; letter-spacing: 0.5px; color: #fff; display: inline-block; }
    .how-title { font-size: 2.2rem; }
    .perfect-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .headline { font-size: 2.35rem; line-height: 1.04; }
    .subtitle { font-size: 1rem; }
    .tagline { font-size: 0.9rem; }
    .demo-helper-text { font-size: 0.9rem; }
    .demos-footer-cta { flex-direction: column; align-items: flex-start; }
    .demos-footer-cta a { width: 100%; text-align: center; justify-content: center; }
    .va-toggle-btn { bottom: 12px; right: 10px; }
    .va-widget { width: 94vw; right: 3vw; bottom: 80px; max-height: 58vh; }
    
    .closing-cta h2 { font-size: 2rem; }
}

/* START: ORDER FORM STYLES (Added to external CSS for consistency) */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tier-card {
    cursor: pointer;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    background: radial-gradient(circle at top, #300a50, #1b002e);
}
.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}
.tier-card.active {
    border: 2px solid var(--brand-pink);
    background: rgba(255,0,224,0.05);
    box-shadow: 0 0 30px rgba(255, 0, 224, 0.4);
}

.tier-header {
    text-align: center;
    margin-bottom: 15px;
}

.tier-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brand-pink);
}

.tier-length {
    font-size: 0.85rem;
    opacity: 0.8;
}

.tier-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-blue);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.tier-body {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.tier-features {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    text-align: left;
    opacity: 0.9;
}

.tier-features li {
    padding: 5px 0;
    border-bottom: 1px dotted rgba(255,255,255,0.05);
}


/* Form Element Styles */
.order-form {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-section-title {
    text-align: left;
    color: var(--brand-pink);
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="file"],
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: #1a0033;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
}

.form-helper {
    font-size: 0.85rem;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

.hidden-input-container {
    display: none;
    margin-top: 10px;
}

/* Checkbox Grid Styles */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: left;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: 0.2s;
}

.checkbox-item:hover {
    border-color: var(--brand-purple);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: #1a0033;
    border-color: rgba(255,255,255,0.3);
}

/* Style Grid (Visual Styles) */
.style-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.style-card {
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

.style-card.active {
    border-color: var(--brand-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.style-image {
    height: 80px;
    background-size: cover;
    background-position: center;
}

.style-info {
    padding: 8px;
}

.style-title {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-blue);
}

.style-desc {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Total Box Styles */
.total-box {
    margin-top: 30px;
    padding: 15px;
    border-radius: 10px;
    background: var(--brand-purple-dark);
    border: 2px solid var(--brand-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-blue);
}

.total-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-pink);
    text-shadow: 0 0 10px rgba(255,0,224,0.6);
}

/* Policy Box Styles */
.policy-box {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    font-size: 0.9rem;
    text-align: left;
}

.warning-text {
    font-weight: 700;
    color: var(--brand-orange-start);
    display: block;
    margin-bottom: 5px;
}

/* Responsive Overrides for Order Form */
@media (max-width: 960px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .style-grid {
        grid-template-columns: 1fr;
    }
}
/* END: ORDER FORM STYLES */