/* --- Social Media Landing Page Styles --- */

/* Import main site tokens & styles */
@import url('../style.css?v=3.0');

/* Custom variables specifically for the LP */
:root {
    --lp-max-width: 840px;
    --accent-blue: #005FFF;
    --accent-blue-hover: #004bce;
    --accent-blue-glow: rgba(0, 95, 255, 0.25);
    --accent-gradient: linear-gradient(135deg, var(--accent) 0%, #a81cff 50%, var(--accent-blue) 100%);
    --bg-darker: #02060c;
    --glass-bg: rgba(10, 20, 40, 0.55);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 51, 51, 0.3);
    --text-muted: #d5c8c8;
    --bg-page: #050c18;
    --bg-card: rgba(10, 20, 40, 0.45);
    --bg-card-hover: rgba(16, 30, 56, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
}

/* Base LP Adjustments */
body {
    background-color: var(--bg-page);
    color: var(--text-main);
    overflow-x: hidden;
}

.lp-container {
    width: 90%;
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0;
}

/* Background Glowing Blobs Floating Animation */
@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}

.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
    animation: float-blob 20s infinite ease-in-out;
}

.glow-blob-1 {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.12) 0%, rgba(255, 51, 51, 0) 70%);
    animation-duration: 25s;
}

.glow-blob-2 {
    top: 35%;
    right: -300px;
    background: radial-gradient(circle, rgba(0, 95, 255, 0.1) 0%, rgba(0, 95, 255, 0) 70%);
    animation-duration: 30s;
    animation-delay: -5s;
}

.glow-blob-3 {
    bottom: 15%;
    left: -300px;
    background: radial-gradient(circle, rgba(168, 28, 255, 0.1) 0%, rgba(168, 28, 255, 0) 70%);
    animation-duration: 22s;
    animation-delay: -10s;
}

/* LP Section Headers */
.lp-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-section:last-of-type {
    border-bottom: none;
}

.lp-section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.lp-section-title mark {
    background: transparent;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.45);
    animation: text-glow-pulse 4s ease-in-out infinite;
}

/* Navigation / Header back link */
.lp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: var(--text-main);
}

.back-link:hover svg {
    transform: translateX(-4px);
}

.header-logo-img {
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(255, 51, 51, 0.5));
    transition: transform 0.5s ease;
}

.header-logo-img:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Hero Section Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 51, 51, 0.08);
    border: 1px solid rgba(255, 51, 51, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: 0 auto 24px auto;
    width: max-content;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 51, 51, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

/* Hero Headline and Sub */
.hero-headline {
    font-family: var(--font-title);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 50%, #ff9999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Player Custom Card */
.video-card {
    background: rgba(4, 9, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 
                0 0 40px rgba(255, 51, 51, 0.04);
    margin-bottom: 48px;
    transition: var(--transition);
}

.video-card:hover {
    border-color: rgba(255, 51, 51, 0.25);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 
                0 0 50px rgba(255, 51, 51, 0.08);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Premium Buttons */
.btn-cta {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 36px auto;
    padding: 20px 36px;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-red {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.05);
    animation: cta-pulse 2.2s infinite ease-in-out;
}

.btn-red:hover {
    background: var(--accent);
    color: #000000;
    box-shadow: 0 12px 35px rgba(255, 51, 51, 0.4), 0 0 20px var(--accent);
    transform: translateY(-4px) scale(1.03);
    animation: none;
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.05), 0 0 0 0 rgba(255, 51, 51, 0.35);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(255, 51, 51, 0.18), 0 0 0 10px rgba(255, 51, 51, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.05), 0 0 0 0 rgba(255, 51, 51, 0);
    }
}

/* Glass Cards - General Refinement */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 51, 51, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 51, 51, 0.03);
}

/* Target Audience Bento Cards Grid */
.intro-glass-card {
    border-radius: 28px;
}

.audience-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.audience-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.audience-subheading {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audience-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.audience-card:hover {
    border-color: rgba(255, 51, 51, 0.25);
    background: rgba(255, 51, 51, 0.02);
    transform: translateY(-4px);
}

.audience-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 51, 51, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 51, 51, 0.15);
}

.audience-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

/* Opportunity Section Details */
.opt-content-card {
    border-radius: 28px;
}

.opt-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.opt-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.65;
    color: #ffffff;
    border-left: 4px solid var(--accent);
    padding-left: 24px;
    margin: 36px 0;
}

.opt-final {
    margin-bottom: 0;
}

/* Creator Bio (Vilton Profile) Section */
.creator-bio-lp {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 48px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.creator-avatar-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    width: 180px;
    height: 180px;
}

.creator-avatar-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--accent-gradient);
    z-index: -1;
    opacity: 0.45;
}

.creator-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--bg-page);
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease;
}

.creator-bio-lp:hover .creator-avatar {
    transform: scale(1.03) rotate(2deg);
}

.creator-text h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.creator-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bio-emphasis {
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0 !important;
}

/* Testimonial Spotlight Section */
.testimonial-spotlight-card {
    border-radius: 28px;
}

.testimonial-intro-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 32px;
}

.testimonial-details-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-top: 32px;
    margin-bottom: 0;
}

