/* --- :ROOT & VARIABLES --- */
:root {
    --primary-base: #1877F2;
    --primary-light: #E6F5FF;
    --primary-border: #94CDFF;
    --primary-accent: #C02CF4;
    --primary-dark: #001B59;
    --yellow: #fcd34d;
    --yellow-highlight: #fff3cd;
    --red: #dc2626;
    --green: #32C980;
    --bg-dark: #0D0D10;

    --gradient-start: #564EF5;
    --gradient-end: #32C980;

    --auraDark-1: #000000;
    --auraDark-2: #0d0d0d;
    --auraDark-3: #1a1a1a;
    --auraDark-4: #262626;
    --auraDark-5: #333333;
    --auraDark-6: #4d4d4d;
    --auraDark-7: #666666;
    --auraDark-8: #808080;
    --auraDark-9: #999999;
    --auraDark-10: #b3b3b3;
    --auraDark-11: #cccccc;
    --auraDark-12: #ffffff;

    --heading: "Bricolage Grotesque", sans-serif;
    --body: "Inter", sans-serif;

    --font-size-displayLarge: 76px;
    --font-size-displayMedium: 61px;
    --font-size-displaySmall: 49px;
    --font-size-heading1: 36px;
    --font-size-heading2: 32px;
    --font-size-heading3: 29px;
    --font-size-heading4: 26px;
    --font-size-heading5: 23px;
    --font-size-heading6: 20px;
    --font-size-subtitle: 18px;
    --font-size-body: 16px;
    --font-size-caption: 14px;
    --font-size-label: 13px;
    --font-size-tagline: 11px;

    --card-gap: 40px;
}


/* --- GLOBAL STYLES & RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body);
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--auraDark-12);
    color: var(--auraDark-4);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:not(input, textarea) {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 128px 0;
}

h2 {
    font-family: var(--heading);
    font-size: var(--font-size-displaySmall);
    color: var(--auraDark-1);
    line-height: 1.1;
    margin-bottom: 8px;
    text-align: center;
}

.highlight-red {
    color: var(--red);
}



/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: var(--auraDark-1);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-caption);
    white-space: nowrap;
    transition: color 0.3s ease;
}

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


/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 0 0 50%;
    width: 50%;
}

.hero-content h1 {
    font-family: var(--heading);
    font-size: var(--font-size-displayMedium);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--auraDark-1);
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 48px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: var(--font-size-heading6);
}

.hero-features li i {
    color: var(--primary-base);
}

.hero-content aside a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
}

.hero-content aside {
    font-size: var(--font-size-caption);
    color: var(--auraDark-3);
    text-align: left;
}

.btn-sample {
    margin: 0 !important;
}

.btn-sample,
.main-button {
    background: linear-gradient(-45deg, #1877F2, #C02CF4, #1877F2);
    background-size: 400% 400%;
    animation: gradientFlow 3s ease infinite;
    color: var(--auraDark-12);
    padding: 12px 20px;
    border: none;
    border-radius: 100px;
    font-size: var(--font-size-body);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 24px 0 0;
    transition: transform 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary:hover,
.btn-primary:hover,
.btn-sample:hover,
.main-button:hover {
    transform: scale(1.03);
}

.btn-sample:active,
.main-button:active {
    transform: scale(0.98);
}

/* Keyframes for waving */
@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(14deg);
    }

    30% {
        transform: rotate(-8deg);
    }

    45% {
        transform: rotate(14deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.btn-primary:hover i,
.main-button:hover i {
    display: inline-block;
    animation: wave 1s ease-in-out;
    transform-origin: 70% 70%;
}


#messageButton {
    width: fit-content;
    margin: 32px 0 0;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-media {
    position: relative;
    flex: 0 0 35%;
    width: 35%;
    margin: 0;
}

/* --- Gradient Shadow for Hero Slider (Corrected) --- */

.hero-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Position shadow behind the slider */

    /* Match the slider's rounded corners */
    border-radius: 40px;

    /* Re-apply the gradient and animation */
    background: linear-gradient(-45deg, var(--primary-base), var(--primary-accent), var(--primary-base));
    background-size: 400% 400%;
    animation: gradientFlow 4s ease infinite;

    /* Re-apply the blur and opacity */
    filter: blur(60px);
    opacity: 0.24;
}


.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 40px;
    overflow: hidden;
    background: none;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide.active img {
    transform: scale(1.05);
}

/* Pagination Dots */
.pagination {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.95);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}




