/* ============================================
   ProstaVive Landing Page - CSS Stylesheet
   Color Scheme: Teal (#1d9b8f) + Green (#2ecc71)
   Typography: Poppins Font Family
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1d9b8f;
}

h2 {
    font-size: 2rem;
    color: #1d9b8f;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: #1d9b8f;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: #16a085;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-box {
    width: 2rem;
    height: 2rem;
    background-color: #1d9b8f;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.875rem;
}

.logo-text {
    font-weight: bold;
    color: #1d9b8f;
    font-size: 1.125rem;
}

.main-nav {
    background: #ffffff;
    padding: 15px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #1d9b8f;
}

.btn-cta-header {
    background-color: #2ecc71;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.btn-cta-header:hover {
    background-color: #27ae60;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2ecc71;
    color: #ffffff;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #27ae60;
    transform: scale(1.03);
    color: #ffffff;
}

.btn-secondary {
    border: 2px solid #1d9b8f;
    color: #1d9b8f;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #f0f9f8;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #e8f4f8, #ffffff);
    padding: 4rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .main-nav {
        display: none;
    }
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Summary Box */
.summary-box {
    background-color: #f0f9f8;
    padding: 3rem 2rem;
    margin: 0rem 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
}

.check-list, .x-list {
    list-style: none;
    padding: 0;
}

.check-list li, .x-list li {
    padding: 0.5rem 0;
    color: #4b5563;
}

.check-list li {
    color: #1d9b8f;
}

.x-list li {
    color: #ef4444;
}

.why-icon {
    font-weight: bold;
    margin-right: 0.5rem;
}

/* What Is Section */
.what-is-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.what-is-section p {
    max-width: 900px;
    margin: 1rem auto;
    text-align: center;
}

.product-image-section {
    margin-top: 2rem;
    text-align: center;
}

.product-image-section img {
    width: auto;
    height: auto;
    max-width: 700px;
        max-height: 500px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Experience Section */
.experience-section {
    background-color: #e8f4f8;
    padding: 3rem 0;
}

.experience-section p {
    max-width: 800px;
    margin: 1rem auto;
    text-align: center;
}

/* How Works Section */
.how-works-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.how-works-section p {
    max-width: 900px;
    margin: 1rem auto;
    text-align: center;
}

/* Key Features Section */
.key-features {
    padding: 3rem 0;
    background-color: #f0f9f8;
}
.key-features .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.features-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 2rem auto;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-image-section {
    margin-top: 2rem;
    text-align: center;
}

.features-image-section img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 0.5rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.why-choose-section p {
    max-width: 900px;
    margin: 1rem auto;
    text-align: center;
}

/* Usage Section */
.usage-section {
    padding: 3rem 0;
    background-color: #e8f4f8;
}

.usage-list {
    list-style: none;
    padding: 0;
    max-width: 650px;
    margin: 2rem auto;
}

.usage-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.usage-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1d9b8f;
    font-weight: bold;
    font-size: 1.5rem;
}

/* What You Get Section */
.what-you-get {
    padding: 3rem 0;
    background-color: #ffffff;
}
.money-back-img {
    text-align: center; 
}
.money-back-img img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 1.5rem;
}
.get-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 2rem auto;
}

.get-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.get-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0;
    background-color: #f0f9f8;
}

.pricing-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 2rem auto;
        text-align: left;
}

.pricing-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.pricing-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1d9b8f;
    font-weight: bold;
    font-size: 1.5rem;
}

.pricing-section .btn {
    margin-top: 2rem;
}

/* Comparison Section */
.comparison-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background-color: #1d9b8f;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: #f0f9f8;
}

.comparison-image-section {
    margin-top: 2rem;
    text-align: center;
}

.comparison-image-section img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: #e8f4f8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1d9b8f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #555;
    margin-bottom: 0;
}

/* Final Thoughts Section */
.final-thoughts {
    padding: 3rem 0;
    background-color: #f0f9f8;
}

