* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2b6cb0;
    --accent-color: #dd6b20;
    --success-color: #2f855a;
    --warning-color: #d69e2e;
    --text-color: #2d3748;
    --light-bg: #edf2f7;
    --white: #ffffff;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo a {
    text-decoration: none;
}

.hero-overlay {
    background: rgba(26, 54, 93, 0.85);
    padding: 80px 0;
    text-align: center;
}

.hero-overlay h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fafbfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #0d1b2a 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0.25rem 0;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    filter: brightness(1.05);
}

.logo-img:hover {
    transform: scale(1.03);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--white);
}

.logo p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1.2rem 1rem;
    display: block;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.nav-links a:hover::after {
    width: 60%;
}

.lang-switch a {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    padding: 0.35rem 0.7rem !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.lang-switch a:hover {
    background: rgba(255,255,255,0.3) !important;
}

.lang-switch a::after {
    display: none !important;
}

.btn-abonnement {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d35400 100%);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.btn-abonnement:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-banner {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a365d 40%, #2b6cb0 100%);
    min-height: 400px;
}

.hero-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem 0;
    text-align: center;
}

.hero-cta-section .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-section .cta-button,
.hero-cta-section .cta-button-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-cta-section .cta-button i,
.hero-cta-section .cta-button-secondary i {
    margin-right: 0.5rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #c05621;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 107, 32, 0.3);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--white);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.stats-section {
    background-color: var(--white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.about, .services-preview, .cta-section {
    padding: 4rem 0;
}

.about {
    background-color: var(--light-bg);
}

.quickbooks-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2ca01c 0%, #1a8917 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    box-shadow: 0 3px 12px rgba(44, 160, 28, 0.3);
}

.quickbooks-badge i {
    font-size: 1.3rem;
}

.service-item .quickbooks-badge {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.about h2, .services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.about h2::after, .services-preview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.2);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.testimonials {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stars {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-bg);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

.tools-preview, .blog-preview {
    padding: 4rem 0;
}

.tools-preview h2, .blog-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.tool-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tool-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-card h3 {
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
}

.text-center {
    text-align: center;
}

.cta-section {
    background-color: var(--light-bg);
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-detail {
    padding: 4rem 0;
}

.service-item {
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    scroll-margin-top: 80px;
}

.service-item h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-item ul {
    list-style: none;
    margin-top: 1rem;
}

.service-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact-section, .devis-section, .rdv-section {
    padding: 4rem 0;
}

.contact-section .container, .devis-section .container, .rdv-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info, .contact-form, .devis-info, .devis-form-container, .rdv-info, .rdv-form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.benefits-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.faq-section {
    padding: 2rem 0 4rem;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-cat-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-cat-btn.active, .faq-cat-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.chatbot-section {
    padding: 2rem 0 4rem;
}

.chatbot-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: var(--light-bg);
}

.bot-message, .user-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    max-width: 70%;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background-color: var(--white);
    margin-right: auto;
}

.user-message {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-left: auto;
}

.chat-input-area {
    display: flex;
    padding: 1rem;
    background-color: var(--white);
    border-top: 1px solid #ddd;
}

.chat-input-area input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 1rem;
}

.quick-questions {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quick-questions h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.question-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background-color: var(--light-bg);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.question-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.pricing-section {
    padding: 4rem 0;
}

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

.pricing-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
}

.price .currency {
    font-size: 1rem;
    color: var(--text-color);
}

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

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.subscribe-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #2980b9;
}

.blog-full-section {
    padding: 2rem 0 4rem;
}

