/* ============================================================
   TROPICAL CROPS — CSS PUBLIC
   Design inspiré de la maquette BoukiX PLANT
   ============================================================ */

:root {
    /* Couleurs du logo Tropical Crops */
    --tc-green-dark:    #1B7A1B;
    --tc-green:         #2E7D32;
    --tc-green-light:   #4CAF50;
    --tc-green-bright:  #8BC34A;
    --tc-green-soft:    #E8F5E9;
    --tc-green-bg:      #F4F7F4;

    --tc-blue-dark:     #0D2B6B;
    --tc-blue:          #1565C0;
    --tc-blue-light:    #2196F3;
    --tc-blue-soft:     #E3F2FD;

    --tc-yellow:        #FFD93D;
    --tc-yellow-deep:   #FFA500;
    --tc-yellow-soft:   #FFF8E1;

    --tc-cyan:          #00BCD4;
    --tc-red:           #DC3545;
    --tc-orange:        #F57C00;

    /* Neutres */
    --tc-dark:          #1A1A2E;
    --tc-gray:          #6C757D;
    --tc-gray-light:    #ADB5BD;
    --tc-light:         #F8F9FA;
    --tc-white:         #FFFFFF;
    --tc-border:        #E9ECEF;
    --tc-border-light:  #F0F0F0;

    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;

    /* Dégradés */
    --gradient-primary: linear-gradient(135deg, var(--tc-blue-dark) 0%, var(--tc-green) 100%);
    --gradient-green:   linear-gradient(135deg, var(--tc-green-dark) 0%, var(--tc-green-light) 100%);
    --gradient-blue:    linear-gradient(135deg, var(--tc-blue-dark) 0%, var(--tc-blue) 100%);
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.tc-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--tc-green-bg);
    font-size: 0.9rem;
    color: var(--tc-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--tc-dark);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--tc-green); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--tc-green-dark); }

/* ============================================
   TOPBAR
   ============================================ */
.tc-topbar {
    background: var(--tc-blue-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    height: 38px;
    display: flex;
    align-items: center;
}

.tc-topbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
}

.tc-topbar-left,
.tc-topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.tc-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
}

.tc-topbar-item i { color: var(--tc-yellow); }
.tc-topbar-item:hover { color: var(--tc-yellow); }

.tc-topbar-social {
    display: flex;
    gap: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.15);
}

.tc-topbar-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.tc-topbar-social a:hover { color: var(--tc-yellow); }

/* ============================================
   HEADER
   ============================================ */
.tc-header {
    background: var(--tc-white);
    border-bottom: 1px solid var(--tc-border);
    padding: 0.6rem 1.5rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--transition);
}

.tc-header.scrolled {
    box-shadow: var(--shadow-md);
}

.tc-header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
}

.tc-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.tc-brand-logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.tc-header.scrolled .tc-brand-logo { height: 48px; }

.tc-brand-text {
    display: flex;
    flex-direction: column;
}

.tc-brand-text h1 {
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    line-height: 1;
}

