/* ========================================================================
   FINANCIAL STATEMENT AUDIT PAGE - MODERN FINTECH DESIGN
   ======================================================================== */

/* CSS Custom Properties */
:root {
    --fsa-primary: #FF6B35;
    --fsa-secondary: #E93C05;
    --fsa-dark: #1A1A1A;
    --fsa-light: #FFF4F0;
    --fsa-white: #FFFFFF;
    --fsa-blue: #0066CC;
    --fsa-gray: #6C757D;
}

/* ========================================================================
   KEYFRAME ANIMATIONS
   ======================================================================== */

/* 1. Float - Vertical floating motion */
@keyframes fsaFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 2. FloatSlow - Diagonal floating with horizontal drift */
@keyframes fsaFloatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(15px, -20px);
    }
    66% {
        transform: translate(-15px, -10px);
    }
}

/* 3. Pulse - Opacity + scale pulsing effect */
@keyframes fsaPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* 4. Shimmer - Horizontal shine animation */
@keyframes fsaShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* 5. FadeInUp - Fade in from 30px below */
@keyframes fsaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 6. ScaleIn - Scale from 0.9 to 1.0 with fade */
@keyframes fsaScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 7. Bounce - Vertical bounce for icons */
@keyframes fsaBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */

.fsa-hero {
    background: linear-gradient(135deg, var(--fsa-light) 0%, var(--fsa-white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Gradient Overlay */
.fsa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Floating Circles */
.fsa-circle-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: fsaFloatSlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.fsa-circle-2 {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(233, 60, 5, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: fsaFloat 6s ease-in-out infinite;
    animation-delay: -2s;
    pointer-events: none;
    z-index: 0;
}

/* Hero Pill Badge */
.fsa-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    color: var(--fsa-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: fsaScaleIn 0.6s ease-out;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsa-hero-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--fsa-secondary) 0%, var(--fsa-primary) 100%);
}

/* Hero Title */
.fsa-hero-title {
    color: var(--fsa-dark);
    font-weight: 700;
    line-height: 1.2;
    animation: fsaFadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Subtitle */
.fsa-hero-subtitle {
    color: var(--fsa-gray);
    line-height: 1.6;
    animation: fsaFadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Buttons */
.fsa-hero-buttons {
    animation: fsaFadeInUp 0.8s ease-out 0.6s both;
}

.fsa-hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsa-hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fsa-hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.fsa-hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

/* Hero Image Card */
.fsa-hero-image-card {
    position: relative;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
    animation: fsaScaleIn 0.8s ease-out 0.3s both;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsa-hero-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.6);
}

.fsa-hero-image-content {
    text-align: center;
    padding: 2rem;
    z-index: 2;
    position: relative;
    color: var(--fsa-primary);
}

.fsa-hero-image-content i {
    animation: fsaBounce 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.fsa-hero-image-card:hover .fsa-hero-image-content i {
    animation: fsaBounce 1s ease-in-out infinite;
}

/* Graffiti Decoration Box */
.fsa-graffiti-box {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(255, 107, 53, 0.4);
    border-radius: 10px;
    transform: rotate(-8deg);
    pointer-events: none;
    background: rgba(255, 107, 53, 0.05);
    transition: all 0.3s ease;
}

.fsa-hero-image-card:hover .fsa-graffiti-box {
    transform: rotate(5deg) scale(1.1);
    border-color: rgba(255, 107, 53, 0.6);
}

/* ========================================================================
   WHY IT MATTERS SECTION
   ======================================================================== */

.fsa-why-card {
    background: var(--fsa-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fsaFadeInUp 0.6s ease-out both;
}

.fsa-why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.fsa-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.fsa-why-icon i {
    font-size: 2rem;
    color: var(--fsa-white);
    transition: transform 0.3s ease;
}

.fsa-why-card:hover .fsa-why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.fsa-why-card:hover .fsa-why-icon i {
    transform: scale(1.1);
}

/* Checklist Card */
.fsa-checklist-card {
    background: var(--fsa-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    animation: fsaFadeInUp 0.6s ease-out 0.2s both;
}

.fsa-checklist-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fsaFadeInUp 0.5s ease-out both;
}

.fsa-checklist-item:last-child {
    border-bottom: none;
}

.fsa-checklist-item:hover {
    transform: translateX(8px);
    padding-left: 0.5rem;
}

.fsa-check-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fsa-light) 0%, rgba(255, 107, 53, 0.15) 100%);
    border-radius: 50%;
    color: var(--fsa-primary);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsa-checklist-item:hover .fsa-check-icon {
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    color: var(--fsa-white);
    transform: scale(1.15) rotate(5deg);
}

/* ========================================================================
   PROCESS SECTION
   ======================================================================== */

.fsa-process-card {
    background: var(--fsa-white);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fsaScaleIn 0.6s ease-out both;
}

.fsa-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.fsa-process-card:hover::before {
    transform: scaleX(1);
}

.fsa-process-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.fsa-process-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fsa-process-card:hover::after {
    opacity: 1;
}

.fsa-process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    color: var(--fsa-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsa-process-card:hover .fsa-process-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--fsa-secondary) 0%, var(--fsa-primary) 100%);
}

/* Staggered Animation Delays */
.fsa-process-card:nth-child(1) { animation-delay: 0.1s; }
.fsa-process-card:nth-child(2) { animation-delay: 0.2s; }
.fsa-process-card:nth-child(3) { animation-delay: 0.3s; }
.fsa-process-card:nth-child(4) { animation-delay: 0.4s; }
.fsa-process-card:nth-child(5) { animation-delay: 0.5s; }

/* ========================================================================
   BENEFITS SECTION
   ======================================================================== */

.fsa-benefits-section {
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.fsa-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: fsaFloatSlow 10s ease-in-out infinite;
    pointer-events: none;
}

.fsa-benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fsaScaleIn 0.6s ease-out both;
    text-align: center;
}

