/* ========================================
   OUEB IT x INFOMANIAK - LANDING PAGE CSS
   ======================================== */

/* === VARIABLES === */
:root {
    --primary: #003366;
    --primary-dark: #002244;
    --secondary: #006633;
    --secondary-dark: #004422;
    --infomaniak-blue: #0098ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --red: #ef4444;
    --orange: #f97316;
    --yellow: #eab308;
    --green: #22c55e;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* === UTILITIES === */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.section {
    padding: 48px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.bg-gray {
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-5 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.grid-5 .pricing-card:nth-child(1),
.grid-5 .pricing-card:nth-child(2),
.grid-5 .pricing-card:nth-child(3) {
    flex: 1;
    min-width: 280px;
}

.grid-5 .pricing-card:nth-child(4),
.grid-5 .pricing-card:nth-child(5) {
    flex: 0 0 auto;
    width: 400px;
    margin: 0 auto;
}

.grid-5::after {
    content: '';
    flex-basis: 100%;
    height: 0;
}

.text-center {
    text-align: center;
}

.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-8 { margin-top: 96px; }
.mb-4 { margin-bottom: 32px; }

.text-primary { color: var(--primary); }
.text-green { color: var(--secondary); }
.text-muted { color: var(--gray-600); font-size: 14px; }
.text-infomaniak { color: var(--infomaniak-blue); }

/* === TYPOGRAPHY === */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
}

h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

p {
    color: var(--gray-600);
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-ghost {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary svg,
.btn-secondary svg,
.btn-outline svg,
.btn-ghost svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.3);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-900);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 8px 16px;
}

.btn-ghost:hover {
    background: rgba(0, 51, 102, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* === CARDS === */
.card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
    border-color: rgba(0, 102, 51, 0.3);
}

/* Pricing Cards Animations */
.pricing-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 51, 102, 0.2);
    border-color: var(--secondary);
}

.pricing-card:hover .badge-recommended {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 51, 0.3);
}

.pricing-card:hover h3 {
    color: var(--primary);
    transform: translateY(-2px);
}

.pricing-card:hover .pricing-desc {
    color: var(--gray-700);
}

.pricing-card:hover .price {
    transform: scale(1.05);
}

.pricing-card:hover .btn-primary,
.pricing-card:hover .btn-secondary {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 51, 102, 0.25);
}

.pricing-card:hover .btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.pricing-card:hover .pricing-features li {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-features li:nth-child(even) {
    transform: translateX(2px);
}

.pricing-card:hover .pricing-footer {
    border-top-color: var(--secondary);
    opacity: 0.9;
}

/* Animation de l'ombre portée */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 0.05;
}

/* Responsive animations */
@media (max-width: 768px) {
    .pricing-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .pricing-card:hover .btn-primary,
    .pricing-card:hover .btn-secondary {
        transform: translateY(-2px);
    }
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    height: 40px;
    width: auto;
}

.divider {
    width: 1px;
    height: 24px;
    background: var(--gray-300);
}

