/* ========================================
   PLACD TEST PAGES DESIGN SYSTEM
   ======================================== */

/* Layout & Grid System */
.section {
    padding: 3rem 0;
}

.hero {
    background: linear-gradient(180deg, #fff 0, #fafaff 60%, #fff 100%);
    padding: 4rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.grid-2r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Tablet breakpoint */
@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-2r {
        grid-template-columns: 1fr;
    }

    .grid-2, .grid-3, .grid-2r {
        gap: 1.5rem;
    }
}

/* Small tablet breakpoint */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-2r {
        gap: 1.25rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 576px) {
    .grid-2, .grid-3, .grid-2r {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero .lead {
        font-size: 1rem;
    }
}

/* Kicker Badge */
.kicker {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    padding: .4rem .8rem;
    border-radius: 999px;
    background: #eafbea;
    color: #0a6520;
    font-weight: 600;
    font-size: .9rem;
}

/* Scarcity Indicator */
.scarcity {
    display: flex;
    gap: .6rem;
    align-items: center;
    margin-top: .5rem;
}

.scarcity .dot {
    width: 8px;
    height: 8px;
    background: var(--placd-green, #3EC70B);
    border-radius: 50%;
}

/* Trust Strip */
.trust-strip {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: .8;
}

.trust-strip img {
    height: 28px;
    filter: grayscale(1);
    opacity: .8;
}

/* Value Banner */
.value-banner {
    border: 1px solid #d5f4d0;
    background: #f4fff1;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Cards */
.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    height: 100%;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ede6ff;
    margin-bottom: 1rem;
    font-size: 22px;
}

.bonus .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* Fix card image containers */
.card img:not(.position-absolute) {
    max-height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

/* Ensure proper image sizing in hero sections */
.hero .grid-2 img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
}

/* Process Steps */
.process .num {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #e9fbe4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: .6rem;
    color: #0a6520;
}

/* Testimonial Cards */
.tcard {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

/* Form Styling */
.form-placd {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.form-placd input,
.form-placd select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: .75rem .85rem;
    font-size: .9rem;
}

.form-placd .form-label {
    font-weight: 600;
    margin-bottom: .5rem;
    color: #333;
}

/* Micro Text */
.micro {
    color: #6b6b75;
    font-size: .9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(10px);
    border-top: 1px solid #eee;
    z-index: 50;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
}

.sticky-cta .row {
    display: flex;
    gap: .8rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.sticky-cta .kicker {
    font-size: .8rem;
    padding: .3rem .6rem;
}

.sticky-cta .micro {
    font-size: .8rem;
}

/* Button Overrides */
.btn-primary,
a.btn-primary {
    background: #7731FF !important;
    border-color: #7731FF !important;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover,
a.btn-primary:hover {
    background: #6b2ae6 !important;
    border-color: #6b2ae6 !important;
}

.btn-outline {
    background: #fff;
    border: 1px solid #7731FF;
    color: #7731FF;
    border-radius: 8px;
    font-weight: 600;
}

.btn-outline:hover {
    background: #7731FF;
    color: #fff;
}

/* Image Improvements */
.w-100 {
    width: 100% !important;
}

.rounded {
    border-radius: 8px !important;
}

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    margin-bottom: 1.5rem;
}

h2 {
    margin-bottom: 1.25rem;
}

.lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* List Improvements */
/* Remove all custom dots from list-unstyled - let lists with icons be clean */
.list-unstyled {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
}

/* Style regular ul lists to have colored dots and larger text - only in test page content */
/* Target only lists within the main content area, not navbar */
body ul:not(.list-unstyled):not(.navbar-nav):not(.dropdown-menu) {
    list-style-type: disc;
    font-size: 1.1rem;
}

body ul:not(.list-unstyled):not(.navbar-nav):not(.dropdown-menu) li::marker {
    color: #7731FF;
}

/* Pricing Models Design */
.pricing-models {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 12px;
    border: 1px solid #e8ecff;
}

.pricing-model {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-icon i {
    font-size: 2.5rem;
}

.model-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #7731FF;
    line-height: 1.3;
}

/* Tablet responsiveness for pricing models */
@media (max-width: 992px) {
    .pricing-models {
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .model-icon i {
        font-size: 2.25rem;
    }
}

/* Mobile responsiveness for pricing models */
@media (max-width: 768px) {
    .pricing-models {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .pricing-model {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
    }

    .model-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .model-icon i {
        font-size: 2rem;
    }

    .model-text {
        font-size: 0.85rem;
    }
}

/* Small mobile responsiveness for pricing models */
@media (max-width: 576px) {
    .pricing-models {
        padding: 0.75rem;
        gap: 1.25rem;
    }

    .model-icon i {
        font-size: 1.75rem;
    }

    .model-text {
        font-size: 0.8rem;
    }
}

/* Grid Improvements for Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 .75rem;
    }

    .section {
        padding: 2rem 0;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .tcard, .form-placd {
        padding: 1.5rem;
    }

    .grid-2, .grid-3, .grid-2r {
        gap: 1.5rem;
    }

    .value-banner {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
    }

    .sticky-cta .row {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
    }
}

/* Specific Test Page Improvements */

/* Fix image containers */
.hero .grid-2 > div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Improve form layout */
.form-placd .mb-2 {
    margin-bottom: 1rem;
}

.form-placd .mb-3 {
    margin-bottom: 1.5rem;
}

/* Fix button spacing */
.d-flex.gap-2 {
    gap: 0.5rem;
}

.d-flex.gap-2 .btn {
    flex: 1;
}

@media (max-width: 768px) {
    .d-flex.gap-2 {
        flex-direction: column;
    }

    .d-flex.gap-2 .btn {
        flex: none;
    }
}

/* Ensure proper spacing */
.section + .section {
    margin-top: 0;
}

/* Better spacing for lists */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Better spacing for buttons */
.d-flex.gap-2 {
    gap: 0.75rem;
    margin-top: 1.5rem;
    display: flex !important;
    justify-content: flex-start !important;
}

.d-flex.gap-2 .btn {
    flex: none !important;
    width: auto !important;
}

/* Better spacing for scarcity indicator */
.scarcity {
    margin-top: 1rem;
}

/* Fix any potential layout issues */
.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-placd-purple {
    color: #7731FF !important;
}

.fw-bold {
    font-weight: 700 !important;
}
