/* ============================================
   NOURITH FINANCE - STYLES COMPLETS
   ============================================ */

/* ========== VARIABLES ========== */
:root {
    --nourith-primary: #124660;
    --nourith-secondary: #1B9476;
    --nourith-accent: #8BD59E;
    --nourith-sage: #C7DBC2;
    --nourith-warm: #F4EBD6;
    --nourith-dark: #0F172A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.03);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

      

        

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: #FFFFFF;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--nourith-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}


.nav-link.active {
            background: #F0FDF4;
            color: #1B9476;
            font-weight: 600;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 12px;
            transition: all 0.2s;
            text-decoration: none;
            color: #4B5563;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .nav-link:hover {
            background: #F3F4F6;
            color: #1A1A2E;
        }
        /* Styles spécifiques pour le menu mobile */
        #mobile-menu {
            display: none; /* caché par défaut */
            position: fixed;
            left: 0;
            right: 0;
            top: 72px;
            background: white;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
            border-top: 1px solid #e5e7eb;
            z-index: 1000;
            max-height: calc(100vh - 72px);
            overflow-y: auto;
        }
        /* Surcharge pour desktop : le menu ne doit jamais apparaître */
        @media (min-width: 1024px) {
            #mobile-menu {
                display: none !important;
            }
        }

/* ========== BOUTONS FLOA STYLE ========== */
.btn-floa-primary {
    background: var(--nourith-secondary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(27,148,118,0.3);
    text-decoration: none;
}
.btn-floa-primary:hover {
    background: #14725b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,148,118,0.4);
    color: white;
}
.btn-floa-primary:disabled {
    background: var(--gray-400);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.btn-floa-outline {
    background: transparent;
    color: var(--nourith-secondary);
    border: 2px solid var(--nourith-secondary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}
.btn-floa-outline:hover {
    background: var(--nourith-secondary);
    color: white;
}

.btn-floa-white {
    background: white;
    color: var(--nourith-primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}
.btn-floa-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ========== CARDS ========== */
.floa-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}
.floa-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--nourith-accent);
}

/* ========== BADGES & LABELS ========== */
.floa-badge {
    display: inline-block;
    background: rgba(27,148,118,0.08);
    color: var(--nourith-secondary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.floa-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}
.floa-tag-green { background: #F0FDF4; color: #1B9476; }
.floa-tag-blue { background: #EFF6FF; color: #2563EB; }
.floa-tag-purple { background: #F5F3FF; color: #7C3AED; }
.floa-tag-orange { background: #FFF7ED; color: #EA580C; }
.floa-tag-pink { background: #FDF2F8; color: #DB2777; }
.floa-tag-red { background: #FEF2F2; color: #DC2626; }

/* ========== TITRES DE SECTION ========== */
.floa-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1A1A2E;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.floa-section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 600px;
}

/* ========== FAQ ACCORDION ========== */
.floa-faq-item {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition);
    margin-bottom: 8px;
}
.floa-faq-item:hover {
    border-color: var(--nourith-accent);
}
.floa-faq-item button {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gray-800);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
}




.floa-faq-item .floa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.floa-faq-item.active .floa-faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.floa-faq-item.active .floa-faq-icon {
    transform: rotate(45deg);
    color: #1B9476;
}





.floa-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}
.floa-faq-item.active .floa-faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.floa-faq-item.active .floa-faq-icon {
    transform: rotate(45deg);
    color: var(--nourith-secondary);
}
.floa-faq-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--gray-400);
    font-size: 1.2rem;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation flottante */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}

/* Animation de fondu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Animation de slide */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide-down {
    animation: slideDown 0.3s ease forwards;
}

/* ========== HEADER ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
 
}
#header-main {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}
#header.scrolled #header-main {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ========== MEGA MENU ========== */
.mega-menu-floa {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: white;
    padding: 24px;
    z-index: 50;
}
.mega-menu-trigger:hover .mega-menu-floa {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== SLIDERS ========== */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    outline: none;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--nourith-secondary);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all var(--transition);
}
input[type=range]::-webkit-slider-thumb:hover {
    background: #14725b;
    transform: scale(1.1);
}
input[type=range]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--nourith-secondary);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ========== FORMULAIRES ========== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--gray-50);
    outline: none;
    color: var(--gray-800);
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--nourith-secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(27,148,118,0.05);
}
input::placeholder,
textarea::placeholder {
    color: var(--gray-400);
}
label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
    display: block;
}
textarea {
    resize: vertical;
    min-height: 100px;
}
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Checkbox */
input[type="checkbox"] {
    width: 1.2em;
    height: 1.2em;
    accent-color: var(--nourith-secondary);
}

/* ========== FOOTER ========== */
.floa-footer {
    background: var(--nourith-dark);
    color: #94A3B8;
    padding: 60px 20px 30px;
}
.floa-footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}
.floa-footer a {
    color: #94A3B8;
    transition: color var(--transition);
    font-size: 0.9rem;
}
.floa-footer a:hover {
    color: var(--nourith-accent);
}

/* ========== STATS ========== */
.stats-section {
    background: linear-gradient(135deg, var(--nourith-primary) 0%, var(--nourith-secondary) 100%);
}

/* ========== CITATIONS ========== */
.quran-quote {
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    border-left: 4px solid var(--nourith-secondary);
    padding: 24px 28px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 24px 0;
    position: relative;
}
.quran-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 4rem;
    color: var(--nourith-accent);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}