.fsa-benefit-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: var(--fsa-white);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    border-color: var(--fsa-white);
}

.fsa-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fsa-light) 0%, rgba(255, 107, 53, 0.15) 100%);
    color: var(--fsa-primary);
    font-size: 1.8rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsa-benefit-card:hover .fsa-benefit-icon {
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    color: var(--fsa-white);
    transform: scale(1.15) rotate(-5deg);
}

.fsa-benefit-card:hover .fsa-benefit-icon i {
    animation: fsaBounce 1s ease-in-out infinite;
}

/* Staggered Animation Delays */
.fsa-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.fsa-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.fsa-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.fsa-benefit-card:nth-child(4) { animation-delay: 0.4s; }
.fsa-benefit-card:nth-child(5) { animation-delay: 0.5s; }
.fsa-benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================================================
   PROBLEMS SECTION
   ======================================================================== */

.fsa-problems-image {
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.fsa-problems-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.fsa-problems-placeholder {
    min-height: 450px;
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fsa-problems-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: fsaShimmer 20s linear infinite;
}

.fsa-problem-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fsaFadeInUp 0.5s ease-out both;
}

.fsa-problem-item:last-child {
    border-bottom: none;
}

.fsa-problem-item:hover {
    transform: translateX(8px);
    padding-left: 0.5rem;
}

.fsa-problem-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fsa-problem-item:hover .fsa-problem-icon {
    transform: scale(1.3);
    background: #dc3545;
    color: var(--fsa-white);
}

/* Staggered Animation Delays */
.fsa-problem-item:nth-child(1) { animation-delay: 0.1s; }
.fsa-problem-item:nth-child(2) { animation-delay: 0.2s; }
.fsa-problem-item:nth-child(3) { animation-delay: 0.3s; }
.fsa-problem-item:nth-child(4) { animation-delay: 0.4s; }
.fsa-problem-item:nth-child(5) { animation-delay: 0.5s; }

/* ========================================================================
   FAQ SECTION
   ======================================================================== */

.fsa-faq-section {
    position: relative;
}