/* Modules Expandable Accordion (Details/Summary) */
.modules-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.rafa-testimonial-card {
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 56px;
}

.rafa-testimonial-desc {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.modules-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
}

details.module-card {
    background: rgba(10, 20, 40, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

details.module-card:hover {
    background: rgba(16, 30, 56, 0.55);
    border-color: rgba(255, 51, 51, 0.2);
}

details.module-card[open] {
    border-color: rgba(255, 51, 51, 0.3);
    background: rgba(16, 30, 56, 0.7);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 51, 51, 0.03);
}

summary.module-header {
    padding: 24px 32px;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
}

summary.module-header::-webkit-details-marker {
    display: none; /* Hide default arrow in Safari */
}

summary.module-header::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

details[open] summary.module-header::after {
    transform: rotate(180deg);
}

.module-content {
    padding: 0 32px 32px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    animation: slideDown 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.module-content ul {
    list-style: none;
    padding-top: 16px;
}

.module-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.module-content ul li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

/* Figma projects sublist */
.module-content ul li ul {
    padding-top: 8px;
    padding-left: 8px;
}

.module-content ul li ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.module-content ul li ul li::before {
    background-color: var(--accent-blue);
    box-shadow: 0 0 6px var(--accent-blue);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Grid (Bento Style) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.features-section .feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background: rgba(10, 20, 40, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.features-section .feature-box:hover {
    background: rgba(16, 30, 56, 0.55);
    border-color: rgba(255, 51, 51, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 51, 51, 0.04);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 51, 51, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 51, 51, 0.15);
    transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 15px var(--accent);
    transform: scale(1.05);
}

.features-section .feature-box h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.features-section .feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bonus-box {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.08) 0%, rgba(168, 28, 255, 0.04) 50%, rgba(0, 95, 255, 0.08) 100%);
    border: 1px solid rgba(255, 51, 51, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 51, 51, 0.04);
    border-radius: 24px;
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    background: var(--accent-gradient);
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(255, 51, 51, 0.3);
}

/* Testimonial Gallery (Bruno & Screenshots) */
.testimonials-title {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-img-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
    transition: var(--transition);
    position: relative;
}

.testimonial-img-card img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.75;
    transition: var(--transition);
}

.testimonial-img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
    opacity: 1;
    transition: var(--transition);
    pointer-events: none;
}

.testimonial-img-card:hover {
    border-color: rgba(255, 51, 51, 0.35);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 25px rgba(255, 51, 51, 0.06);
}

.testimonial-img-card:hover img {
    opacity: 1;
    transform: scale(1.03);
}

/* Guarantee Section Details Card */
.guarantee-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 22, 45, 0.5) 0%, rgba(6, 14, 30, 0.35) 100%);
    border: 1px solid rgba(255, 77, 77, 0.15);
    border-radius: 24px;
    padding: 40px 48px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.guarantee-badge-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-badge-img {
    width: 100%;
    height: auto;
    max-width: 130px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
    transition: var(--transition);
}

.guarantee-card:hover .guarantee-badge-img {
    transform: scale(1.08) rotate(3deg);
}

.guarantee-text h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.guarantee-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Pricing Section Card & ConvertKit Form styling */
.pricing-checkout-section {
    padding-bottom: 100px;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(10, 22, 45, 0.6) 0%, rgba(3, 8, 18, 0.95) 100%);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 32px;
    padding: 64px 48px;
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 51, 51, 0.03);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.18) 0%, rgba(255, 51, 51, 0) 70%);
    filter: blur(30px);
    pointer-events: none;
}

.checkout-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.checkout-promo-badge {
    background: var(--accent-gradient);
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 51, 51, 0.4);
    display: inline-block;
}

.pricing-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    text-align: center;
    display: block;
    margin-bottom: 24px;
    font-weight: 500;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.price-promo {
    text-align: center;
    margin-bottom: 16px;
}

.price-installments {
    font-size: 2.6rem;
    color: #ffffff;
    font-weight: 900;
    font-family: var(--font-title);
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
}

.price-installments mark {
    background: transparent;
    color: var(--accent);
    font-size: 3.6rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.35);
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    animation: text-glow-pulse 3s ease-in-out infinite;
}

.price-cash {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 500;
}

.price-daily-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    margin: 24px 0 32px 0;
    line-height: 1.5;
}

/* Security Info row */
.security-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.security-item img {
    height: 20px;
    width: auto;
}

/* Lead Form Box */


/* Responsive Breakpoints */
@media (max-width: 850px) {
    .creator-bio-lp {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
        gap: 32px;
    }
    
    .creator-avatar-wrap {
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
        gap: 24px;
    }
    
    .guarantee-badge-img {
        max-width: 110px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-sub {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .lp-section-title {
        font-size: 1.8rem;
        margin-bottom: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-card {
        padding: 40px 24px;
    }
    
    .price-installments {
        font-size: 2rem;
    }
    
    .price-installments mark {
        font-size: 2.6rem;
    }
    
    .btn-cta {
        font-size: 0.9rem;
        padding: 16px 20px;
    }
    
    .btn-submit {
        font-size: 0.9rem;
        padding: 16px 20px;
    }
    
    .intro-glass-card, .opt-content-card, .testimonial-spotlight-card {
        padding: 32px 20px;
    }
}