/* Loading State */
.slide img.loading {
    opacity: 0;
}

.slide img.loaded {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.people-thumb {
    display: flex;
    margin: 0 0 6px;
}

.people-thumb img {
    width: 40px;
    height: 40px;
    margin-left: -8px;
    border-radius: 5px;
    border: 3px solid var(--auraDark-12);
    transition: transform 0.3s ease, z-index 0.3s ease;
    position: relative;
}

.people-thumb img:hover {
    transform: translateY(-3px) scale(1.05);
    z-index: 10;
}


/* --- ISSUES SECTION (CARD GRID) --- */
.differ-bg {
    background-color: #f8fafc;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(343px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 20px;
    background-color: var(--auraDark-12);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.03);
    border: 2px solid var(--auraDark-12);
}

.card h4 {
    font-family: var(--heading);
    font-size: var(--font-size-heading6);
    color: var(--auraDark-2);
}

.card p {
    font-size: var(--font-size-body);
    line-height: 1.6;
    color: var(--auraDark-4);
    margin-top: 2px;
    flex-grow: 1;
}

.card button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: var(--body);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--primary-base);
    font-weight: 500;
}

.card button i {
    font-size: var(--font-size-heading6);
}



/* --- SELECTION NOTIFICATION STYLES --- */
.selection-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 343px;
    pointer-events: none;
}

.selection-notification.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.notification-content {
    flex: 1;
    margin-right: 40px;
}

.notification-title {
    color: var(--auraDark-1);
    font-family: var(--heading);
    font-size: var(--font-size-subtitle);
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.notification-message {
    color: var(--auraDark-3);
    font-size: var(--font-size-caption);
    line-height: 1.5;
    margin: 0;
}

.notification-close {
    position: absolute;
    background: none;
    top: 12px;
    right: 12px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--auraDark-1);
    font-size: 16px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close i {
    font-size: var(--font-size-heading5);
    color: var(--auraDark-9);
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--auraDark-2);
}

/* Card selection styles */
.card.selected {
    border: 2px solid var(--primary-accent);
    background: linear-gradient(135deg, var(--auraDark-12) 0%, rgba(59, 130, 246, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.card button {
    transition: all 0.3s ease;
}

.card.selected button {
    color: var(--primary-accent);
    font-weight: 700;
}

/* Modal styles (unchanged from previous) */
.selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.selection-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--auraDark-12);
    border-radius: 24px;
    padding: 0;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: none;
}

.selection-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header h3 {
    color: var(--auraDark-1);
    font-family: var(--heading);
    font-size: var(--font-size-heading2);
    font-weight: 600;
    margin: 24px 24px 8px;
    line-height: 1.3;
    text-align: center;
}

.modal-body {
    padding: 0 24px 24px;
}

.modal-subtitle {
    color: var(--auraDark-3);
    font-size: var(--font-size-subtitle);
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: center;
}

.modal-body aside {
    font-size: var(--font-size-body);
    color: var(--auraDark-6);
    text-align: center;
}


.modal-footer {
    padding: 0 24px 24px 24px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: var(--font-size-subtitle);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary i,
.btn-secondary i {
    font-size: var(--font-size-heading6);
}

.btn-primary {
    background: linear-gradient(-45deg, #1877F2, #C02CF4, #1877F2);
    background-size: 400% 400%;
    animation: gradientFlow 3s ease infinite;
    transition: transform 0.3s ease;
    color: var(--auraDark-12);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--auraDark-4);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--auraDark-2);
}


/* Smooth transitions for card interactions */
.card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover:not(.selected) {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}










/* --- FOCUS SECTION (2-COLUMN & CAROUSEL) --- */
.focus {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* This is the new 2-column layout */
.focus .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    width: 100%;
}

.focus-content {
    flex: 1;
    /* Left column */
}


.focus-content h2 {
    text-align: left;
}

.focus-content .section-intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    font-size: var(--font-size-heading6);
}