.quran-quote p {
    font-style: italic;
    color: var(--nourith-primary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    background: #F0FDF4;
    border-left: 4px solid var(--nourith-secondary);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
}

/* ========== ARTICLE CONTENT ========== */
.article-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--nourith-primary);
    margin-top: 40px;
    margin-bottom: 16px;
}
.article-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
}
.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.article-content a {
    color: var(--nourith-secondary);
    text-decoration: underline;
    font-weight: 600;
}
.article-content blockquote {
    border-left: 4px solid var(--nourith-accent);
    padding: 16px 20px;
    margin: 24px 0;
    background: #F0FDF4;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--nourith-primary);
}


/* ==================== ARTICLE CONTENT ==================== */
.article-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #374151;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #124660;
    margin: 2rem 0 1rem;
    padding-top: 0.5rem;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A2E;
    margin: 1.5rem 0 0.75rem;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.2rem 0 0.5rem;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ul, .article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid #1B9476;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #F0FDF4;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #124660;
}

.article-content a {
    color: #1B9476;
    text-decoration: underline;
    font-weight: 500;
}

.article-content a:hover {
    text-decoration: none;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content th, .article-content td {
    border: 1px solid #E5E7EB;
    padding: 10px 12px;
    text-align: left;
}

.article-content th {
    background: #F9FAFB;
    font-weight: 600;
}

.article-content code {
    background: #F3F4F6;
    padding: 2px 6px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9em;
}

.article-content pre {
    background: #1A1A2E;
    color: #F3F4F6;
    padding: 1rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* ========== GRAFIKART STYLE ========== */
.gk-layout {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 90px;
    min-height: 100vh;
}
.gk-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding: 40px 20px;
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    overflow-y: auto;
    border-right: 1px solid var(--gray-200);
}
.gk-main {
    flex: 1;
    padding: 40px;
    min-width: 0;
}
.gk-sidebar-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
}
.gk-sidebar-title:first-child {
    margin-top: 0;
}
.gk-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s;
    margin-bottom: 4px;
    text-decoration: none;
}
.gk-sidebar-link:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}
.gk-sidebar-link.active {
    background: #F0FDF4;
    color: var(--nourith-secondary);
    font-weight: 600;
}
.gk-sidebar-link .gk-badge {
    margin-left: auto;
    background: var(--gray-200);
    color: var(--gray-500);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* ============================================
   NOURITH FINANCE - STYLES ADDITIONNELS
   À AJOUTER DANS assets/css/style.css
   ============================================ */

/* ========== TOP BAR (bandeau header) ========== */
#top-bar {
    background: var(--nourith-primary);
    color: white;
    font-size: 0.75rem;
    padding: 8px 0;
    transition: all 0.3s ease;
}
#header.scrolled #top-bar {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden;
}

/* ========== LOGO VISIBLE SUR MOBILE ========== */
/* S'assurer que le nom du site est toujours visible */
#header .logo-text {
    display: block !important;
}

/* ========== SCROLL INDICATOR ========== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}
@media (max-width: 768px) {
    .hero-scroll-indicator {
        bottom: 1.5rem;
    }
}

/* ==========Espace margin top entre HERO ET Header ========== */

    #titre_lancment {
        margin-top:50px;
    }

    
    
/* ========== MEGA MENU ========== */
.mega-menu-floa {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.mega-menu-trigger:hover .mega-menu-floa {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== MOBILE MENU ========== */
#mobile-menu {
    transition: all 0.3s ease;
}
#mobile-menu:not(.hidden) {
    display: block;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1023px) {
    #menu-btn {
        display: block !important;
    }
    #header {
        z-index: 60;
    }
    #mobile-menu {
        z-index: 50;
    }
}

/* ========== ANIMATION FLOTTANTE ========== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}

/* ========== TABS ========== */
.tab-btn.active {
    background: var(--nourith-secondary);
    color: white;
}
.tab-btn:not(.active) {
    background: white;
    color: #4B5563;
    border: 1px solid #E5E7EB;
}

/* ========== CITATIONS ========== */
.quran-quote {
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    border-left: 4px solid var(--nourith-secondary);
    padding: 24px 28px;
    border-radius: 0 16px 16px 0;
    margin: 24px 0;
    position: relative;
}
.quran-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 4rem;
    color: var(--nourith-accent);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    background: #F0FDF4;
    border-left: 4px solid var(--nourith-secondary);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

/* ========== GAUGE SIMULATEUR ========== */
#sim-gauge {
    transition: stroke-dashoffset 0.5s ease;
}

/* ========== RESPONSIVE COMPLÉMENTAIRE ========== */
@media (max-width: 768px) {
    .floa-section-title {
        font-size: 1.8rem;
    }
    .floa-section-subtitle {
        font-size: 1rem;
    }
    .floa-card {
        padding: 24px;
    }
    .hero-scroll-indicator {
        bottom: 1.5rem;
    }
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1280px) {
    .floa-section-title { font-size: 2.4rem; }
}

@media (max-width: 1024px) {
    .floa-section-title { font-size: 2rem; }
    .gk-sidebar { display: none; }
    .gk-main { padding: 20px; }
    .gk-layout { padding-top: 72px; }
}

@media (max-width: 768px) {
    .floa-section-title { font-size: 1.8rem; }
    .floa-section-subtitle { font-size: 1rem; }
    .floa-card { padding: 24px; }
    .btn-floa-primary,
    .btn-floa-outline,
    .btn-floa-white {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .article-content h2 { font-size: 1.5rem; }
    .article-content p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .floa-section-title { font-size: 1.5rem; }
    .floa-card { padding: 20px; border-radius: var(--radius-lg); }
}