.blog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-post-image {
    position: relative;
    height: 200px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-content-full {
    display: none;
    margin-top: 1rem;
}

.blog-post-card.expanded .blog-content-full {
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-weight: 500;
    margin-top: 0.5rem;
}

.cta-box {
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
}

.calculateurs-section {
    padding: 2rem 0 4rem;
}

.calc-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.calc-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: var(--light-bg);
    color: var(--text-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.calc-tab.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.calc-content {
    display: none;
}

.calc-content.active {
    display: block;
}

.calc-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.calculator-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.calc-inputs, .calc-result {
    padding: 1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-text {
    font-size: 0.9rem;
    color: #666;
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
}

.result-card {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.result-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

.result-item.highlight {
    background-color: var(--white);
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 4px;
    border: none;
}

.result-item strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.result-info {
    background-color: #e3f2fd;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.calc-disclaimer {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.calc-disclaimer h3 {
    color: var(--warning-color);
    margin-bottom: 0.5rem;
}

.dashboard-section {
    padding: 2rem 0 4rem;
}

.dashboard-notice {
    background-color: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-notice i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dash-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
}

.dash-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.dash-card-icon.revenue {
    background-color: var(--success-color);
}

.dash-card-icon.expenses {
    background-color: var(--accent-color);
}

.dash-card-icon.profit {
    background-color: var(--secondary-color);
}

.dash-card-icon.tax {
    background-color: var(--warning-color);
}

.dash-card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0.25rem 0;
}

.dash-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.dash-trend {
    font-size: 0.85rem;
    font-weight: 500;
}

.dash-trend.positive {
    color: var(--success-color);
}

.dash-trend.negative {
    color: var(--accent-color);
}

.dash-info {
    font-size: 0.85rem;
    color: #666;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.chart-container {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.chart-container h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dashboard-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.table-container {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.table-container h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th {
    background-color: var(--light-bg);
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
}

.dashboard-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--light-bg);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.paid {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.overdue {
    background-color: #f8d7da;
    color: #721c24;
}

.dashboard-alerts {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.dashboard-alerts h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.alert-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-item.warning {
    background-color: #fff3cd;
    border-left: 4px solid var(--warning-color);
}

.alert-item.info {
    background-color: #e3f2fd;
    border-left: 4px solid var(--secondary-color);
}

.alert-item.success {
    background-color: #d4edda;
    border-left: 4px solid var(--success-color);
}

.alert-item i {
    font-size: 1.5rem;
}

.alert-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.mode-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.mode-option i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    overflow: hidden;
}

.chat-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages-widget {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background-color: var(--light-bg);
}

.chat-input-widget {
    display: flex;
    padding: 1rem;
    background-color: var(--white);
    border-top: 1px solid #ddd;
}

.chat-input-widget input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.chat-input-widget button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-in;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-section .container, 
    .devis-section .container, 
    .rdv-section .container,
    .calculator-box,
    .dashboard-charts,
    .dashboard-tables {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .form-row, .checkbox-group {
        grid-template-columns: 1fr;
    }

    .chat-box {
        width: 300px;
    }
}

/* ==================== PAGES APPLICATIONS ==================== */

.applications-section {
    padding: 4rem 0;
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

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

.app-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.app-card.featured-app {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.app-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.app-badge.new-badge {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.app-badge.partner-badge {
    background: linear-gradient(135deg, #2ca01c, #1a7a10);
}

.software-choice {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.software-choice h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.software-choice > p {
    color: #666;
    margin-bottom: 1rem;
}

.choice-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.choice-option {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.choice-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.choice-option h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.choice-option h4 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.choice-option p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--accent-color);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.app-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.app-tagline {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.app-features, .app-benefits {
    margin: 1.5rem 0;
}

.app-features h3, .app-benefits h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.app-features ul {
    list-style: none;
}

.app-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.app-features ul li i {
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: var(--success-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.app-pricing {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-amount span {
    font-size: 1rem;
    color: #666;
}

.app-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-primary, .btn-secondary, .btn-outline {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #c0392b;
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.app-card.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 2px dashed #999;
}

.app-card.coming-soon .app-icon {
    background: #999;
}

/* ==================== PAGE DÉTAIL ERP ==================== */

.app-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.app-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-hero-icon {
    width: 120px;
    height: 120px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.app-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-overview {
    padding: 4rem 0;
    background-color: var(--white);
}

.app-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.large-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #555;
}

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

.stat-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: #666;
}

.app-modules {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.app-modules h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.module-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.module-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.module-card ul {
    list-style: none;
}

.module-card ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.module-card ul li:last-child {
    border-bottom: none;
}

.app-advantages {
    padding: 4rem 0;
    background-color: var(--white);
}

.app-advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #666;
}

.app-pricing-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.app-pricing-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

    .app-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons, .app-actions, .cta-buttons {
        flex-direction: column;
    }

    .modules-grid, .advantages-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.app-description {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.app-description p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.app-description p:last-child {
    margin-bottom: 0;
}

.app-description strong {
    color: var(--primary-color);
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.app-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.app-hero-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.newsletter-section {
    padding: 4rem 0;
}

.newsletter-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.newsletter-hero h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-hero p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.newsletter-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .newsletter-content-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.newsletter-benefits h3 i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefits-list li i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.benefits-list li strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.benefits-list li p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.newsletter-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e8e8e8;
}

.newsletter-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.newsletter-form-card h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.newsletter-form .form-group {
    margin-bottom: 1.25rem;
}

.newsletter-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.submit-btn i {
    margin-right: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
}

.form-note i {
    margin-right: 0.25rem;
}

.newsletter-frequency {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .newsletter-frequency {
        grid-template-columns: 1fr;
    }
}

.frequency-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    color: var(--white);
}

.frequency-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.frequency-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.frequency-card p {
    opacity: 0.9;
    margin: 0;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.archives-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.archives-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.archives-section h2 i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.archives-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.archives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.archive-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

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

.archive-issue {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.archive-date {
    color: #888;
    font-size: 0.85rem;
}

.archive-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.archive-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.archive-link:hover {
    color: var(--primary-color);
}

.loading-archives {
    text-align: center;
    padding: 2rem;
    color: #888;
}

.no-archives {
    text-align: center;
    padding: 3rem;
    color: #888;
}

.no-archives i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.no-archives p {
    margin: 0.5rem 0;
}

.new-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
}

/* Admin Login Section */
.admin-login-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.admin-login-panel {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-login-panel h2 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.admin-login-panel h2 i {
    margin-right: 0.5rem;
}

.admin-login-panel .form-group {
    margin-bottom: 1.5rem;
}

.admin-login-panel label {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 0.5rem;
}

.admin-login-panel input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.admin-login-panel input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.admin-login-panel .cta-button {
    width: 100%;
}

/* Admin Section */
.admin-section {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.admin-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-panel h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.admin-panel h2 i {
    margin-right: 0.5rem;
}

.admin-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-stats .stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
}

.admin-stats .stat-card i {
    font-size: 2rem;
    color: #3498db;
    display: block;
    margin-bottom: 0.5rem;
}

.admin-stats .stat-card span {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.admin-stats .stat-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.admin-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.admin-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.admin-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.admin-btn.generate-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.admin-btn.generate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.admin-btn.send-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.admin-btn.send-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.admin-btn.test-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.admin-btn.test-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.admin-btn.logout-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.admin-btn.logout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.admin-message {
    text-align: center;
    margin: 1rem 0;
}

.admin-message .success-msg {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

.admin-message .error-msg {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}