.tc-brand-text span {
    font-size: 0.65rem;
    color: var(--tc-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Recherche header */
.tc-search-bar {
    flex: 1;
    max-width: 550px;
    display: flex;
    background: var(--tc-light);
    border: 1.5px solid var(--tc-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.tc-search-bar:focus-within {
    border-color: var(--tc-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    background: var(--tc-white);
}

.tc-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    outline: none;
    font-family: inherit;
}

.tc-search-bar select {
    border: none;
    background: transparent;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    border-left: 1px solid var(--tc-border);
    outline: none;
    cursor: pointer;
    color: var(--tc-gray);
    font-family: inherit;
}

.tc-search-bar button {
    background: var(--tc-green);
    color: white;
    border: none;
    padding: 0 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.tc-search-bar button:hover {
    background: var(--tc-green-dark);
}

/* Actions header */
.tc-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.tc-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    color: var(--tc-gray);
    transition: var(--transition);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.tc-icon-btn:hover {
    color: var(--tc-green);
    background: var(--tc-green-soft);
}

.tc-icon-btn i {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.tc-badge-notif {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.55rem;
    padding: 0.15rem 0.35rem;
    background: var(--tc-red);
    color: white;
    border-radius: 20px;
    border: 2px solid white;
    font-weight: 700;
    min-width: 16px;
    text-align: center;
}

.tc-badge-notif.green { background: var(--tc-green); }
.tc-badge-notif.blue { background: var(--tc-blue); }

.tc-btn {
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.tc-btn-primary {
    background: var(--tc-green);
    color: white;
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
}

.tc-btn-primary:hover {
    background: var(--tc-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.35);
    color: white;
}

.tc-btn-outline {
    background: transparent;
    color: var(--tc-green);
    border: 2px solid var(--tc-green);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.tc-btn-outline:hover {
    background: var(--tc-green);
    color: white;
    transform: translateY(-2px);
}

.tc-btn-success {
    background: #28A745;
    color: white;
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
}

.tc-btn-success:hover {
    background: #1E7E34;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.35);
    color: white;
}

/* Menu toggle mobile */
.tc-menu-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid var(--tc-border);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--tc-dark);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ============================================
   NAVIGATION PRINCIPALE (bandeau secondaire)
   ============================================ */
.tc-mainnav {
    background: var(--tc-white);
    border-bottom: 2px solid var(--tc-border-light);
    padding: 0 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    position: sticky;
    top: 78px;
    z-index: 1020;
    overflow-x: auto;
    scrollbar-width: none;
}

.tc-mainnav::-webkit-scrollbar { display: none; }

.tc-mainnav-inner {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    min-width: max-content;
}

.tc-mainnav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tc-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.tc-mainnav-link:hover {
    color: var(--tc-green);
    background: var(--tc-green-soft);
}

.tc-mainnav-link.active {
    color: var(--tc-green);
    background: var(--tc-green-soft);
}

.tc-mainnav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--tc-green);
    border-radius: 3px 3px 0 0;
}

.tc-mainnav-link i { font-size: 0.9rem; }

.tc-mainnav-highlight {
    margin-left: auto;
    color: var(--tc-green);
    font-size: 0.8rem;
    font-weight: 700;
}

/* ============================================
   HERO BANNER
   ============================================ */
.tc-hero {
    background: var(--gradient-primary);
    border-radius: var(--radius);
    color: white;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.tc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.04);
    transform: rotate(-20deg);
    pointer-events: none;
}

.tc-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,217,61,0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.tc-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.tc-hero-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.tc-hero-content h2 .highlight {
    color: var(--tc-yellow);
    -webkit-text-fill-color: var(--tc-yellow);
}

.tc-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.tc-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tc-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tc-hero-stat {
    display: flex;
    flex-direction: column;
}

.tc-hero-stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--tc-yellow);
    line-height: 1;
}

.tc-hero-stat-label {
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.tc-hero-illustration {
    font-size: 8rem;
    color: white;
    opacity: 0.15;
    line-height: 1;
}

/* ============================================
   SECTION GÉNÉRIQUE
   ============================================ */
.tc-section {
    margin-bottom: 2rem;
}

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

.tc-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.tc-section-title i {
    color: var(--tc-green);
    font-size: 1.1rem;
}

.tc-section-link {
    color: var(--tc-green);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.tc-section-link:hover {
    color: var(--tc-green-dark);
    gap: 0.5rem;
}

/* ============================================
   STAT CARDS
   ============================================ */
.tc-stat-card {
    background: var(--tc-white);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--tc-border-light);
    height: 100%;
    transition: var(--transition);
}

.tc-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--tc-green-light);
}

.tc-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--tc-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.tc-stat-label {
    color: var(--tc-gray);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tc-stat-label i { color: var(--tc-green); }

.tc-stat-trend {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.tc-trend-up {
    background: #E6F7ED;
    color: #28A745;
}

.tc-trend-down {
    background: #FEE;
    color: var(--tc-red);
}

/* ============================================
   CATÉGORIES
   ============================================ */
.tc-cat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.75rem;
}

.tc-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--tc-white);
    padding: 1rem 0.5rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.tc-cat-item:hover {
    border-color: var(--tc-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tc-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tc-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.tc-cat-icon i {
    font-size: 1.4rem;
    color: var(--tc-green);
    transition: var(--transition);
}

.tc-cat-item:hover .tc-cat-icon {
    background: var(--tc-green);
}

.tc-cat-item:hover .tc-cat-icon i {
    color: white;
}

.tc-cat-name {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.tc-cat-count {
    font-size: 0.65rem;
    color: var(--tc-gray-light);
    font-weight: 500;
}

/* ============================================
   FILTRES
   ============================================ */
.tc-filter-bar {
    background: var(--tc-white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--tc-border-light);
}

.tc-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.tc-filter-tag {
    display: inline-block;
    background: var(--tc-light);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tc-gray);
    border: 1px solid var(--tc-border);
    cursor: pointer;
    transition: var(--transition);
}

.tc-filter-tag:hover,
.tc-filter-tag.active {
    background: var(--tc-green);
    color: white;
    border-color: var(--tc-green);
}

.tc-filter-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tc-filter-select {
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--tc-border);
    background: var(--tc-white);
    font-size: 0.8rem;
    font-family: inherit;
    color: var(--tc-gray);
    cursor: pointer;
    transition: var(--transition);
}

.tc-filter-select:focus {
    outline: none;
    border-color: var(--tc-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* ============================================
   CARTES ANALYSE / PRODUIT
   ============================================ */
.tc-scroll-x {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}

.tc-scroll-x::-webkit-scrollbar { height: 6px; }
.tc-scroll-x::-webkit-scrollbar-thumb {
    background: var(--tc-green);
    border-radius: 10px;
}

.tc-scroll-x::-webkit-scrollbar-track {
    background: var(--tc-light);
    border-radius: 10px;
}

.tc-scroll-item {
    flex: 0 0 260px;
    max-width: 260px;
    scroll-snap-align: start;
}

.tc-card {
    background: var(--tc-white);
    border-radius: var(--radius);
    padding: 1rem;
    transition: var(--transition);
    border: 1px solid var(--tc-border-light);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--tc-green);
}

.tc-card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    background: var(--tc-light);
    aspect-ratio: 4/3;
}

.tc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tc-card:hover .tc-card-img {
    transform: scale(1.05);
}

.tc-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tc-badge-green {
    background: var(--tc-green);
    color: white;
}

.tc-badge-yellow {
    background: var(--tc-yellow-deep);
    color: var(--tc-dark);
}

.tc-badge-blue {
    background: var(--tc-blue);
    color: white;
}

.tc-badge-cyan {
    background: var(--tc-cyan);
    color: white;
}

.tc-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.tc-card-tag {
    display: inline-block;
    background: var(--tc-green-soft);
    color: var(--tc-green);
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.65rem;
}

.tc-card-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}

.tc-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.tc-card-price-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--tc-green);
}

