/* =========================
   FISC FRANCE - BASE STYLES
   ========================= */

:root {
    --primary: #0052cc;
    --primary-hover: #0747a6;
    --secondary: #172b4d;
    --success: #00875a;
    --bg-light: #f4f5f7;
    --text-main: #333333;
    --text-muted: #6b778c;
    --white: #ffffff;
    --border: #dfe1e6;
    --highlight: #ffab00;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

/* =========================
   TYPOGRAPHY
   ========================= */

h1,
h2,
h3,
h4 {
    color: var(--secondary);
    line-height: 1.2;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
}

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

.btn-secondary:hover {
    background-color: rgba(9, 30, 66, 0.04);
}

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

.btn-outline:hover {
    background-color: rgba(0, 82, 204, 0.04);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    display: block;
}

/* =========================
   NAVBAR
   ========================= */

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.2s;
}

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

/* =========================
   HERO
   ========================= */

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 82, 204, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.social-proof {
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    color: var(--text-muted);
}

/* Mockup */
.hero-image {
    flex: 1;
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(9, 30, 66, 0.1);
    border: 1px solid var(--border);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: #f4f5f7;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.circles i {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    background: #ff5f56;
}

.circles i:nth-child(2) {
    background: #ffbd2e;
}

.circles i:nth-child(3) {
    background: #27c93f;
}

.mockup-url {
    background: var(--white);
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
    border: 1px solid var(--border);
}

.mockup-body {
    padding: 40px;
    text-align: center;
}

.mockup-title {
    font-weight: 600;
    color: #de350b;
    margin-bottom: 10px;
}

.mockup-price {
    font-size: 3rem;
    font-weight: 800;
    color: #de350b;
    margin-bottom: 30px;
}

.mockup-lines .line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.95rem;
}

.mockup-btn {
    margin-top: 30px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
}

/* =========================
   FEATURES
   ========================= */

.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.feature-card {
    padding: 40px 30px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(9, 30, 66, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--secondary);
}

/* =========================
   PRICING
   ========================= */

.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(9, 30, 66, 0.08);
}

.pricing-card.highlighted {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 35px rgba(0, 82, 204, 0.1);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.target {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-height: 40px;
}

.price {
    margin: 20px 0 5px 0;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
}

.price .period {
    color: var(--text-muted);
    font-weight: 500;
}

.monthly-eq {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
}

.card-body .btn {
    margin-bottom: 20px;
}

.guarantee-small {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    margin-top: -10px;
}

.feature-list {
    list-style: none;
    font-size: 0.95rem;
}

.feature-list li {
    padding: 8px 0;
    color: var(--secondary);
}

.feature-list li.disabled {
    color: #a5adba;
    text-decoration: line-through;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    padding: 40px 0;
    text-align: center;
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero .subtitle {
        margin: 0 auto 30px auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .dashboard-mockup {
        transform: rotateY(0deg) rotateX(0deg);
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }

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