:root {
    --color-1: #593B98; /* #1b1429 */
    --color-2: #A57DF9;
    --color-3: #BFA3FB;
    --color-4: #F5C542;
    --white: #ffffff;
    --light-grey: #f3f4f6;
    --text-main: #1f2937;
    --main-bg-color: #fff;
    --main-text-color: #555;
    --dark-text-color: #222;
    --light-text-color: #c7c7c7;
    --brand-primary-color: #E06E3F;
    --light-bg-color: #ededee;
    --dark-bg-color: #404040;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'DM Sans', sans-serif; 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

h1, h2, h3, .font-display { 
    font-family: 'Syne', sans-serif; 
    font-weight: 800; 
    text-transform: tight; 
}

h1.headline {
    margin-top: 20%;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Syne', sans-serif; 
}

.text-center {
    text-align: center;
}

p.lead {
    font-size: 1.0rem;
}

.container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1rem;
}

.bg-purple { background: var(--color-2); color: var(--white); }

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

.btn {
    padding: 1rem 2rem; 
    border-radius: 2rem;
    display: inline-block;
    font-weight: 500;
    align-items: center; 
    gap: 0.5rem; 
    cursor: pointer; 
    transition: var(--transition); 
    border: none;
    font-size: 0.9rem;
    border-radius: 2rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-dark { 
    background: var(--color-1); 
    color: var(--white); 
}

.btn-purple { 
    background: var(--color-2); 
    color: var(--white); 
}

.btn-outline { 
    border: 1px solid var(--color-1);
    background: transparent; 
}

.btn-outline-2 { border: 1px solid var(--border); background: white; }

.btn-full { width: 100%; justify-content: center; }

.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
}

input.form-control {
    border-color: #f1f5f9;
    padding: 0.6rem 1rem;
}

input.form-control:focus {
    border-color: var(--color-1) !important;
    box-shadow: none;
}

.password-field-wrapper {
    position: relative;
    width: 100%;
}

.auth-input {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem; /* Extra space for the icon */
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s;
}

.auth-input:focus {
    border-color: var(--purple);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: color 0.3s;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--color-3);
}

.auth-response {
    font-size: 0.9rem;
    font-weight: 500;
}

