:root {
    /* Colors */
    --bg-dark: #030305;
    --bg-darker: #000000;
    --bg-card: rgba(255, 255, 255, 0.03);

    --primary: #d946ef;
    --primary-light: #f0abfc;
    --secondary: #06b6d4;
    --secondary-light: #67e8f9;

    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;

    /* Typo */
    --font-heading: 'Outfit',
        sans-serif;
    --font-body: 'Inter',
        sans-serif;

    /* Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow-primary: 0 0 30px rgba(217, 70, 239, 0.4);
    --glow-text: 0 0 20px rgba(217, 70, 239, 0.5);
    --grid-bg: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 40px 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--grid-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Global Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-narrow {
    max-width: 600px;
}

.container-medium {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

.margin-top-large {
    margin-top: 40px;
}

/* Background Animation */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.globe-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -150px;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(40px);
    }
}

/* Navigation */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    background: rgba(5, 5, 5, 0.7);
}

.nav-logo {
    height: 40px;
    display: block;
    margin: 0 auto;
}

/* Typography Defaults */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center top, rgba(217, 70, 239, 0.15), transparent 70%),
        linear-gradient(to bottom, rgba(5, 5, 5, 0), var(--bg-dark));
    /* Parallax effect removed for cleaner grid look */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, transparent 24%, rgba(217, 70, 239, .05) 25%, rgba(217, 70, 239, .05) 26%, transparent 27%, transparent 74%, rgba(6, 182, 212, .05) 75%, rgba(6, 182, 212, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(217, 70, 239, .05) 25%, rgba(217, 70, 239, .05) 26%, transparent 27%, transparent 74%, rgba(6, 182, 212, .05) 75%, rgba(6, 182, 212, .05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: -1;
    perspective: 1000px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    opacity: 0.3;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

.hero-logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Push close to text */
}

.hero-logo-highlight {
    max-width: 100%;
    width: 450px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(217, 70, 239, 0.4));
    animation: float 6s ease-in-out infinite;
}



.hero-text-content {
    flex: 1.2;
    text-align: left;
}

.hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(217, 70, 239, 0.3);
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: 0;
    /* Left align */
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-logo-container {
        justify-content: center;
    }

    .hero-logo-highlight {
        width: 300px;
        transform: none;
    }

    .hero-text-content {
        text-align: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 1.75rem;
    }
}


/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3), inset 0 0 20px rgba(217, 70, 239, 0.1);
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.2), rgba(6, 182, 212, 0.2));
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.6), inset 0 0 30px rgba(217, 70, 239, 0.4);
    border-color: var(--primary-light);
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.4), rgba(6, 182, 212, 0.4));
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.cta-button:hover::before {
    left: 100%;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.dark-bg {
    background-color: var(--bg-darker);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 70, 239, 0.2);
}

.card:hover::before {
    opacity: 0.1;
}

.card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* List/Solutions */
.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.list-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.list-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
/* Testimonials */
.carousel-container {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    /* More space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-darker);
}

.carousel-container::-webkit-scrollbar {
    height: 8px;
    /* Visible scrollbar height */
    display: block;
}

.carousel-container::-webkit-scrollbar-track {
    background: var(--bg-darker);
    border-radius: 4px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary);
}

/* Testimonial Card Futuristic */
.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.5), transparent 50%, rgba(6, 182, 212, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(217, 70, 239, 0.15);
}

.testimonial-card:hover::after {
    background: linear-gradient(135deg, var(--primary), transparent 20%, var(--secondary));
}

/* Chat Style Adjustments */
.testimonial-card.chat-style {
    background: #18181b;
    /* Very dark zinc */
    border: 1px solid #27272a;
    font-family: 'Inter', sans-serif;
}

.testimonial-card.chat-style .testimonial-header {
    border-bottom: 1px solid #27272a;
}

.testimonial-card.chat-style .testimonial-body p {
    color: #e4e4e7;
    /* Lighter text for reading */
    font-style: normal;
    font-size: 0.9rem;
    background: #27272a;
    padding: 15px;
    border-radius: 0 15px 15px 15px;
    position: relative;
}

.testimonial-card.chat-style .testimonial-body p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #27272a transparent transparent;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary);
    margin-right: 15px;
}

.user-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.5;
}

.testimonial-body strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Offer Card */
.offer-section {
    position: relative;
    z-index: 10;
}