.tc-card-rating {
    color: var(--tc-yellow-deep);
    font-size: 0.75rem;
    font-weight: 600;
}

.tc-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--tc-gray);
    padding-top: 0.5rem;
    border-top: 1px solid var(--tc-border-light);
    margin-bottom: 0.5rem;
}

.tc-card-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.tc-card-author strong { color: var(--tc-dark); }

.tc-card-actions {
    display: flex;
    gap: 0.4rem;
}

.tc-card-actions .tc-btn {
    font-size: 0.72rem;
    padding: 0.4rem 0.6rem;
}

.tc-card-actions .tc-btn-primary {
    flex: 1;
}

.tc-card-actions .tc-icon-action {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--tc-border);
    background: var(--tc-light);
    color: var(--tc-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.tc-card-actions .tc-icon-action:hover {
    background: var(--tc-green-soft);
    border-color: var(--tc-green);
    color: var(--tc-green);
}

/* ============================================
   CARTES EXPERTISE (grid normal)
   ============================================ */
.tc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.tc-expertise-card {
    background: var(--tc-white);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    border: 1px solid var(--tc-border-light);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tc-expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.tc-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--tc-green);
}

.tc-expertise-card:hover::before {
    transform: scaleX(1);
}

.tc-expertise-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.tc-expertise-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tc-expertise-card p {
    font-size: 0.8rem;
    color: var(--tc-gray);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.tc-expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--tc-green);
}

.tc-expertise-link:hover { gap: 0.5rem; }

/* ============================================
   FORMULAIRE DEMANDE
   ============================================ */
.tc-demande-wrapper {
    background: var(--gradient-primary);
    border-radius: var(--radius);
    overflow: hidden;
    color: white;
    box-shadow: var(--shadow-lg);
}

