/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-dark: #0a0712;
    --bg-card: rgba(20, 16, 36, 0.7);
    --bg-card-hover: rgba(30, 24, 54, 0.85);
    --primary: #9d4edd;
    --primary-light: #c77dff;
    --primary-glow: rgba(157, 78, 221, 0.4);
    --accent: #ff007f;
    --accent-glow: rgba(255, 0, 127, 0.4);
    --text-white: #f3f0fc;
    --text-muted: #9f9bbd;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-focus: rgba(157, 78, 221, 0.6);
    --success: #10b981;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(157, 78, 221, 0.15);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Glowing Orbs */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.25;
    pointer-events: none;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: 10%;
    right: -150px;
}

.bg-glow-3 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 24px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Adjust container size for the VSL offer page which needs to be wider */
.container:has(.vsl-section.active) {
    max-width: 900px;
}

/* ==========================================================================
   HEADER & FOOTER
   ========================================================================== */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(10, 7, 18, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-icon {
    color: var(--accent);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.header-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-badge i {
    color: var(--success);
}

.app-footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(5, 3, 10, 0.8);
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: auto;
}

.footer-links {
    margin: 12px 0;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-disclaimer {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 16px auto 0;
    opacity: 0.6;
}

/* ==========================================================================
   CARDS & TRANSITIONS
   ========================================================================== */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-premium);
    display: none; /* Hidden by default */
    position: relative;
    overflow: hidden;
}

.card.active {
    display: block; /* Show active section */
}

.card-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(157, 78, 221, 0.15);
    border: 1px solid rgba(157, 78, 221, 0.3);
    color: var(--primary-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-weight: 600;
}

.card-badge.text-green {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--success);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.question-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--text-white);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-bold {
    font-weight: 800;
}

.font-lg {
    font-size: 2.4rem;
}

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

.text-yellow {
    color: #fbcfe8;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(157, 78, 221, 0.5), 0 0 15px rgba(255, 0, 127, 0.3);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-full {
    width: 100%;
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 36px;
    border-radius: 16px;
}

/* Button Animations */
.btn-pulse {
    position: relative;
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 8px 24px rgba(157, 78, 221, 0.35);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 0, 127, 0.6), 0 0 20px rgba(157, 78, 221, 0.4);
    }
    100% {
        box-shadow: 0 8px 24px rgba(157, 78, 221, 0.35);
    }
}

.icon-right {
    transition: var(--transition-smooth);
}

.btn:hover .icon-right {
    transform: translateX(4px);
}

.icon-left {
    transition: var(--transition-smooth);
}

.btn:hover .icon-left {
    transform: translateX(-4px);
}

/* ==========================================================================
   FEATURES (WELCOME SCREEN)
   ========================================================================== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(157, 78, 221, 0.12);
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.2rem;
}

.feature-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.security-note {
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   QUIZ COMPONENT
   ========================================================================== */
.quiz-progress-wrapper {
    margin-bottom: 30px;
}

.quiz-step-indicator {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quiz-progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.quiz-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    transition: width 0.4s ease;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

/* Option Card Button */
.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    text-align: left;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.option-card.selected {
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.15) inset;
}

.option-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.75rem;
    color: transparent;
}

.option-card.selected .option-check {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--text-white);
}

.option-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-white);
}

.quiz-nav {
    display: flex;
    justify-content: flex-start;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

/* ==========================================================================
   LOADING SCREEN (ANALYTICS)
   ========================================================================== */
.spinner-container {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
}

.spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-light);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    background-color: var(--accent);
    animation-delay: -1.0s;
}

@keyframes sk-bounce {
    0%, 100% { 
        transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
    }
}

.loading-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.loading-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.progress-bar-wrapper {
    margin-bottom: 40px;
    text-align: left;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.loading-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}

.loading-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    max-width: 440px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.loading-bullet-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.loading-bullet-item.active {
    color: var(--text-white);
    font-weight: 500;
}

