:root {
    --primary: #25D366;
    /* WhatsApp Green */
    --primary-dark: #1da851;
    --dark: #111827;
    --gray-dark: #374151;
    --gray-light: #F3F4F6;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 16px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].animate {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

span.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* --- Layout --- */
.nav-container,
.hero,
.hero-content,
.features,
.how-it-works,
.testimonials,
.pricing,
.faq,
.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 211, 102, 0.23);
}

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: none;
    /* Hidden on mobile by default */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--gray-dark);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s;
    }

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

/* --- Hero Section --- */
.hero-wrapper {
    background: radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    padding: 4rem 0 6rem;
}

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

@media (min-width: 900px) {
    .hero {
        grid-template-columns: minmax(auto, 650px) minmax(auto, 350px);
        gap: 4rem;
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 4rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- Habit Chart --- */
.habit-chart-container {
    background: white;
    padding: 1.75rem;
    border-radius: 28px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    animation: chartReveal 1s ease-out forwards;
    overflow: hidden;
    /* Prevent SVG animation from going off-screen */
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.chart-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.chart-svg {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #9CA3AF;
    font-weight: 500;
}

.chart-line {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChart 2.5s ease-out forwards;
}

.chart-area {
    fill: url(#chartGradient);
    opacity: 0;
    animation: fadeInArea 1s 1.5s ease-out forwards;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 0.15;
    }
}

@keyframes chartReveal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pulse {
    animation: pulse-ring 2s infinite;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    margin-top: 2.5rem;
}

.hero-trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.trust-avatars {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FBBF24;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.trust-text span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-dark);
}

/* --- Phone Mockup (Video) --- */
.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    border: 3px solid #1a1a1a;
    border-radius: 38px;
    background: #000;
    width: 290px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.35),
        inset 0 0 2px 1px rgba(255, 255, 255, 0.1);
    aspect-ratio: 9/19;
    position: relative;
    padding: 3px;
    /* Ultra-thin internal bezel */
}

.phone-island {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #111;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
}

.phone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Features (Bento Grid) --- */
.features {
    padding: 6rem 1.5rem;
}

.section-badge {
    text-align: center;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: var(--gray-dark);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.bento-item {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    background: white;
}

.bento-item.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    justify-content: flex-start;
}

.bento-item.bento-medium {
    grid-column: span 2;
}

.bento-content i {
    color: var(--primary);
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
}

.bento-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.bento-item p {
    font-size: 1rem;
    margin: 0;
    color: var(--gray-dark);
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
}

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

    .bento-item.bento-large,
    .bento-item.bento-medium {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* --- How It Works --- */
.how-it-works {
    background: var(--gray-light);
    padding: 5rem 1.5rem;
    border-radius: var(--radius);
    margin: 4rem auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* --- Testimonials (WhatsApp Style) --- */
.testimonials {
    padding: 4rem 1.5rem;
}

/* --- Testimonials (WhatsApp Style) --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .testimonial-card:nth-child(even) {
        transform: translateY(40px);
    }
}

.testimonial-card {
    background: #DCF8C6;
    /* WhatsApp Message Green Bubble Color */
    padding: 1rem 1.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 10px solid #DCF8C6;
    border-left: 10px solid transparent;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.user-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

.user-status {
    font-size: 0.75rem;
    color: var(--primary-dark);
}

.testimonial-text {
    font-size: 1rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    opacity: 0.6;
}

.check-marks {
    color: #34B7F1;
    font-weight: bold;
}

/* --- Pricing --- */
.pricing {
    text-align: center;
    padding: 4rem 1.5rem;
}

/* --- Pricing --- */
.pricing {
    padding: 6rem 1.5rem;
}

.pricing-card {
    background: white;
    color: var(--dark);
    max-width: 400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.pricing-popular {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--dark);
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
}

.price-container {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 4px;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: #9CA3AF;
    margin-left: 4px;
}

.pricing-cta {
    width: 100%;
    background: var(--primary);
    color: white;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.pricing-cta:hover {
    background: var(--primary-dark);
}

.pricing-footer-text {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 1rem;
}

.benefits {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.benefits i {
    color: var(--primary);
    width: 20px;
}

/* --- FAQ --- */
.faq-grid {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    padding: 1.5rem 0;
}

.faq-item h3 {
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
    opacity: 0;
}

.faq-item.active p {
    max-height: 200px;
    margin-top: 1rem;
    opacity: 1;
}

.faq-item.active h3::after {
    content: '-';
}

/* --- Footer --- */
.footer {
    background: var(--gray-light);
    padding: 4rem 1.5rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    text-align: center;
    color: var(--gray-dark);
    font-size: 0.875rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.footer a {
    text-decoration: none;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 0.5rem;
}

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

/* --- Popups --- */
.email-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    /* JS will toggle flex */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.email-popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.email-form input {
    padding: 0.875rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
}

/* --- Privacy & Trust --- */
.privacy-trust {
    background: white;
    padding: 8rem 1.5rem;
}

.privacy-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.trust-list {
    list-style: none;
    margin-top: 2rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-list i {
    color: var(--primary);
}

.privacy-visual {
    display: flex;
    justify-content: center;
}

.secure-badge-container {
    background: #f0fdf4;
    padding: 3rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

/* --- Calendar Visual --- */
.calendar-section {
    padding: 6rem 1.5rem;
    background: var(--gray-light);
    border-radius: 60px;
    margin: 0 1.5rem;
}

.calendar-visual {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 2rem;
}

.day {
    aspect-ratio: 1;
    background: #E5E7EB;
    border-radius: 6px;
}

.day-filled {
    background: var(--primary);
}

.day-today {
    border: 2px solid var(--primary);
    background: white;
    position: relative;
}

.day-today::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.calendar-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

/* --- Insight Examples --- */
.insights-section {
    padding: 6rem 1.5rem;
}

.insights-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark);
}

/* --- Mobile Tweaks Refined --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    .hero {
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .trust-avatars {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .privacy-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-list li {
        justify-content: center;
    }

    .calendar-section {
        border-radius: 40px;
        margin: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        padding: 5rem 2rem;
        z-index: 1000;
        gap: 2rem;
        text-align: center;
    }

    .nav-links.active a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
    }
}

@media (min-width: 900px) {
    .hero-content h1 {
        max-width: 600px;
    }

    .hero-description {
        max-width: 520px;
    }
}

/* --- AI Features Section --- */
.ai-features-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.ai-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ai-feature-icon i {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.ai-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.ai-feature-card p {
    font-size: 1rem;
    margin: 0;
}

/* --- Achievements Section --- */
.achievements-section {
    padding: 6rem 1.5rem;
    text-align: center;
}

.badges-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.badge-icon.unlocked {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.badge-icon.locked {
    background: var(--gray-light);
    border: 2px dashed #D1D5DB;
    opacity: 0.5;
}

.badge-item:hover .badge-icon.unlocked {
    transform: scale(1.1);
}

.badge-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-dark);
}

@media (max-width: 600px) {
    .badge-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .badges-showcase {
        gap: 1rem;
    }
}