:root {
    --background: #09090b;
    --foreground: #ffffff;
    --card: #18181b;
    --card-foreground: #ffffff;
    --popover: #141118;
    --primary: #ff4da6;
    --primary-foreground: #09090b;
    --secondary: #7c3aed;
    --secondary-foreground: #ffffff;
    --muted: #18181b;
    --muted-foreground: #a1a1aa;
    --accent: #f5b942;
    --accent-foreground: #09090b;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 1.25rem;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.font-mono {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
}

.text-primary {
    color: var(--primary) !important;
}

.text-muted-fg {
    color: var(--muted-foreground);
}

.bg-card {
    background: var(--card);
}

.border-token {
    border: 1px solid var(--border);
}

.text-gradient {
    background: linear-gradient(100deg, #ff4da6 0%, #c026d3 45%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.brand-gradient {
    background: linear-gradient(120deg, #ff4da6 0%, #7c3aed 100%);
}

.glass {
    background: rgba(24, 24, 27, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-strong {
    background: rgba(10, 10, 15, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-pink {
    box-shadow: 0 0 40px -8px rgba(255, 77, 166, 0.55);
}

.glow-purple {
    box-shadow: 0 0 50px -10px rgba(124, 58, 237, 0.5);
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.animate-floaty {
    animation: floaty 6s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.animate-pulse-dot {
    animation: pulseDot 2s infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.7s ease both;
}

@media (prefers-reduced-motion: reduce) {

    .animate-floaty,
    .animate-pulse-dot,
    .animate-marquee,
    .animate-fade-up {
        animation: none;
    }
}

/* ---------- NAVBAR ---------- */
#navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all .3s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.82);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link-item {
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color .2s;
}

.nav-link-item:hover {
    color: var(--foreground);
}

.btn-nav-cta {
    border-radius: 999px;
    padding: .6rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary-foreground);
    transition: transform .2s;
}

.btn-nav-cta:hover {
    transform: scale(1.03);
    color: var(--primary-foreground);
}

.mobile-toggle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--foreground);
}

/* ---------- AGE GATE ---------- */
#ageGate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#ageGate .backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(24px);
}

#ageGate .modal-box {
    position: relative;
    width: 100%;
    max-width: 28rem;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.age-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.btn-age-confirm {
    border-radius: 999px;
    padding: .9rem 1.5rem;
    font-weight: 600;
    color: var(--primary-foreground);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: none;
    transition: transform .2s;
}

.btn-age-confirm:hover {
    transform: scale(1.02);
    color: var(--primary-foreground);
}

.btn-age-deny {
    border-radius: 999px;
    padding: .9rem 1.5rem;
    font-weight: 500;
    font-size: .9rem;
    color: var(--muted-foreground);
    background: transparent;
    border: 1px solid var(--border);
    width: 100%;
}

.btn-age-deny:hover {
    color: var(--foreground);
}

/* ---------- HERO ---------- */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 9rem;
    padding-bottom: 4rem;
}

.hero-glow-1 {
    position: absolute;
    top: -8rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.25);
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    top: 5rem;
    right: 0;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: rgba(255, 77, 166, 0.20);
    filter: blur(130px);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    padding: .4rem 1rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.hero-headline {
    margin-top: 1.5rem;
    font-weight: 600;
    line-height: 1.05;
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    letter-spacing: -0.02em;
}

.hero-sub {
    margin-top: 1.5rem;
    max-width: 34rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.btn-hero-primary {
    border-radius: 999px;
    padding: .9rem 1.75rem;
    font-weight: 600;
    color: var(--primary-foreground);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: transform .2s;
    border: none;
}

.btn-hero-primary:hover {
    transform: scale(1.03);
    color: var(--primary-foreground);
}

.btn-hero-outline {
    border-radius: 999px;
    padding: .9rem 1.75rem;
    font-weight: 500;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--foreground);
    transition: color .2s, border-color .2s;
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
}

.hero-stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted-foreground);
}

.hero-image-wrap {
    position: relative;
    max-width: 26rem;
    margin: 0 auto;
}

.hero-image-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 1rem;
    padding: 1rem;
}

.hero-float-rating {
    position: absolute;
    left: -1rem;
    top: 2.5rem;
    border-radius: 1rem;
    padding: .75rem 1rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .5);
}

.hero-float-verified {
    position: absolute;
    right: -.75rem;
    bottom: 6rem;
    border-radius: 1rem;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .5);
}

/* ---------- MARQUEE ---------- */
.marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(24, 24, 27, 0.4);
    padding: 1.25rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2.5rem;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
}

.marquee-item span.txt {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--muted-foreground);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* ---------- SECTION HEADING ---------- */
.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--primary);
}

.section-title {
    margin-top: .75rem;
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -0.01em;
}

.section-title .hl {
    font-style: italic;
}

.section-desc {
    margin-top: 1rem;
    color: var(--muted-foreground);
    max-width: 34rem;
}

