/* --- Variables & Reset --- */
:root {
    --color-primary: hsl(190, 85%, 20%);
    --color-primary-dark: hsl(190, 85%, 15%);
    --color-primary-light: hsl(190, 85%, 25%);
    --color-primary-alpha: hsla(190, 85%, 20%, 0.1);
    --color-primary-beta: hsla(190, 85%, 20%, 0.05);

    --color-accent: hsl(100, 70%, 35%);
    --color-accent-hover: hsl(100, 70%, 30%);

    --color-bg: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-light: #f1f5f9;

    --color-text: hsl(190, 85%, 15%);
    --color-text-muted: var(--color-text);
    --color-white: #ffffff;

    --color-destructive: hsl(0, 84.2%, 60.2%);
    --color-destructive-bg: hsla(0, 84.2%, 60.2%, 0.1);

    --border-color: #e2e8f0;

    --font-body: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent {
    color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-destructive {
    color: var(--color-destructive);
}

.text-muted {
    color: var(--color-text-muted);
}

.font-bold {
    font-weight: 700;
}

/* FIX: Ensure hidden utility has priority */
.hidden {
    display: none !important;
}

/* Missing Utilities from Original Design */
.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.section-padding {
    padding: 4rem 0;
}

.mt-4 {
    margin-top: 1.5rem;
}

.bg-white {
    background-color: var(--color-bg);
}

.bg-light {
    background-color: hsla(190, 20%, 96%, 0.3);
}

.bg-lighter {
    background-color: hsla(190, 20%, 96%, 0.5);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
}

.btn-outline {
    border: 2px solid rgba(226, 232, 240, 0.8);
    color: var(--color-primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary-alpha);
}

.btn-lg {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    height: 3rem;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid hsla(190, 84%, 20%, 0.15);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border-color);
    padding: 0.75rem 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    --color-primary-dark: hsl(190, 85%, 15%);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    color: var(--color-primary);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.mobile-link {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 4rem;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, var(--color-bg-secondary), var(--color-white));
    overflow: hidden;
}

/* Abstract Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.blob-top {
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background-color: rgba(8, 95, 109, 0.05);
    transform: skewX(-12deg) translateX(50%);
}

.blob-bottom {
    bottom: 0;
    left: 0;
    width: 33%;
    height: 50%;
    background-color: rgba(100, 163, 13, 0.05);
    transform: skewX(-12deg) translateX(-50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-primary-beta);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 1.5rem;
}

.badge .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.avatars {
    display: flex;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    background-color: #e5e7eb;
    overflow: hidden;
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    z-index: 10;
}

.phone-mockup {
    border-radius: 2.5rem;
    overflow: hidden;

}

/* Floating Animations */
.float-card {
    position: absolute;
    background: var(--color-white);
    padding: 1rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: bounce 3s infinite ease-in-out;
}

.float-balance {
    top: 16rem;
    left: -2rem;
}

.float-approved {
    bottom: 10rem;
    right: -2.5rem;
    animation-delay: 1.5s;
    animation-duration: 4s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.float-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.bg-green {
    background-color: rgba(100, 163, 13, 0.1);
    color: var(--color-accent);
}

.icon-circle.bg-blue {
    background-color: var(--color-primary-alpha);
    color: var(--color-primary);
    width: 2.5rem;
    height: 2.5rem;
}

.flex-align {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* --- Features Section --- */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: rgba(241, 245, 249, 0.5);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 2px solid rgba(226, 232, 240, 0.8);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: var(--color-white);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-white);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.feature-card p {
    color: var(--color-text-muted);
}

/* --- Preview Section (Screenshot Slider) --- */
/* --- Swiper Customization --- */
.swiper {
    width: 100%;
    max-width: 1024px;
    padding-bottom: 3rem;
    /* Space for pagination */
    padding-top: 1rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 300px;
    /* Limit image width */
    position: relative;
    /* For absolute overlay */
}

.slide-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover Overlay */
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Cover half the screen */
    padding: 1.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align text to bottom */
    background: linear-gradient(to top, rgba(8, 95, 109, 0.95) 10%, rgba(8, 95, 109, 0.5) 50%, transparent 100%);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
}

.slide-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.slide-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    margin-bottom: 2.25rem;

}

/* Hover Effects */
.slide-content:hover .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.slide-content:hover img {
    transform: scale(1.05);
    /* Subtle zoom */
}

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Custom Pagination */
.swiper-pagination-bullet-active {
    background: var(--color-primary);
}


/* --- Comparison Section --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr auto 1fr;
    }
}

.comparison-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.problem-card {
    box-shadow: var(--shadow-xl);
}

.solution-card {
    box-shadow: var(--shadow-xl);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}


.list-check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 4px;
}

.list-check li {
    color: var(--color-text-muted);
}

.list-destructive li i {
    color: var(--color-destructive);
    flex-shrink: 0;
}

.list-destructive li {
    font-weight: 500;
    color: var(--color-text);
}

.list-accent li {
    font-weight: 500;
    color: var(--color-text);
}



.comparison-visual {
    display: none;
    justify-content: center;
    width: 100%;
    max-width: 200px;
}

@media (min-width: 1024px) {
    .comparison-visual {
        display: flex;
    }
}

/* --- How It Works --- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-connector {
    display: none;
    position: absolute;
    top: 3rem;
    left: 16%;
    right: 16%;
    height: 2px;
    background-color: #f3f4f6;
    z-index: 0;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
    }
}

.step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--color-white);
    border: 4px solid var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.step-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-primary);
}

.step-item:hover .step-icon {
    border-color: rgba(8, 95, 109, 0.2);
    transform: scale(1.1);
}

.step-item h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.step-item p {
    color: var(--color-text-muted);
    padding: 0 1rem;
    text-align: center;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--color-white);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--color-accent);
    position: relative;
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.price {
    margin-top: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price span:first-child {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price .period {
    color: var(--color-text-muted);
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;

}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-features li i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
}

/* --- CTA Banner --- */
.cta-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-primary);
    padding-top: 6rem;
}

.blob-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.blob-white {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background: var(--color-white);
    border-radius: 50%;
    filter: blur(60px);
}

.blob-accent {
    position: absolute;
    bottom: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background: var(--color-accent);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-box {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.25rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.small-note {
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 1.5rem;
    margin-bottom: 0 !important;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 0;
}

/*.footer-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*    gap: 3rem;*/
/*    margin-bottom: 3rem;*/
/*    justify-items: center;*/
/*}*/

.footer-grid {
    display: grid;
    grid-template-columns: 340px repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}
@media (max-width: 620px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.brand-col {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .brand-col {
        grid-column: span 1;
    }
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-col ul a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}



@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .trust-indicator {
        justify-content: center;
    }

    .nav-links {
        display: none;
        /* Hide desktop links on mobile */
    }

    .mobile-toggle {
        display: block;
        /* Show hamburger button on mobile */
    }

    .float-card {
        display: none;
        /* Hide floating cards on very small screens to avoid clutter */
    }

    @media (min-width: 640px) {
        .float-card {
            display: block;
        }
    }
}

.currency-toggle {
    margin-top: 24px;
    background-color: var(--color-primary-alpha);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s
}

.currency-btn {
    padding: 12px 24px;

    background-color: transparent;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 24px;
    transition: background-color 0.3s, color 0.3s;
}

.currency-btn.active {
    background-color: var(--color-primary);
    color: white;
}

/* --- FAQ Section --- */
.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-alpha);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background-color: rgba(241, 245, 249, 0.5);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--color-primary-beta);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin: 0;
    font-weight: 600;
}

.faq-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--color-white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}