.tc-demande-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 0;
}

.tc-demande-info {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tc-demande-info h2 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.75rem;
}

.tc-demande-info p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tc-demande-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tc-demande-step {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.tc-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid var(--tc-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--tc-yellow);
    flex-shrink: 0;
    font-size: 0.85rem;
}

.tc-step-content strong {
    display: block;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 0.1rem;
}

.tc-step-content span {
    font-size: 0.75rem;
    opacity: 0.75;
}

.tc-demande-contacts {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tc-demande-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.78rem;
    font-weight: 500;
}

.tc-demande-contact:hover {
    background: rgba(255,217,61,0.2);
    border-color: var(--tc-yellow);
    color: white;
}

.tc-demande-form {
    background: var(--tc-white);
    padding: 2.5rem 2rem;
    color: var(--tc-dark);
}

.tc-form-group {
    margin-bottom: 0.9rem;
}

.tc-form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--tc-dark);
    margin-bottom: 0.35rem;
}

.tc-form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--tc-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--tc-white);
}

.tc-form-control:focus {
    outline: none;
    border-color: var(--tc-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

textarea.tc-form-control {
    resize: vertical;
    min-height: 90px;
}

/* ============================================
   PROJETS
   ============================================ */
.tc-project-card {
    background: var(--tc-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--tc-border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tc-project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--tc-green);
}

.tc-project-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--tc-light);
}

.tc-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tc-project-card:hover .tc-project-img img {
    transform: scale(1.05);
}

.tc-project-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-green);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tc-project-body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tc-project-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    min-height: 2.6em;
}

.tc-project-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--tc-gray);
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.tc-project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.tc-project-meta i { color: var(--tc-green); }

.tc-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--tc-green);
    margin-top: auto;
}

.tc-project-link:hover { gap: 0.5rem; }

/* ============================================
   LANCEMENT
   ============================================ */
.tc-launch {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tc-launch::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.15), transparent);
    border-radius: 50%;
}

.tc-launch-content { position: relative; z-index: 1; }

.tc-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 217, 61, 0.15);
    border: 1px solid rgba(255, 217, 61, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--tc-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-launch h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.tc-launch p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.tc-launch-infos {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tc-launch-info {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.tc-launch-info i {
    font-size: 1.4rem;
    color: var(--tc-yellow);
}

.tc-launch-info strong {
    display: block;
    font-size: 0.85rem;
    color: white;
}

.tc-launch-info span {
    font-size: 0.75rem;
    opacity: 0.75;
}

.tc-launch-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tc-launch-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

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

.tc-launch-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.tc-launch-play i {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--tc-green);
    padding-left: 5px;
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 25px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ============================================
   ACTUALITÉS
   ============================================ */
.tc-news-card {
    background: var(--tc-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--tc-border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tc-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--tc-green);
}

.tc-news-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tc-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tc-news-card:hover .tc-news-img img {
    transform: scale(1.05);
}

.tc-news-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--tc-blue);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.tc-news-body {
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tc-news-date {
    font-size: 0.72rem;
    color: var(--tc-gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.tc-news-date i { color: var(--tc-green); }

.tc-news-body h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.8em;
}

.tc-news-body p {
    font-size: 0.78rem;
    color: var(--tc-gray);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   CONNAISSANCES
   ============================================ */
.tc-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.tc-knowledge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    background: var(--tc-white);
    border-radius: var(--radius);
    border: 1px solid var(--tc-border-light);
    transition: var(--transition);
    text-align: center;
}

.tc-knowledge-item i {
    font-size: 1.8rem;
    color: var(--tc-green);
    transition: var(--transition);
}

.tc-knowledge-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tc-dark);
}

.tc-knowledge-item:hover {
    background: var(--gradient-green);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tc-knowledge-item:hover i,
.tc-knowledge-item:hover span {
    color: white;
}

/* ============================================
   FORMATIONS
   ============================================ */
.tc-formation-card {
    background: var(--tc-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--tc-border-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tc-formation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--tc-green);
}

.tc-formation-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.tc-formation-header.green { background: var(--gradient-green); }
.tc-formation-header.blue { background: var(--gradient-blue); }
.tc-formation-header.yellow { background: linear-gradient(135deg, var(--tc-yellow-deep), var(--tc-yellow)); color: var(--tc-dark); }

.tc-formation-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tc-formation-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    min-height: 2.6em;
}

.tc-formation-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    flex: 1;
}

.tc-formation-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--tc-gray);
}