/* ---------- CREATOR CARDS ---------- */
.creator-card {
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
    transition: transform .3s, border-color .3s;
    height: 100%;
}

.creator-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 166, .4);
}

.creator-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.creator-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform .5s;
    object-position: top center;
}

.creator-card:hover .creator-img-wrap img {
    transform: scale(1.05);
}

.creator-tag {
    position: absolute;
    left: 1rem;
    top: 1rem;
    border-radius: 999px;
    padding: .3rem .75rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.creator-rating {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border-radius: 999px;
    padding: .3rem .6rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .72rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.creator-body {
    padding: 1.25rem;
}

.creator-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.creator-handle {
    font-size: .85rem;
    color: var(--muted-foreground);
}

.creator-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-family: 'IBM Plex Mono', monospace;
    font-size: .72rem;
    color: var(--muted-foreground);
}

/* ---------- CATEGORY CARDS ---------- */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1.75rem;
    transition: transform .3s, border-color .3s;
    display: block;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 166, .4);
}

.category-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .85rem;
    color: var(--muted-foreground);
}

.category-title {
    margin-top: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.category-desc {
    margin-top: .5rem;
    font-size: .9rem;
    color: var(--muted-foreground);
}

/* ---------- EDITORIAL ---------- */
.editorial-card {
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    background: var(--background);
    overflow: hidden;
    transition: transform .3s, border-color .3s;
    height: 100%;
}

.editorial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 166, .4);
}

.editorial-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.editorial-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.editorial-card:hover .editorial-img-wrap img {
    transform: scale(1.05);
}

.editorial-cat-badge {
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    border-radius: 999px;
    padding: .3rem .75rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.editorial-body {
    padding: 1.75rem;
}

.editorial-readtime {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .75rem;
    color: var(--muted-foreground);
}

.editorial-title {
    margin-top: .75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.editorial-excerpt {
    margin-top: .75rem;
    font-size: .9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.editorial-cta {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    font-weight: 500;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: .75rem;
}

.gallery-fig {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.gallery-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform .5s, filter .5s;
}

.gallery-fig:hover img {
    transform: scale(1.05);
    filter: saturate(1.25);
}

.gallery-fig.tall {
    grid-row: span 2;
}

.gallery-fig.wide {
    grid-column: span 2;
}

@media (max-width:768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-box {
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.testimonial-quote {
    margin: 1.5rem auto 0;
    max-width: 38rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--foreground);
    transition: border-color .2s, color .2s;
}

.testimonial-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-dot {
    height: 8px;
    border-radius: 999px;
    border: none;
    transition: all .3s;
    background: var(--border);
    width: 8px;
}

.testimonial-dot.active {
    width: 32px;
}

/* ---------- FAQ ---------- */
.faq-item {
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: rgba(24, 24, 27, 0.5);
    overflow: hidden;
    transition: border-color .2s;
    margin-bottom: .75rem;
}

.faq-item.open {
    border-color: rgba(255, 77, 166, .4);
    background: var(--card);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--foreground);
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-icon {
    transition: transform .3s;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: .9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ---------- NEWSLETTER ---------- */
.newsletter-box {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 2.5rem;
}

.newsletter-glow-1 {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(124, 58, 237, .3);
    filter: blur(100px);
}

.newsletter-glow-2 {
    position: absolute;
    bottom: -5rem;
    left: -2.5rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(255, 77, 166, .25);
    filter: blur(110px);
}

.newsletter-input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    padding: 1rem 1.5rem;
}

.newsletter-input::placeholder {
    color: var(--muted-foreground);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: none;
    background: var(--background);
    color: var(--foreground);
}

.btn-newsletter {
    border-radius: 999px;
    padding: 1rem 1.75rem;
    font-weight: 600;
    color: var(--primary-foreground);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: transform .2s;
}

.btn-newsletter:hover {
    transform: scale(1.03);
    color: var(--primary-foreground);
}

/* ---------- FOOTER ---------- */
footer {
    border-top: 1px solid var(--border);
    background: rgba(24, 24, 27, 0.4);
    padding: 4rem 0 1.5rem;
}

footer h6 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--primary);
}

footer a.footer-link {
    display: block;
    margin-bottom: .6rem;
    font-size: .9rem;
    color: var(--muted-foreground);
    transition: color .2s;
}

footer a.footer-link:hover {
    color: var(--foreground);
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: border-color .2s, color .2s;
}

.footer-social:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    font-size: .9rem;
    color: var(--muted-foreground);
}

/* Floating Container */
.floating-contact-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    /* Keeps it above everything else */
}

@media (max-width: 768px) {
    .floating-contact-wrap {
        bottom: 90px;
        right: 16px;
        gap: 8px;
    }
}

/* Base Floating Button Styling */
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn i {
    width: 24px;
    height: 24px;
}

.float-btn:hover {
    transform: scale(1.08);
}

.float-call {
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-call:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.float-wa {
    background: #25D366;
    animation: contact-pulse 2s infinite;
}

@keyframes contact-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
    }

    .float-btn i {
        width: 20px;
        height: 20px;
    }
}