.different-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 24px;
}

.different-column h4 {
    font-family: var(--heading);
    font-size: var(--font-size-heading5);
    line-height: 1.2;
    color: var(--auraDark-2);
    margin-bottom: 8px;
}

.different-column ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.different-column li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--font-size-body);
    color: var(--auraDark-4);
    line-height: 1.6;
}

.different-column li i {
    color: var(--primary-base);
    font-size: 20px;
    margin-top: 3px;
}

.carousel {
    flex: 1;
    /* Right column */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    /* Give space for the carousel animation */
}

.card-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.focus-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 450px;
    background-color: var(--auraDark-12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease;
}

.card-icon {
    font-size: 5rem;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #1877F2, #C02CF4);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatShimmer 4s ease-in-out infinite, premiumShimmer 3s linear infinite;
}

.focus-card-heading {
    font-size: var(--font-size-heading2);
    line-height: 1.2;
    font-weight: 600;
    color: var(--auraDark-1);
    margin: 0 0 8px 0;
    text-transform: capitalize;
}

.focus-card-subtitle {
    font-size: var(--font-size-body);
    color: var(--auraDark-5);
    margin: 0;
}

/* Card States */
.focus-card.active {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    z-index: 10;
    cursor: default;
}

.focus-card.left-card {
    transform: translate(-50%, -50%) translateX(calc(-50% - var(--card-gap))) scale(0.9) rotateY(45deg);
    opacity: 0.32;
    z-index: 5;
}

.focus-card.right-card {
    transform: translate(-50%, -50%) translateX(calc(50% + var(--card-gap))) scale(0.9) rotateY(-45deg);
    opacity: 0.32;
    z-index: 5;
}

.focus-card.hidden-left {
    transform: translate(-50%, -50%) translateX(calc(-100% - var(--card-gap) * 2)) scale(0.8) rotateY(45deg);
    opacity: 0;
    z-index: 1;
}

.focus-card.hidden-right {
    transform: translate(-50%, -50%) translateX(calc(100% + var(--card-gap) * 2)) scale(0.8) rotateY(-45deg);
    opacity: 0;
    z-index: 1;
}


/* --- SURVEY THEMES SECTION --- */
.themes-section {
    background-color: var(--bg-dark);
}

.themes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.themes-header-text h2 {
    color: var(--auraDark-11);
    margin: 0;
    text-align: left;
}

.themes-header-text p {
    font-size: var(--font-size-heading6);
    color: var(--auraDark-9);
    margin: 8px 0 0 0;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--auraDark-3);
    border-left: 1px solid var(--auraDark-3);
}

.theme-item {
    padding: 20px 32px;
    font-size: var(--font-size-body);
    color: var(--auraDark-10);
    border-right: 1px solid var(--auraDark-3);
    border-bottom: 1px solid var(--auraDark-3);
    background-color: var(--auraDark-1);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.theme-item:hover {
    background-color: var(--auraDark-2);
    transform: scale(1.02);
    z-index: 2;
    position: relative;
    box-shadow: 0 0 8px 4px rgba(255, 255, 255, 0.03);
}


/* --- ADOPTER & TESTIMONIALS SECTION --- */
.adopter-section {
    background-color: var(--primary-light);
    overflow: hidden;
}

.adopter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.adopter-content h2 {
    color: var(--primary-dark);
    text-align: left;
    margin-bottom: 8px;
}

.adopter-content p {
    font-size: var(--font-size-heading6);
    color: var(--primary-dark);
    line-height: 1.5;
    margin-bottom: 24px;
}

.perks-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.perks-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-body);
    font-weight: 500;
    color: var(--primary-dark);
}