.tc-formation-meta i {
    color: var(--tc-green);
    width: 16px;
    font-size: 0.8rem;
}

/* ============================================
   PARTENAIRES
   ============================================ */
.tc-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
}

.tc-partner-item {
    background: var(--tc-white);
    border: 1px solid var(--tc-border-light);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.7;
}

.tc-partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--tc-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tc-partner-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ============================================
   CTA FINAL
   ============================================ */
.tc-cta {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.tc-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.15), transparent);
    border-radius: 50%;
}

.tc-cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.tc-cta-content h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.tc-cta-content h2 .highlight {
    color: var(--tc-yellow);
    -webkit-text-fill-color: var(--tc-yellow);
}

.tc-cta-content p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.tc-cta-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.tc-cta-action {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    transition: var(--transition);
    text-align: left;
    cursor: pointer;
}

.tc-cta-action:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
    color: white;
}

.tc-cta-action i {
    font-size: 1.5rem;
    color: var(--tc-yellow);
    flex-shrink: 0;
}

.tc-cta-action strong {
    display: block;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 0.15rem;
}

.tc-cta-action span {
    font-size: 0.72rem;
    opacity: 0.75;
}

.tc-cta-action.primary {
    background: white;
    border-color: white;
}

.tc-cta-action.primary i { color: var(--tc-green); }
.tc-cta-action.primary strong { color: var(--tc-green); }
.tc-cta-action.primary span { color: var(--tc-gray); }
.tc-cta-action.primary:hover { background: var(--tc-yellow); border-color: var(--tc-yellow); }
.tc-cta-action.primary:hover strong { color: var(--tc-dark); }

/* ============================================
   FOOTER
   ============================================ */
.tc-footer {
    background: var(--tc-dark);
    color: rgba(255,255,255,0.75);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.tc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tc-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tc-footer-logo img {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.tc-footer-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.75;
}

.tc-footer-social {
    display: flex;
    gap: 0.5rem;
}

.tc-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tc-footer-social a:hover {
    background: var(--tc-green);
    transform: translateY(-3px);
}

.tc-footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tc-footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    display: inline-block;
}

.tc-footer-col ul li a:hover {
    color: var(--tc-yellow);
    padding-left: 5px;
}

.tc-footer-contact li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.82rem;
    line-height: 1.6;
}

.tc-footer-contact i {
    color: var(--tc-yellow);
    margin-top: 3px;
    flex-shrink: 0;
}

.tc-footer-contact a {
    color: rgba(255,255,255,0.7);
}

.tc-footer-contact a:hover { color: var(--tc-yellow); }

.tc-footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.tc-footer-bottom strong { color: white; }

.tc-footer-legal {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    opacity: 0.7;
}

.tc-footer-legal a { color: rgba(255,255,255,0.7); }
.tc-footer-legal a:hover { color: var(--tc-yellow); }

/* ============================================
   WHATSAPP FLOTTANT
   ============================================ */
.tc-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.tc-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* ============================================
   SCROLL TOP
   ============================================ */
.tc-scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tc-green);
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tc-scroll-top:hover {
    background: var(--tc-green-dark);
    transform: translateY(-4px);
}

/* ============================================
   MENU MOBILE
   ============================================ */
.tc-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background: white;
    z-index: 1050;
    transform: translateX(100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.tc-mobile-menu.active { transform: translateX(0); }

.tc-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--tc-border);
}

.tc-mobile-header img { height: 45px; width: auto; }

.tc-mobile-close {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--tc-border);
    background: white;
    font-size: 1rem;
    color: var(--tc-dark);
    cursor: pointer;
}

.tc-mobile-list {
    list-style: none;
    padding: 1rem 1.25rem;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.tc-mobile-list li {
    border-bottom: 1px solid var(--tc-border-light);
}

.tc-mobile-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--tc-dark);
}

.tc-mobile-list a i {
    color: var(--tc-green);
    width: 20px;
}

.tc-mobile-list a:hover {
    color: var(--tc-green);
    padding-left: 0.5rem;
}