/* Custom Interaction Additions */
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.4) !important;
    color: #fff !important;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.process-interactive-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.2) !important;
    background: rgba(24, 24, 27, 0.6) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes livePulseEffect {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .custom-stat-row {
        display: none !important;
    }
}

.security-pillar-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(168, 85, 247, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.privacy-matrix-box:hover {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

@keyframes pingGlow {

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.step-time-bubble {
    width: 38px;
    height: 38px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 50%;
    color: #ec4899;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.fast-timeline-container div:not(:last-child) .step-time-bubble::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.fast-action-trigger-btn:hover {
    background: #ec4899 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.3) !important;
}

.rate-package-card:hover {
    transform: translateY(-4px);
    background: rgba(24, 24, 27, 0.6) !important;
}

.highlighted-rate-card:hover {
    border-color: #10b981 !important;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.12) !important;
}

.rate-package-card:not(.highlighted-rate-card) .btn-rate-action:hover {
    background: #fff !important;
    color: #09090b !important;
    border-color: #fff !important;
}

.highlighted-rate-card .btn-rate-action:hover {
    background: #059669 !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.creator-profile-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.25) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.creator-profile-card:hover .card-avatar {
    transform: scale(1.04);
}

.profile-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7) !important;
}

.card-img-wrapper img {
    object-position: top center;
    transition: transform 0.5s ease;
}

.profile-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.btn-card-phone:hover {
    background: #fff !important;
    color: #09090b !important;
}

.btn-card-wa:hover {
    background: #128C7E !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.content-rich-wrapper {
    position: relative;
    z-index: 5;
}

.content-keyword {
    color: #eab308 !important;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(234, 179, 8, 0.3);
    transition: all 0.2s ease-in-out;
    padding: 0 2px;
}

.content-keyword:hover {
    color: #fef08a !important;
    border-bottom-style: solid;
    background: rgba(234, 179, 8, 0.05);
}

.content-body-para::selection {
    background: rgba(168, 85, 247, 0.2);
    color: #fff;
}

.fixed-bottom-action-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    align-items: stretch;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #000;
}

.fixed-bottom-action-bar a {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.action-btn-call {
    background: #0023c4;
}

.action-btn-call:hover {
    background: #001da3;
}

.action-btn-whatsapp {
    background: #008736;
}

.action-btn-whatsapp:hover {
    background: #006e2c;
}


/* ================= POLISHED EDITORIAL TYPOGRAPHY ================= */

/* Eyebrow Accent */
.polished-eyebrow {
    font-family: monospace;
    color: #a855f7;
    /* Royal Purple */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

/* Luxury Main Title */
.polished-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Gradient Text Mask */
.polished-gradient-text {
    background: linear-gradient(to right, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Chapter Heading Blocks */
.polished-text-block {
    margin-bottom: 4rem;
}

.polished-chapter-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

/* Fluid, Highly Readable Paragraph Text */
.polished-body-copy {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #a1a1aa;
    /* Muted Premium Gray */
    margin-bottom: 1.75rem;
    text-align: justify;
    text-justify: inter-word;
}

/* First-Letter Drop Cap Feature */
/* .polished-text-block:first-of-type>p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: #a855f7;
    float: left;
    margin-right: 12px;
    line-height: 0.85;
    margin-top: 4px;
} */

/* Elegant Text Break Callout */
.polished-blockquote {
    font-family: 'Playfair Display', italic, serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #eab308;
    /* Luxury Gold Accent */
    text-align: center;
    max-width: 38rem;
    margin: 3.5rem auto;
    padding: 0 1.5rem;
    border-left: none;
    position: relative;
}

/* Subtle Bracket Ornaments on Quote Elements */
.polished-blockquote::before {
    content: "“";
    font-size: 3rem;
    color: rgba(234, 179, 8, 0.15);
    position: absolute;
    left: -10px;
    top: -20px;
}

.polished-blockquote::after {
    content: "”";
    font-size: 3rem;
    color: rgba(234, 179, 8, 0.15);
    position: absolute;
    right: -10px;
    bottom: -40px;
}

/* Selection Glow */
.polished-text-block ::selection {
    background: rgba(168, 85, 247, 0.2);
    color: #ffffff;
}


.nearby-cities-section {
    background-color: var(--background);
    color: var(--foreground);
}

.badge-tag {
    display: inline-block;
    background: rgba(255, 77, 166, 0.12);
    color: var(--primary);
    border: 1px solid rgba(255, 77, 166, 0.25);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.section-title {
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto 2rem;
}

/* Pill Layout Container */
.city-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual City Pill */
.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.city-name {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
}

.state-name {
    color: var(--muted-foreground);
    font-size: 0.78rem;
    font-weight: 400;
}

/* Hover States */
.city-pill:hover {
    background-color: var(--popover);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 77, 166, 0.2);
}

.city-pill:hover .city-name {
    color: #ffffff;
}

.city-pill:hover .state-name {
    color: var(--accent);
}