.fsa-faq-image-wrapper {
    position: relative;
    padding: 20px;
}

.fsa-faq-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.fsa-faq-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.fsa-faq-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* Decorative Circles */
.decorative-circle-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    opacity: 0.15;
    z-index: 0;
    animation: fsaFloat 6s ease-in-out infinite;
}

.decorative-circle-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fsa-secondary) 0%, var(--fsa-primary) 100%);
    border-radius: 50%;
    bottom: 40px;
    left: -20px;
    opacity: 0.15;
    z-index: 0;
    animation: fsaFloat 8s ease-in-out infinite;
    animation-delay: -2s;
}

/* Floating Info Card */
.floating-info-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--fsa-white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.floating-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.floating-info-card .icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fsa-white);
}

/* FAQ Accordion */
.fsa-faq-accordion .accordion-item {
    border: 1px solid rgba(255, 107, 53, 0.15);
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    background: var(--fsa-white);
    transition: all 0.3s ease;
    animation: fsaFadeInUp 0.5s ease-out both;
}

.fsa-faq-accordion .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.fsa-faq-button {
    background-color: var(--fsa-white);
    font-weight: 600;
    color: var(--fsa-dark);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.fsa-faq-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(233, 60, 5, 0.1) 100%);
    color: var(--fsa-primary);
}

.fsa-faq-button:focus {
    box-shadow: none;
    border-color: rgba(255, 107, 53, 0.3);
}

.fsa-faq-button i {
    transition: transform 0.3s ease;
}

.fsa-faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

/* FAQ Item Staggered Animation */
.fsa-faq-item:nth-child(1) { animation-delay: 0.1s; }
.fsa-faq-item:nth-child(2) { animation-delay: 0.2s; }
.fsa-faq-item:nth-child(3) { animation-delay: 0.3s; }
.fsa-faq-item:nth-child(4) { animation-delay: 0.4s; }
.fsa-faq-item:nth-child(5) { animation-delay: 0.5s; }

/* ========================================================================
   CTA SECTION
   ======================================================================== */

.fsa-cta-card {
    background: linear-gradient(135deg, var(--fsa-primary) 0%, var(--fsa-secondary) 100%);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.fsa-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: fsaShimmer 30s linear infinite;
    pointer-events: none;
}

.fsa-cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.fsa-cta-card .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */

@media (max-width: 991px) {
    .fsa-hero {
        padding-top: 140px;
    }

    .fsa-hero-title {
        font-size: 2.5rem !important;
    }

    .fsa-hero-image-card {
        min-height: 300px;
    }

    .fsa-graffiti-box {
        width: 80px;
        height: 80px;
    }

    .fsa-circle-1,
    .fsa-circle-2 {
        display: none;
    }

    .fsa-process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .fsa-faq-image-wrapper {
        margin-bottom: 2rem;
    }

    .floating-info-card {
        bottom: 15px;
        right: 15px;
        padding: 12px 15px;
    }
}

@media (max-width: 767px) {
    .fsa-hero-title {
        font-size: 2rem !important;
    }

    .fsa-hero-buttons {
        flex-direction: column;
    }

    .fsa-hero-buttons .btn {
        width: 100%;
    }

    .fsa-why-icon,
    .fsa-benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .fsa-check-icon,
    .fsa-problem-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .fsa-problems-image,
    .fsa-problems-placeholder {
        min-height: 300px;
    }

    .fsa-faq-placeholder {
        min-height: 300px;
    }
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */

@media print {
    .fsa-hero-pill,
    .fsa-graffiti-box,
    .fsa-circle-1,
    .fsa-circle-2,
    .floating-info-card,
    .decorative-circle-1,
    .decorative-circle-2 {
        display: none !important;
    }

    .fsa-hero,
    .fsa-benefits-section,
    .fsa-cta-card {
        background: var(--fsa-white) !important;
        color: var(--fsa-dark) !important;
    }

    .fsa-hero-title,
    .fsa-benefit-card h5 {
        color: var(--fsa-dark) !important;
    }
}