.offer-card {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(217, 70, 239, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 0 80px rgba(217, 70, 239, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.offer-card:hover {
    box-shadow: 0 0 100px rgba(217, 70, 239, 0.25);
}

.offer-header {
    margin-bottom: 30px;
}

.offer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.offer-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    display: inline-block;
}

.offer-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing {
    margin-bottom: 30px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin: 10px 0;
}

.installments {
    color: var(--primary);
    font-weight: 600;
}

.payment-methods img {
    max-width: 300px;
    margin-top: 20px;
    opacity: 0.8;
}

.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Mini Offer Card Special */
.mini-offer-card {
    padding: clamp(20px, 5vw, 40px);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    max-width: 550px;
    width: 100%;
    margin: 40px auto;
    box-sizing: border-box;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.mini-offer-card:hover {
    transform: scale(1.03) translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 100px rgba(217, 70, 239, 0.4);
}

/* Audience Split */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.audience-column {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.audience-column.for-you {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.audience-column.not-for-you {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
}

.audience-column:hover {
    transform: translateY(-5px);
}

.audience-column h3 {
    margin-bottom: 20px;
}

.audience-column ul {
    list-style: none;
}

.audience-column li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.audience-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Author */
.author-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: -20px 20px 0 rgba(217, 70, 239, 0.1);
}

.align-center {
    align-items: center;
}

/* FAQ Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: var(--glass-border);
    border-radius: 8px;
    background: var(--bg-card);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 100px;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-header:after {
    content: '-';
}

/* Animations */
.fade-up,
.fade-right,
.fade-left {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible,
.fade-right.visible,
.fade-left.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }

    .split-grid {
        grid-template-columns: 1fr;
    }

    .grid-list {
        grid-template-columns: 1fr;
    }

    .author-content {
        order: 2;
    }

    .author-image-wrapper {
        order: 1;
        margin-bottom: 20px;
    }
}

/* Real Reports Section */
.real-reports-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.report-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    height: 100%;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.message {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    max-width: 90%;
}

.highlight-message {
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Real Reports - Authentic WhatsApp Style */
.whatsapp-style {
    background: #0b141a;
    /* WhatsApp standard dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Native font feel */
    position: relative;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    /* Subtle doodle optional or simple dark pattern */
    background-blend-mode: overlay;
    background-size: 300px;
}

.whatsapp-style .report-header {
    background: #202c33;
    /* Darker header */
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
}

.whatsapp-style .user-info h4 {
    color: #e9edef;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.whatsapp-style .user-info span {
    color: #8696a0;
    /* "online" color */
    font-size: 0.8rem;
    text-transform: lowercase;
    font-weight: 400;
}

.whatsapp-style .chat-body {
    background: transparent;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-style .message {
    font-size: 0.95rem;
    line-height: 1.3;
    position: relative;
    padding: 8px 10px 22px 10px;
    /* Space for time */
    border-radius: 7.5px;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    max-width: 80%;
    word-wrap: break-word;
}

/* Incoming Message (White/Dark Gray in Dark Mode) */
.whatsapp-style .message.incoming {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border: none;
    border-top-left-radius: 0;
}

/* Highlighed Message - "Outgoing" Green */
.whatsapp-style .message.highlight-message {
    background: #005c4b;
    /* Authentic Green */
    color: #e9edef;
    align-self: flex-end;
    border: none;
    border-top-right-radius: 0;
    box-shadow: none;
}

/* Chat Bubbles Tails (Optional for realism) */
.whatsapp-style .message.incoming::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #202c33;
    border-right-color: #202c33;
    border-bottom: 0;
    display: block;
}

.whatsapp-style .message.highlight-message::before {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: #005c4b;
    border-left-color: #005c4b;
    border-bottom: 0;
    display: block;
}

/* Timestamp & Checks */
.chat-timestamp {
    position: absolute;
    bottom: 3px;
    right: 5px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.read-checks {
    font-size: 0.75rem;
    color: #53bdeb;
    /* Blue ticks */
}

@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
}

/* Objections Mini-Section */
.objections-section {
    padding: 40px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: center;
}

.objection-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(20, 20, 30, 0.4) 100%);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid rgba(217, 70, 239, 0.2);
    /* Subtle purple border */
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.objection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(217, 70, 239, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.objection-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.15);
    /* Purple glow */
}

.objection-item:hover::before {
    opacity: 1;
}

.objection-q {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.objection-a {
    display: block;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--secondary);
}