.final-thoughts p {
    max-width: 900px;
    margin: 1rem auto;
    text-align: center;
}

.final-thoughts .btn {
    margin-top: 2rem;
}

/* Disclosures Section */
.disclosures {
    padding: 3rem 0;
    background-color: #ffffff;
}

.disclosure-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 2rem auto;
}

.disclosure-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #555;
    line-height: 1.8;
}

.disclosure-list li:last-child {
    border-bottom: none;
}

.disclosure-list strong {
    color: #1d9b8f;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}
.footer ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
}
.footer li {
    margin-bottom: 0rem;
}
.footer a {
    color: #d1d5db;
    transition: all 0.2s ease-in-out;
    padding: 0 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-cta-header {
        font-size: 13px;
        padding: 5px 10px;
    }

    .summary-box,
    .what-is-section,
    .experience-section,
    .how-works-section,
    .key-features,
    .why-choose-section,
    .usage-section,
    .what-you-get,
    .pricing-section,
    .comparison-section,
    .faq-section,
    .final-thoughts,
    .disclosures {
        padding: 2rem 1rem;
    }
}


/* ============================================
   3-Column Pricing Cards Styling
   ============================================ */

.pricing-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-intro h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pricing-intro .highlight-blue {
    color: #1d9b8f;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .pricing-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing-card {
    border: 2px solid #1d9b8f;
    border-radius: 0.5rem;
    background-color: #f8fffe;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 155, 143, 0.15);
}

.pricing-card-featured {
    border: 3px solid #1d9b8f;
    background: linear-gradient(to bottom, #001f3f, #003d5c);
    color: #ffffff;
    transform: scale(1.05);
    z-index: 10;
}

@media (max-width: 768px) {
    .pricing-card-featured {
        transform: scale(1);
    }
    .key-features .content-wrapper {
    display: block;
    }
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-5px);
}

@media (max-width: 768px) {
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
}

.card-header {
    padding: 0.75rem 1rem;
    background-color: #e8f4f8;
    border-bottom: 1px solid #1d9b8f;
    text-align: center;
}

.featured-header {
    background-color: #ffeb3b;
    border-bottom: 1px solid #001f3f;
}

.card-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.featured-label {
    color: #001f3f;
    font-weight: 800;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: inherit;
}

.pricing-card-featured .card-title {
    color: #ffffff;
}

.card-supply {
    font-size: 0.95rem;
    color: #1d9b8f;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-card-featured .card-supply {
    color: #00d4ff;
}

.card-image {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.money-back-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffeb3b;
    color: #1a1a1a;
    padding: 0.4rem 0.6rem;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-price {
    margin-bottom: 1rem;
    text-align: center;
        display: ruby;
}

.card-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
}

.pricing-card-featured .card-price .price {
    color: #ffffff;
}

.card-price .per-bottle {
    font-size: 0.95rem;
    color: #666;
    display: block;
}

.pricing-card-featured .card-price .per-bottle {
    color: #b0b0b0;
}

.card-shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.pricing-card-featured .card-shipping {
    display: none;
}

.card-bonuses {
    margin-bottom: 1.5rem;
    text-align: center;
}

.bonus-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.bonus-highlight {
    color: #00ff00;
    font-weight: 700;
}

.btn-card {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.pricing-card-featured .btn-card {
    background-color: #00d4ff;
    color: #001f3f;
}

.pricing-card-featured .btn-card:hover {
    background-color: #00ffff;
    color: #001f3f;
}

.card-payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.payment-icon {
    width: 40px;
    height: 25px;
    object-fit: contain;
}

.card-total-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.pricing-card-featured .card-total-price {
    color: #ffffff;
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
    .pricing-intro h3 {
        font-size: 1.4rem;
    }

    .pricing-intro p {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-price .price {
        font-size: 2rem;
    }

    .pricing-cards-container {
        gap: 1rem;
    }

    .pricing-card {
        border-width: 2px;
    }
}