.perks-list li i {
    color: var(--primary-base);
    font-size: 20px;
}

@keyframes scrollVertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.testimonial-scroller {
    height: 450px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.scroller-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: scrollVertical 40s linear infinite;
}

.testimonial-scroller:hover .scroller-inner {
    animation-play-state: paused;
}

.testimonial-card {
    background-color: var(--auraDark-12);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 0 16px 4px rgba(0, 27, 89, 0.03);
}

.testimonial-text {
    color: var(--auraDark-4);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--auraDark-2);
}

.author-designation {
    display: block;
    font-size: var(--font-size-caption);
    color: var(--auraDark-7);
}


/* --- FAQ SECTION --- */
.faq-section {
    background-color: var(--auraDark-12);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--auraDark-12);
    box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.03);
}

.faq-item {
    border-bottom: 1px solid var(--primary-light);
    position: relative;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}



.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 32px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: var(--primary-light);
}

.faq-question:hover .faq-icon {
    color: var(--primary-accent);
    transform: scale(1.1);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-base);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-question-text {
    font-family: var(--heading);
    font-size: var(--font-size-heading6);
    font-weight: 500;
    color: var(--auraDark-2);
    line-height: 1.5;
    flex: 1;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: transparent;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 32px 32px 64px;
    color: var(--auraDark-5);
    font-size: var(--font-size-subtitle);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.1s;
}

.faq-item.active {
    background-color: rgba(241, 245, 249, 0.05);
}

.faq-item.active .faq-question {
    background-color: rgba(241, 245, 249, 0.08);
    padding: 32px 24px 16px;
}

.faq-item.active .faq-question-text {
    color: var(--auraDark-1);
    font-weight: 600;
}

.faq-item.active .faq-icon {
    color: var(--primary-accent);
    transform: rotate(0deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

/* Loading and Error States */
.faq-loading,
.faq-error,
.faq-empty {
    text-align: center;
    color: var(--auraDark-5);
    padding: 40px 20px;
    font-size: var(--font-size-body);
    line-height: 1.6;
}

.faq-loading {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}




.faq-question:focus .faq-icon {
    color: var(--primary-accent);
}

/* --- ANIMATIONS --- */
@keyframes floatShimmer {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.03);
    }
}

@keyframes premiumShimmer {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}


/* --- FOOTER STYLES --- */

.new-main-footer {
    background-color: var(--bg-dark);
    padding: 0 0 64px;
    color: var(--auraDark-11);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

/* Left Column: Profile Card */
.footer-profile {
    display: flex;
    flex-direction: column;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: 32px;
    border: 2px solid var(--auraDark-3);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 1);
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--auraDark-4);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.profile-content h4 {
    font-family: var(--heading);
    font-size: var(--font-size-heading4);
    color: var(--auraDark-12);
    margin-bottom: 8px;
}

.profile-content p {
    font-size: var(--font-size-body);
    color: var(--auraDark-9);
    line-height: 1.6;
    margin-bottom: 16px;
}

.profile-content p:last-of-type {
    margin-bottom: 16px;
}

.profile-links {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    font-size: var(--font-size-caption);
}

.profile-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--auraDark-11);
    transition: color 0.3s ease;
}

.profile-links a:hover {
    color: var(--auraDark-12);
    text-decoration: underline;
}

/* Right Column: Main Footer Content */
.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 20px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: var(--font-size-caption);
    color: var(--auraDark-8);
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin: 32px 0 40px;
}

.footer-link-col h5 {
    font-family: var(--heading);
    font-size: var(--font-size-subtitle);
    color: var(--auraDark-7);
    margin-bottom: 16px;
}

.footer-link-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-col a {
    text-decoration: none;
    color: var(--auraDark-9);
    transition: color 0.3s ease;
}

.footer-link-col a:hover {
    color: var(--auraDark-12);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    font-size: var(--font-size-tagline);
    color: var(--auraDark-7);
}




.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--auraDark-8);
    font-size: var(--font-size-heading6);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--auraDark-4);
    transform: translateY(-2px);
}