.tc-mobile-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--tc-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Overlay mobile */
.tc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tc-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

/* Tablette large */
@media (max-width: 1200px) {
    .tc-cat-grid { grid-template-columns: repeat(6, 1fr); }
    .tc-cta-actions { grid-template-columns: repeat(2, 1fr); }
    .tc-partners-grid { grid-template-columns: repeat(4, 1fr); }
    .tc-knowledge-grid { grid-template-columns: repeat(4, 1fr); }
    .tc-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* Tablette */
@media (max-width: 992px) {
    .tc-search-bar { display: none; }
    .tc-menu-toggle { display: flex; }
    .tc-header-actions .tc-btn { display: none; }
    .tc-header-actions .tc-btn.mobile-visible { display: inline-flex; }

    .tc-mainnav { top: 70px; }

    .tc-hero-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tc-hero-illustration {
        display: none;
    }

    .tc-cat-grid { grid-template-columns: repeat(4, 1fr); }
    .tc-demande-grid { grid-template-columns: 1fr; }
    .tc-launch { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 1.5rem; }
    .tc-launch h2 { font-size: 1.4rem; }
    .tc-footer-grid { grid-template-columns: 1fr 1fr; }
    .tc-partners-grid { grid-template-columns: repeat(3, 1fr); }
    .tc-knowledge-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    .tc-topbar { display: none; }
    .tc-header { padding: 0.5rem 1rem; }
    .tc-brand-logo { height: 45px; }
    .tc-header.scrolled .tc-brand-logo { height: 40px; }
    .tc-mainnav { top: 60px; padding: 0 1rem; }

    .tc-hero { padding: 1.5rem 1.25rem; }
    .tc-hero-content h2 { font-size: 1.3rem; }
    .tc-hero-actions { flex-direction: column; align-items: stretch; }
    .tc-hero-actions .tc-btn { width: 100%; justify-content: center; }
    .tc-hero-stats { gap: 1rem; }
    .tc-hero-stat-value { font-size: 1.2rem; }

    .tc-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .tc-cat-item { padding: 0.75rem 0.4rem; }
    .tc-cat-icon { width: 40px; height: 40px; }
    .tc-cat-icon i { font-size: 1.1rem; }
    .tc-cat-name { font-size: 0.68rem; }

    .tc-filter-tags { gap: 0.3rem; }
    .tc-filter-tag { font-size: 0.7rem; padding: 0.25rem 0.7rem; }
    .tc-filter-selects { flex-direction: column; align-items: stretch; }
    .tc-filter-select { width: 100%; }

    .tc-scroll-item { flex: 0 0 220px; max-width: 220px; }

    .tc-demande-info, .tc-demande-form { padding: 1.5rem; }
    .tc-demande-info h2 { font-size: 1.3rem; }

    .tc-launch-actions { flex-direction: column; }
    .tc-launch-actions .tc-btn { width: 100%; justify-content: center; }

    .tc-cta { padding: 1.75rem; }
    .tc-cta-content h2 { font-size: 1.4rem; }
    .tc-cta-actions { grid-template-columns: 1fr; }

    .tc-knowledge-grid { grid-template-columns: repeat(2, 1fr); }
    .tc-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .tc-partner-item { height: 80px; padding: 0.75rem; }

    .tc-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .tc-footer-bottom { flex-direction: column; text-align: center; }

    .tc-whatsapp { width: 50px; height: 50px; font-size: 1.4rem; bottom: 85px; right: 18px; }
    .tc-scroll-top { bottom: 20px; right: 18px; width: 42px; height: 42px; }
}

/* Petit mobile */
@media (max-width: 576px) {
    .tc-hero-content h2 { font-size: 1.15rem; }
    .tc-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .tc-scroll-item { flex: 0 0 200px; max-width: 200px; }
    .tc-section-title { font-size: 0.9rem; }

    .tc-stat-value { font-size: 1.4rem; }
    .tc-stat-card { padding: 1rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tc-animate {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.tc-delay-1 { animation-delay: 0.1s; }
.tc-delay-2 { animation-delay: 0.2s; }
.tc-delay-3 { animation-delay: 0.3s; }
.tc-delay-4 { animation-delay: 0.4s; }