.loading-bullet-item.active i {
    color: var(--primary-light);
}

.loading-bullet-item.completed {
    color: var(--success);
}

.loading-bullet-item.completed i {
    color: var(--success);
    content: "\f058"; /* check icon in FA, handled dynamically via JS class replacing spin */
}

/* ==========================================================================
   LEAD CAPTURE GATE
   ========================================================================== */
.capture-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.capture-subtitle {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-light);
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.form-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.form-terms input {
    margin-top: 3px;
    accent-color: var(--primary);
}

.security-seal {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.security-seal i {
    color: var(--success);
}

/* ==========================================================================
   VSL & SALES PAGE
   ========================================================================== */
.vsl-section {
    display: none; /* Hidden by default */
}

.vsl-section.active {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeIn 0.8s ease forwards;
}

.result-banner {
    text-align: center;
    background: radial-gradient(circle at top, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    padding: 20px 0;
}

.result-badge-highlight {
    background: var(--accent);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.result-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

/* Personalized Feedback Card */
.profile-box {
    margin-top: 20px;
    text-align: left;
    border-radius: 20px;
    overflow: hidden;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.profile-warning-icon {
    color: var(--accent);
    font-size: 1.3rem;
    animation: warningFlash 1.5s infinite;
}

@keyframes warningFlash {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; transform: scale(1.1); }
}

.profile-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-desc {
    font-size: 1.05rem;
    color: var(--text-white);
    line-height: 1.7;
}

/* /* Presentation Mockup Card */
.presentation-mockup-wrapper {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.presentation-header {
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-light);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.presentation-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #06040a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.main-presentation-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.main-presentation-img:hover {
    transform: scale(1.01);
    filter: brightness(1.03);
}

.presentation-cta {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 8px 30px rgba(255, 0, 127, 0.4);
}

.player-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.player-footer i {
    color: var(--accent);
}

/* Offer Section Elements */
.offer-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 50px;
}

.special-promo-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 207, 232, 0.08);
    border: 1px dashed rgba(251, 207, 232, 0.3);
    color: #fbcfe8;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    margin: 0 auto;
    text-transform: uppercase;
}

.offer-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
}

.offer-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: -20px auto 0;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.mockup-frame {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    background: #000;
    padding: 8px;
}

.glow-border-img {
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-info-col h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    display: inline-block;
}

.offer-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.offer-bullets li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.offer-bullets li i {
    color: var(--success);
    font-size: 1.3rem;
    margin-top: 3px;
}

.offer-bullets li strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 4px;
    font-size: 1.02rem;
}

.offer-bullets li div {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.feat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feat-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
}

.feat-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.feat-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Checkout Card (Call to Action Area) */
.checkout-card {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.pricing-header {
    margin-bottom: 24px;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.new-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 4px 0;
}

.currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 8px;
}

.price-val {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.price-cents {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-sub {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-badges img {
    height: 24px;
    opacity: 0.85;
}

.payment-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-badges span i {
    color: var(--success);
}

.guarantee-box {
    display: flex;
    gap: 16px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    margin-top: 24px;
}

.guarantee-icon {
    font-size: 2.2rem;
    color: var(--success);
    margin-top: 3px;
}

.guarantee-box h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.guarantee-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Testimonials */
.testimonials-section {
    max-width: 650px;
    margin: 0 auto;
}

.section-title-sm {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-white);
}

.testimonial-header h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.stars {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-top: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* FAQ Accordions */
.faq-section {
    max-width: 650px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.98rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 150px; /* adjustment for smooth auto height accordion */
}

/* ==========================================================================
   GLOBAL UTILITIES / ANIMATIONS
   ========================================================================== */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 768px) {
    .container {
        padding: 16px 12px;
    }
    
    .card {
        padding: 30px 20px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .font-lg {
        font-size: 1.9rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mockup-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .price-val {
        font-size: 3.2rem;
    }
}
