/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 0.75rem;
    --container: 1200px;
    --font-heading: 'Outfit', sans-serif;
    /* Modern, clear */
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
    color: #334155;
}

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    background-color: #fcfcfc;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--dark);
}

.header-search-container {
    position: relative;
    width: 450px;
    height: 48px;
}

/* ── Mobile Header ───────────────────────── */
@media (max-width: 768px) {
    .header-top {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .logo {
        flex: 0 0 auto;
        max-width: 65%;
    }

    .logo img {
        height: 52px !important;
        width: auto !important;
    }

    .desktop-search {
        display: none !important;
    }

    .mobile-header-icons {
        display: flex !important;
        flex: 0 0 auto;
        gap: 0.5rem;
        align-items: center;
        margin-left: auto;
    }

    .header-bottom {
        display: none !important;
    }

    .page-hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.25 !important;
    }
    
    .text-center-mobile { text-align: center !important; }
    .text-left-mobile { text-align: left !important; }
}

.main-nav {
    width: 100%;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    padding: 0 0.85rem;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background-color: #cbd5e1;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-green {
    background: var(--secondary);
}

.btn-green:hover {
    background: #059669;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}

/* Components */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
    border: 1px solid var(--gray-light);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.rating {
    color: var(--accent);
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0;
    margin-top: 4rem;
}

footer a {
    color: #94a3b8;
}

footer a:hover {
    color: var(--white);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Section */
.pricing-section .pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-section .pricing-card.best-value {
    border: 2px solid var(--secondary);
    background: #f0fdf4;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-section .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-section .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1rem 0;
}

.pricing-section .price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: normal;
}

.pricing-section .badge-pop {
    background: var(--accent);
    color: white;
    padding: 0.25rem 2rem;
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.pricing-section p.subtitle {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.pricing-section p.saving {
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.testimonial-card .review-text {
    flex-grow: 1;
}

.testimonial-card .verified {
    color: var(--secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-card .reviewer {
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--gray-light);
    margin-bottom: 0.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.accordion-header {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 500px;
    /* arbitrary large height */
    border-top: 1px solid var(--gray-light);
}

/* Guarantee */
.guarantee-box {
    background: linear-gradient(to right, #f0fdf4, #dcfce7);
    border: 2px dashed var(--secondary);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for now OR toggle needed */
}

/* Review Specific Refinements */
.review-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

@media (max-width: 768px) {
    .review-header-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .review-header-grid header {
        order: 2;
        text-align: left;
    }

    .review-header-grid .product-hero-container {
        order: 1;
        margin-bottom: 1rem;
    }
}

.product-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    /* Optional: adds a nice backdrop if image is transparent */
    border-radius: var(--radius);
    /* padding: 1rem; Optional: if you want spacing inside the 50% box */
}

.product-hero-container img {
    object-fit: contain;
    max-width: 100%;
    width: auto;
    max-height: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.ingredients-section {
    background: #f8fafc;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--gray-light);
}

.content-cta-box {
    background: #ecfdf5;
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Better Grid for Pricing/Testimonials on Laptop */
@media (min-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Spacing Utilities */
.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}


.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.px-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}


/* Improved Pricing Text */
.pricing-section .price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-section .price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    opacity: 0.9;
    font-family: var(--font-body);
}

.sort-handle {
    cursor: move;
    color: #94a3b8;
    margin-right: 0.5rem;
}

.sort-handle:hover {
    color: #334155;
}


/* Align pricing buttons to bottom */
.pricing-section .pricing-card {
    height: 100%;
    /* Ensure it fills the grid cell */
}

.pricing-section .pricing-card .btn {
    margin-top: auto;
    /* Push button to bottom */
}


/* Admin UI for FAQ/Testimonials */
.faq-item,
.testi-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.faq-item .sort-handle,
.testi-item .sort-handle {
    cursor: move;
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-right: 1rem;
    align-self: flex-start;
    padding-top: 0.2rem;
}

.faq-item:hover .sort-handle,
.testi-item:hover .sort-handle {
    color: #64748b;
}

.remove-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #ef4444;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.3rem;
    cursor: pointer;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
}

.remove-btn:hover {
    background: #fee2e2;
}


/* Trust & CTA Section */
.trust-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .trust-cta-grid {
        grid-template-columns: 1fr;
    }
}

.trust-card {
    background: #fff;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow);
}

.trust-card h3 {
    margin-top: 0;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: var(--font-heading);
}

.trust-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark);
    font-size: 1.05rem;
}

.trust-list li .icon-check {
    color: var(--primary);
    background: #eff6ff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cta-card h3 {
    color: white;
    margin-top: 0;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
    border: 2px solid white;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}


/* Dynamic Star Rating */
/* Dynamic Star Rating - Overlay Method */
.star-rating {
    display: inline-block;
    font-size: 1.25rem;
    font-family: sans-serif;
    line-height: 1;
    position: relative;
    white-space: nowrap;
    color: var(--gray-light);
    /* Base empty color */
    width: fit-content;
}

/* Base Gray Stars */
.star-rating::before {
    content: '\2605\2605\2605\2605\2605';
    display: block;
    color: var(--gray-light);
}

/* Overlay Colored Stars */
.star-rating::after {
    content: '\2605\2605\2605\2605\2605';
    position: absolute;
    top: 0;
    left: 0;
    width: calc((var(--rating) / 5) * 100%);
    overflow: hidden;
    color: var(--accent);
    white-space: nowrap;
    z-index: 1;
}

/* Updated Testimonial Card for Alignment */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes content apart */
    height: 100%;
    /* Ensure full height in grid */
}

.testimonial-card .review-text {
    flex: 1;
    /* Takes available space */
    margin-bottom: 1.5rem;
}

.testimonial-card .reviewer {
    margin-top: auto;
    /* Force to bottom */
}

/* Premium Light Mode & Card Styles - Appended */

/* Hero Override - Keep consistent with main site but premium layout */
.page-hero {
    padding: 0.35rem 0 3rem;
    background: #f8fafc;
    /* Light background */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero::before {
    display: none;
    /* Remove dark pattern overlay */
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1e293b;
    /* Dark text */
    background: none;
    -webkit-background-clip: initial;
    background-clip: border-box;
    /* Or whatever standard value suits your initial, maybe border-box which is default */
    -webkit-text-fill-color: initial;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: #64748b;
    /* var(--text-secondary) */
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -3rem;
    /* Overlap hero */
}

/* Intro/Outro Cards */
.content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    color: #334155;
    /* Dark text */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.content-card h2,
.content-card h3 {
    color: #1e293b;
    /* Dark headings */
    font-family: 'Outfit', sans-serif;
}

.content-card p {
    color: #475569;
}

.content-card ul,
.content-card ol {
    padding-left: 1.75rem;
    margin: 0.75rem 0 1rem 0;
    color: #475569;
}

.content-card ul li,
.content-card ol li {
    margin-bottom: 0.5rem;
    line-height: 1.65;
    padding-left: 0.25rem;
}

/* Product Review Card - Premium Style (Light) */
.review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    /* Changed to 2 columns: Image | Content (with buttons inside) */
    grid-template-columns: 280px 1fr;
    gap: 0;
}

@media (max-width: 900px) {
    .review-card {
        grid-template-columns: 1fr;
    }
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

/* Rank Badge */
.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 10;
}

.featured-tag {
    position: absolute;
    top: 56px;
    left: 0;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 16px 8px 12px;
    border-radius: 0 100px 100px 0;
    text-transform: none;
    letter-spacing: 0.2px;
    z-index: 9;
    box-shadow: 2px 2px 8px rgba(99, 102, 241, 0.2);
}

/* Image Section */
.rc-image {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    /* White bg */
    position: relative;
    border-right: 1px solid #e2e8f0;
}

.rc-image img {
    max-width: 100%;
    max-height: 200px;
    transition: transform 0.3s ease;
}

.review-card:hover .rc-image img {
    transform: scale(1.05);
    /* Micro-animation */
}

/* Content Section */
.rc-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.rc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    /* Dark Title */
    line-height: 1.2;
    text-decoration: none;
}