.partner {
    font-size: 14px;
    color: var(--gray-600);
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 12px 0;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 51, 102, 0.95), rgba(0, 51, 102, 0.85), rgba(0, 102, 51, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 24px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    display: block;
    margin-top: 16px;
    background: linear-gradient(to right, var(--white), #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 48px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === ICON BOXES === */
.icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.icon-red { background: linear-gradient(135deg, #fee2e2, #fca5a5); }
.icon-orange { background: linear-gradient(135deg, #fed7aa, #fb923c); }
.icon-yellow { background: linear-gradient(135deg, #fef3c7, #fbbf24); }

.icon-box-gradient {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 12px;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.icon-box-gradient svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.card:hover .icon-box-gradient {
    transform: scale(1.1);
}

/* === FEATURE LISTS === */
.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-list-sm {
    list-style: none;
    margin: 16px 0;
}

.feature-list-sm li {
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.feature-list-sm li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 14px;
}

/* === PARTNER BOX === */
.partner-box {
    background: linear-gradient(to right, var(--gray-50), var(--gray-100));
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin-top: 64px;
}

.partner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.partner-logo {
    text-align: center;
}

.partner-logo .logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
}

.logo-text.primary { color: var(--primary); }
.logo-text.infomaniak { color: #0098FF; }

.divider-vertical {
    width: 1px;
    height: 64px;
    background: var(--gray-300);
}

.times {
    font-size: 32px;
    color: var(--gray-400);
}

/* === PRODUCTS === */
.product-card {
    text-align: left;
}

.product-card h3 {
    text-align: center;
}

.product-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    stroke-width: 1.5;
}

/* === PRICING === */
.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 102, 51, 0.2);
    transform: scale(1.05);
}

.badge-recommended {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-desc {
    font-size: 14px;
    margin-bottom: 0;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-note {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.pricing-note {
    background: linear-gradient(to right, #dbeafe, #d1fae5);
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
}

/* === TESTIMONIALS === */
.testimonial-card {
    text-align: left;
}

.quote-icon {
    font-size: 40px;
    color: rgba(0, 51, 102, 0.2);
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 102, 51, 0.2);
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
}

.author-role {
    font-size: 14px;
    color: var(--gray-600);
}

.author-company {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* === TIMELINE === */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
    opacity: 0.2;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-content {
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: rgba(0, 102, 51, 0.3);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
    transform: translateY(-4px);
}

.timeline-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    stroke-width: 2;
}

.timeline-step {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.timeline-dot {
    grid-column: 2;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 3px solid var(--secondary);
    border-radius: 50%;
    z-index: 10;
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* === FAQ === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 102, 51, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* === CONTACT === */
.contact-cards-wrapper {
    max-width: 900px;
    margin: 0 auto 64px;
    gap: 48px !important;
    justify-content: center;
}
.contact-card {
    text-align: center;
}

.contact-card .icon-box-gradient {
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
    border-color: rgba(0, 102, 51, 0.2);
}

.contact-form-container h3 {
    margin-bottom: 32px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-form-container h3 svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    stroke-width: 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.partner-logos {
    text-align: center;
    margin-top: 64px;
}

.partner-logos p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.partner-logos .logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.partner-logos .logo-img {
    height: 40px;
    width: auto;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(to bottom, #111827, var(--primary));
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-about h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.7);
    stroke-width: 2;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-partner-logo {
    display: flex;
    align-items: center;
}

.infomaniak-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.infomaniak-logo:hover {
    opacity: 1;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.footer-badge {
    text-align: center;
    margin-top: 32px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* === LINKS === */
.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--secondary);
}

.link-underline {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
    background: transparent;
    padding: 0;
}

.link-underline:hover {
    color: var(--secondary);
}

/* === BACK TO TOP BUTTON === */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
    transition: all 0.3s ease;
}

#back-to-top.show {
    display: flex;
}

#back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.4);
}

#back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

/* === TOAST NOTIFICATIONS === */
#toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-left-color: #22c55e;
}

.toast-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.toast-message {
    font-size: 14px;
    color: var(--gray-600);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* === CAL.COM MODAL === */
.cal-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.cal-modal-overlay.active {
    display: flex;
}

.cal-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cal-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--gray-700);
}

.cal-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header .btn-primary {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline::before {
        left: 12px;
        transform: none;
    }
    
    .timeline-content {
        width: 100%;
        max-width: calc(100vw - 100px);
        margin-left: 40px !important;
        text-align: left !important;
        grid-column: 2;
        box-sizing: border-box;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left !important;
        max-width: calc(100vw - 100px);
    }
    
    .timeline {
        overflow-x: hidden;
    }
    
    .timeline-dot {
        position: absolute;
        left: 0;
        grid-column: 1;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 16px;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .section {
        padding: 64px 0;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
    
    .partner-box {
        padding: 32px 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .partner-content .divider-vertical,
    .partner-content .times {
        display: none;
    }
    
    .partner-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    #toast-container {
        left: 16px;
        right: 16px;
    }
    
    .toast {
        min-width: auto;
    }
}

/* === GRAVITY FORMS CUSTOM STYLES === */

/* Form wrapper */
.gform_wrapper {
	max-width: 100% !important;
	margin: 0 !important;
}

/* Form fields */
.gform_wrapper .gfield {
	margin-bottom: 20px !important;
}

.gform_wrapper .gfield_label {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #374151 !important;
	margin-bottom: 8px !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
/* .gform_wrapper select, */
.gform_wrapper textarea {
	width: 100% !important;
	padding: 12px 16px !important;
	border: 2px solid #e5e7eb !important;
	border-radius: 8px !important;
	font-size: 16px !important;
	transition: border-color 0.3s, box-shadow 0.3s !important;
}

.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
	outline: none !important;
	border-color: #003366 !important;
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1) !important;
}

/* Placeholders */
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
	color: #9ca3af !important;
	opacity: 1 !important;
}

.gform_wrapper input::-webkit-input-placeholder,
.gform_wrapper textarea::-webkit-input-placeholder {
	color: #9ca3af !important;
	opacity: 1 !important;
}

.gform_wrapper input::-moz-placeholder,
.gform_wrapper textarea::-moz-placeholder {
	color: #9ca3af !important;
	opacity: 1 !important;
}

.gform_wrapper input:-ms-input-placeholder,
.gform_wrapper textarea:-ms-input-placeholder {
	color: #9ca3af !important;
	opacity: 1 !important;
}

/* Half width fields */
.gfield-half {
	width: 48% !important;
	display: inline-block !important;
	margin-right: 4% !important;
}

.gfield-half:nth-child(even) {
	margin-right: 0 !important;
}

/* Submit button */
.gform_wrapper .gform_footer {
	text-align: center !important;
	margin-top: 32px !important;
	padding: 0 !important;
}

.gform_wrapper .gform_button {
	background: linear-gradient(to right, #003366, #006241) !important;
	color: white !important;
	padding: 16px 48px !important;
	border: none !important;
	border-radius: 8px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: transform 0.3s, box-shadow 0.3s !important;
	width: 100% !important;
}

.gform_wrapper .gform_button:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 25px rgba(0, 51, 102, 0.3) !important;
}

/* Validation errors */
.gform_wrapper .gfield_error {
	background-color: #fee2e2 !important;
	border: 2px solid #ef4444 !important;
	border-radius: 8px !important;
	padding: 16px !important;
}

.gform_wrapper .validation_message {
	color: #dc2626 !important;
	font-size: 14px !important;
	margin-top: 8px !important;
}

/* RGPD checkbox */
.gform_wrapper .gfield_checkbox li {
	margin-bottom: 0 !important;
}

.gform_wrapper .gfield_checkbox input[type="checkbox"] {
	width: auto !important;
	margin-right: 8px !important;
}

/* Spinner de chargement */
.gform_wrapper .gform_ajax_spinner {
	margin-left: 16px !important;
}

/* Confirmation message */
.gform_confirmation_message {
	text-align: center !important;
	padding: 40px !important;
	background: #d1fae5 !important;
	border-radius: 12px !important;
	border: 2px solid #10b981 !important;
	margin-top: 20px !important;
}

.gform_confirmation_message h3 {
	color: #065f46 !important;
	margin-bottom: 16px !important;
}

.gform_confirmation_message p {
	color: #047857 !important;
	margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
	.gfield-half {
		width: 100% !important;
		margin-right: 0 !important;
	}
	
	.gform_wrapper .gform_button {
		width: 100% !important;
		padding: 14px 24px !important;
	}
}

/* === PRODUCT MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    color: var(--gray-700);
}

.modal-content {
    padding: 60px 40px 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.modal-loader .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.modal-loader p {
    color: var(--gray-600);
    font-size: 16px;
}

.modal-error {
    text-align: center;
    padding: 80px 20px;
    color: var(--red);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Contact message in modal */
.modal-contact-message {
    text-align: center;
    padding: 60px 40px;
}

.modal-contact-message .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-contact-message .contact-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.modal-contact-message h3 {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-weight: 700;
}

.modal-contact-message p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.modal-contact-message .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.modal-contact-message .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.3);
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-content {
        padding: 50px 20px 20px;
    }
    
    .modal-contact-message {
        padding: 40px 20px;
    }
    
    .modal-contact-message h3 {
        font-size: 20px;
    }
}

/* === INFOMANIAK PRICING SECTION === */
.infomaniak-pricing-section {
    margin-top: 96px;
    padding-top: 64px;
    border-top: 1px solid var(--gray-200);
}

.infomaniak-grid {
    margin-top: 48px;
}

.infomaniak-card {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.infomaniak-card.featured {
    border: 2px solid var(--infomaniak-blue);
    box-shadow: 0 20px 40px rgba(0, 152, 255, 0.2);
    transform: scale(1.05);
}

.infomaniak-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
}

.infomaniak-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.infomaniak-header {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 24px;
    border-bottom: 2px solid var(--gray-200);
    border-radius: 14px 14px 0 0;
    margin: -32px -32px 24px -32px;
}

.infomaniak-card.featured .infomaniak-header {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-bottom-color: var(--infomaniak-blue);
}

.infomaniak-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.infomaniak-subtitle {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.infomaniak-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.infomaniak-price {
    margin-bottom: 24px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--infomaniak-blue);
    line-height: 1;
    margin-bottom: 4px;
}

.price-period {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.price-annual {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
}

.infomaniak-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    flex-grow: 1;
}

.infomaniak-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.infomaniak-features li:last-child {
    border-bottom: none;
}

.infomaniak-features strong {
    color: var(--gray-900);
}

.infomaniak-option {
    background: var(--gray-50);
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--gray-600);
    border-left: 3px solid var(--infomaniak-blue);
}

.infomaniak-note {
    background: linear-gradient(to right, #f0f9ff, #f0fdf4);
    border: 1px solid rgba(0, 152, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 48px;
    text-align: center;
}

.infomaniak-note p {
    margin: 0;
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

.infomaniak-note strong {
    color: var(--infomaniak-blue);
}

/* Pricing Footer */
.pricing-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 12px;
    color: var(--gray-600);
}

.ideal-for {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.infomaniak-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ideal-label,
.infomaniak-label {
    font-weight: 600;
    color: var(--gray-700);
}

.ideal-text,
.infomaniak-text {
    font-weight: 500;
    color: var(--gray-600);
}

.infomaniak-text {
    color: var(--infomaniak-blue);
    font-size: 10px;
    font-style: italic;
    opacity: 0.8;
}

.infomaniak-label {
    font-size: 10px;
    font-style: italic;
    opacity: 0.7;
}

/* Responsive for pricing footer */
@media (max-width: 768px) {
    .pricing-footer {
        margin-top: 16px;
        padding-top: 12px;
        font-size: 11px;
    }
    
    .ideal-for,
    .infomaniak-info {
        gap: 1px;
    }
}

/* Responsive for grid-5 */
@media (max-width: 1200px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-5 .pricing-card:nth-child(n+4) {
        grid-column: auto;
        justify-self: auto;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .grid-5 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .grid-5 .pricing-card:nth-child(n+4) {
        grid-column: auto;
        justify-self: auto;
        max-width: none;
    }
    
    .infomaniak-pricing-section {
        margin-top: 64px;
        padding-top: 48px;
    }
    
    .infomaniak-card.featured {
        transform: scale(1);
    }
    
    .infomaniak-header {
        padding: 20px;
        margin: -24px -24px 20px -24px;
    }
    
    .price-amount {
        font-size: 28px;
    }
}