button:disabled {
    background: var(--color-2);
    /* color: rgba(255, 255, 255, 0.7); */
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* --- FAQ SECTION --- */
.faq-section { 
    padding: 100px 0; 
    background: #fff; 
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

@media (max-width: 768px) {
    .faq-title { font-size: 2rem; margin-bottom: 2rem; }
}
@media (max-width: 480px) {
    .faq-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
}

.faq-item { 
    border-bottom: 1px solid #e5e7eb; 
    padding: 1.5rem 0; 
    cursor: pointer; 
    user-select: none;
}

.faq-question { 
    display: flex; 
    justify-content: space-between; 
    font-weight: 700; 
    font-size: 1.2rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: var(--transition); 
    color: #6b7280; 
    margin-top: 0;
    opacity: 0;
}

.faq-item.active .faq-answer { 
    max-height: 200px; 
    margin-top: 1rem;
    opacity: 1;
}

.faq-question i {
    transition: transform 0.3s ease; /* Smooth rotation */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); /* Flip the chevron upside down */
    color: var(--color-2); /* Optional: change color when active */
}

.faq-item.active .faq-question {
    color: var(--color-2);
}

/* --- MODALS (Auth) --- */
.modal-overlay { 
    position: fixed; 
    inset: 0; 
    background: rgba(26, 31, 60, 0.9); 
    z-index: 5000; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(5px); 
}

.modal-card { 
    background: white; 
    width: 100%; 
    max-width: 480px; 
    border-radius: 30px; 
    padding: 3rem; 
    position: relative; 
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F1F5F9;
    color: var(--dark-navy, #0F172A);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: #E2E8F0;
}

@media (max-width: 576px) {
    .modal-overlay {
        align-items: stretch;
        justify-content: stretch;
    }

    .modal-card {
        max-width: 100%;
        width: 100%;
        height: 100%;
        border-radius: 0 !important;
        padding: 2.5rem 1.5rem 2rem;
        overflow-y: auto;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

/* --- FOOTER STYLES --- */
.main-footer {
    background: #0f0f0f; 
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2.5fr;
    gap: 3rem;
    margin-bottom: 50px;
    padding-bottom: 30px !important;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-2);
    transform: translateY(-3px);
}

.footer-links h4, .footer-newsletter h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    
}

.footer-links ul li a {
    text-decoration: none !important;
    color: #9ca3af;
}

.footer-links ul li a:hover {
    color: var(--white);
    /* padding-left: 5px; */
}

.footer-newsletter p {
    margin-bottom: 1.2rem;
    color: #9ca3af;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    flex: 1;
    outline: none;
}

.newsletter-form button {
    background: var(--purple-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links, .newsletter-form {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
}

:root {
    --purple-primary: #6644AE;
    --purple-dark: #4C2D89;
    --purple-light: #F3EFFF;
    --yellow-accent: #FFC837;
    --yellow-soft: #FFF8E6;
    --dark-navy: #0F172A;
    --gray-text: #475569;
    --border-color: #E2E8F0;
    /* --font-main: 'Plus Jakarta Sans', sans-serif; */
    /* --font-main: 'Sen', sans-serif; */
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font-main); }

.hero-wrapper {
    position: relative;
    width: 100%;
    background: #FAFAFD;
    overflow: hidden;
    padding-bottom: 2rem;
}

/* Ambient Glow Backgrounds */
.glow-purple {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(102, 68, 174, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px; left: -100px;
    z-index: 0; pointer-events: none;
}

.glow-yellow {
    position: absolute;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(255, 200, 55, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: 10%; right: -50px;
    z-index: 0; pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Nav styling */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
.nav img { height: 50px; }

@media (max-width: 768px) {
  .nav {
    flex-wrap: nowrap; /* keep everything on one line */
    gap: 0.5rem;
  }
  .nav img { height: 32px; }
  .nav a { font-size: 0.85rem; }
  .nav .btn-dark {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .nav img { height: 28px; }
  .nav a { display: none; } /* hide "Sign in" text link if space is too tight */
  .nav .btn-dark {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
  }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-dark {
    background: var(--dark-navy);
    color: #fff;
}
.btn-dark:hover {
    background: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
.btn-purple {
    background: var(--purple-primary);
    color: #fff;
}
.btn-purple:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 68, 174, 0.3);
}
.btn-outline {
    background: #fff;
    color: var(--dark-navy);
    border: 1.5px solid var(--border-color);
}
.btn-outline:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

/* Hero Section Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3rem 0 4rem 0;
}

/* Left Content */
.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple-light);
    color: var(--purple-primary);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(102, 68, 174, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--dark-navy);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.highlight-span {
    position: relative;
    display: inline-block;
    color: var(--purple-dark);
    z-index: 1;
}
.highlight-span::after {
    content: "";
    position: absolute;
    bottom: 4px; left: -4px; right: -4px;
    height: 16px;
    background: var(--yellow-accent);
    opacity: 0.85;
    border-radius: 4px;
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 90%;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* Social Trust Badge */
.trust-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.avatar-group {
    display: flex;
}
.avatar-group img {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}
.avatar-group img:first-child { margin-left: 0; }
.trust-text {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-weight: 600;
}
.trust-text span { color: var(--dark-navy); font-weight: 800; }

/* Right Mockup Card Visual */
.mockup-wrapper {
    position: relative;
    padding: 1rem;
}

.mockup-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

.inv-title {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-main);
    color: var(--dark-navy);
}

.inv-date { padding: 0; text-align: left; }

.badge-draft {
    background: #F1F5F9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (max-width: 576px) {
    .badge-draft {
        font-size: 0.50rem;
    }
}

.business-pill {
    background: var(--yellow-soft);
    color: #B45309;
    border: 1px solid #FDE68A;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}
.item-title { color: var(--gray-text); font-size: 0.95rem; font-weight: 500; }
.item-price { font-weight: 800; color: var(--dark-navy); font-size: 1rem; }

.skeleton-bar {
    height: 8px;
    background: #F1F5F9;
    border-radius: 4px;
    margin-top: 0.75rem;
}

/* Floating Widgets around Mockup */
.floating-widget {
    position: absolute;
    background: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.widget-1 {
    top: -15px;
    right: -20px;
    background: #ECFDF5;
    border-color: #A7F3D0;
}
.widget-1 i { color: #059669; font-size: 1.2rem; }
.widget-1-text { font-size: 0.8rem; color: #065F46; }
.widget-1-text strong { display: block; font-size: 0.9rem; color: #047857; }

.widget-2 {
    bottom: -15px;
    left: -20px;
    animation-delay: -2s;
}
.widget-2 .icon-box {
    width: 36px; height: 36px;
    background: var(--purple-light);
    color: var(--purple-primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Seamless Marquee Section */
.services-marquee {
    margin-top: 2rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Soft edge masks */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    padding: 0.65rem 1.25rem;
    border-radius: 99px;
    border: 1px solid var(--border-color);
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.service-item i { color: var(--purple-primary); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 2rem auto; }
    .cta-group { justify-content: center; }
    .trust-proof { justify-content: center; }
    .hero-title { font-size: 2.75rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .widget-1 { right: 0; top: -25px; }
    .widget-2 { left: 0; bottom: -25px; }
}

/* -- FAQ Modern Styling -- */
.faq-modern { padding: 100px 0; border-top: 1px solid #eee; }
.faq-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }

.faq-accordion {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    cursor: pointer;
}

.faq-head {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
    color: #64748b;
    margin-top: 0;
}

.faq-accordion.active .faq-body {
    max-height: 200px;
    margin-top: 15px;
}

/* -- Footer Midnight Styling -- */
.footer-v2 {
    background: #0f172a; /* Midnight Navy */
    color: white;
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { height: 32px; filter: brightness(0) invert(1); margin-bottom: 20px;}

.link-col h6 { color: #94a3b8; text-transform: uppercase; margin-bottom: 20px; font-size: 0.8rem;}
.link-col a { display: block; color: white; text-decoration: none; margin-bottom: 12px; opacity: 0.7; transition: 0.2s;}
.link-col a:hover { opacity: 1; color: #BFA3FB; }

.input-group-modern {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.input-group-modern input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px;
    flex: 1;
}

.input-group-modern button {
    background: #593B98;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.benefits-section {
    background-color: #0f0f0f; /* Near black */
    color: #ffffff;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.pill-badge {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 20px;
    display: inline-block;
}

.benefits-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.benefits-header p {
    color: #94a3b8;
    max-width: 450px;
    font-size: 1.1rem;
}

/* Nav Buttons */
.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 10px;
}

.nav-btn:hover {
    background: #333;
    border-color: #555;
}

/* Horizontal Slider */
.benefits-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.benefits-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.benefit-card {
    min-width: 450px; /* Card width */
    background: #161616;
    border-radius: 32px;
    padding: 40px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #222;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    border-color: #593B98;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 576px) {
  .benefits-slider {
    scroll-snap-type: x mandatory;
  }

  .benefit-card {
    flex: 0 0 calc(100% - 20px);
    width: calc(100% - 20px);
    margin-right: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 28px;
    border-radius: 20px;
  }

  .benefit-card:last-child {
    margin-right: 0; /* no trailing gap after the last card */
  }

  .benefit-card h3 { font-size: 1.3rem; line-height: 1.3; }
  .benefit-card p { font-size: 0.9rem; }
  .card-visual { height: 150px; margin-top: 20px; }
  .floating-icon { font-size: 3rem; }
}

@media (max-width: 380px) {
  .benefit-card { padding: 22px; }
  .benefit-card h3 { font-size: 1.15rem; }
}

@media (max-width: 992px) {
  .benefits-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .header-nav { align-self: flex-end; }
  .benefits-header h2 { font-size: 2.5rem; }

  .main-feature { grid-column: span 2; grid-row: span 1; }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav { flex-wrap: wrap; gap: 1rem; }

  .footer-main { grid-template-columns: 1fr; gap: 40px; }

  .benefits-header h2 { font-size: 2rem; }
  .faq-section h2 { font-size: 2rem; }

  .benefit-card {
    min-width: 85vw;
    padding: 28px;
  }
  .benefit-card h3 { font-size: 1.4rem; }
  .card-visual { height: 180px; }
}

@media (max-width: 576px) {
  .nav img { height: 36px; }
  .nav a, .nav .btn { font-size: 0.85rem; padding: 0.6rem 1.1rem; }

  .benefits-section { padding: 60px 0; }
  .benefits-header h2 { font-size: 1.75rem; }
  .pill-badge { font-size: 0.7rem; }

  .benefit-card {
    min-width: 100%;
    padding: 24px;
    border-radius: 20px;
  }
  .card-visual { height: 150px; margin-top: 24px; }
  .floating-icon { font-size: 3.5rem; }

  .faq-section { padding: 60px 0; }
  .faq-section h2 { font-size: 1.6rem; margin-bottom: 2rem; }

  .modal-card { padding: 2rem 1.5rem; border-radius: 20px; }
  .footer-bottom { font-size: 0.75rem; }
}

/* Visual Placeholder */
.card-visual {
    margin-top: 40px;
    height: 240px;
    background: #0f0f0f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-icon {
    font-size: 5rem;
    color: #593B98;
    filter: drop-shadow(0 0 20px rgba(89, 59, 152, 0.4));
    animation: floating 3s ease-in-out infinite;
}

.purple-glow {
    background: radial-gradient(circle, rgba(89, 59, 152, 0.15) 0%, transparent 70%);
}

.currency-tag {
    position: absolute;
    background: white;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    bottom: 20%;
    left: 20%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.top-right { top: 20%; right: 20%; left: auto; bottom: auto; }

/* Pagination */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    transition: 0.3s;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: #593B98;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stat-bar {
    flex: 1;
    background: linear-gradient(to top, #593B98, #BFA3FB);
    border-radius: 6px 6px 2px 2px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    
    /* Initial state for animation */
    transform-origin: bottom;
    animation: barGrow 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Hover effect on bars */
.stat-bar:hover {
    filter: brightness(1.2);
    transform: scaleX(1.1);
}

/* Animation to make bars grow from the bottom */
@keyframes barGrow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Optional: Stagger the animation of the bars */
.benefits-section .stat-bar:nth-child(1) { animation-delay: 0.1s; }
.benefits-section .stat-bar:nth-child(2) { animation-delay: 0.2s; }
.benefits-section .stat-bar:nth-child(3) { animation-delay: 0.3s; }
.benefits-section .stat-bar:nth-child(4) { animation-delay: 0.4s; }


.benefits-section .mini-stats {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100%;
}
.benefits-section .stat-bar {
    width: 84px;
    background: #593B98;
    border-radius: 6px 6px 0 0;
}