.rc-title:hover {
    color: #2563eb;
    /* var(--primary) */
}

.rc-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
}

.score {
    color: #334155;
    font-weight: 700;
}

.rc-summary {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rc-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 600px) {
    .rc-features {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on wider screens */
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    /* Align checkmark to top of multi-line text */
    gap: 0.75rem;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.feature-icon {
    color: #10b981;
    /* Success Green */
    background: #ecfdf5;
    min-width: 24px;
    /* Ensure circular shape doesn't squash */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    /* Visual alignment with text */
}

/* Action Section (Updated for stacking) */
.rc-action {
    background: transparent;
    display: flex;
    flex-direction: row;
    /* Side by side on larger screens usually looks better below content */
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0 0 0;
    /* Top padding to separate from content */
    border-left: none;
    /* Remove border */
    gap: 1.5rem;
    margin-top: auto;
}

@media (max-width: 600px) {
    .rc-action {
        flex-direction: column;
        align-items: stretch;
    }
}

.btn-cta {
    background: #10b981;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.85rem 2.5rem;
    border-radius: 10px;
    width: auto;
    text-align: center;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: #059669;
    color: #fff;
}

.btn-review {
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.85rem 2.5rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-review:hover {
    color: #1e293b;
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Custom Footer Grid Wide Column */
.footer-custom-grid {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 1.8fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

@media (max-width: 900px) {
    .footer-custom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-custom-grid {
        grid-template-columns: 1fr;
    }
}