/* ESA Advisory - Design Innovant avec couleurs bleu et orange */

/* Variables pour les couleurs du site */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --primary-orange: #ea580c;
    --secondary-orange: #fb923c;
    --light-orange: #fed7aa;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
}

/* Animations légères */
@keyframes zephyr-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



@keyframes zephyr-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes zephyr-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes zephyr-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container principal */
.zephyr-main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}



/* Section Présentation améliorée */
.zephyr-presentation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

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

.zephyr-about-header {
    text-align: center;
    margin-bottom: 60px;
    animation: zephyr-fade-in 0.8s ease-out;
}

.zephyr-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.zephyr-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 20px 0 30px;
    line-height: 1.2;
}

.zephyr-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.zephyr-about-main {
    animation: zephyr-fade-in 0.8s ease-out 0.2s both;
}

.zephyr-about-text {
    margin-bottom: 40px;
}

.zephyr-intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
    font-weight: 500;
}

.zephyr-highlight-text {
    color: #1e40af;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zephyr-description-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
}

.zephyr-about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zephyr-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #1e40af, #f97316);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.zephyr-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.zephyr-feature-icon {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.zephyr-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}

.zephyr-feature-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.zephyr-about-visual {
    animation: zephyr-slide-in 0.8s ease-out 0.4s both;
}

.zephyr-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.zephyr-stat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zephyr-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #f97316);
    transition: left 0.3s ease;
}

.zephyr-stat-card:hover::before {
    left: 0;
}

.zephyr-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.zephyr-stat-icon {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 15px;
}

.zephyr-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.zephyr-stat-text {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.zephyr-commitment-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 30px;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.zephyr-commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.zephyr-commitment-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.zephyr-commitment-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.zephyr-commitment-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Visual Cards */
.zephyr-presentation-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.zephyr-visual-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.zephyr-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.zephyr-card-1 {
    border-color: var(--light-blue);
}

.zephyr-card-1:hover {
    border-color: var(--primary-blue);
}

.zephyr-card-2 {
    border-color: var(--light-orange);
    grid-column: span 2;
}

.zephyr-card-2:hover {
    border-color: var(--primary-orange);
}

.zephyr-card-3 {
    border-color: var(--light-blue);
}

.zephyr-card-3:hover {
    border-color: var(--primary-blue);
}

.zephyr-card-icon-large {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.zephyr-card-1 .zephyr-card-icon-large {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.zephyr-card-2 .zephyr-card-icon-large {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
}

.zephyr-card-3 .zephyr-card-icon-large {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-orange));
}

.zephyr-visual-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.zephyr-visual-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Section Départements */
.zephyr-departments-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.zephyr-departments-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.zephyr-departments-badge {
    background: var(--light-orange);
    color: var(--primary-orange);
}

.zephyr-departments-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* Container Hexagonal */
.zephyr-departments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.identity-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 65%);
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(30,64,175,0.06);
}


.metrics-band {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
}

.metric-card {
    background: rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 12px 32px rgba(30,64,175,0.18);
    border: 1px solid rgba(255,255,255,0.24);
    min-width: 280px;
    text-align: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .28s ease, box-shadow .28s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 44px rgba(30,64,175,0.22);
}

.metric-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    font-size: 1.35rem;
    box-shadow: 0 8px 22px rgba(234,88,12,0.35);
}

.metric-value {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

.identity-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
}

.identity-card {
    background: rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(30,64,175,0.18);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .28s ease, box-shadow .28s ease;
    position: relative;
    overflow: hidden;
}

.identity-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 44px rgba(30,64,175,0.22);
}

.identity-text {
    font-size: 1.08rem;
    line-height: 1.78;
    color: #1f2937;
}

.ib-container { display: flex; flex-direction: column; gap: 22px; }
.ib-section { display: flex; flex-direction: column; gap: 12px; }
.ib-header { display: flex; align-items: center; gap: 12px; }
.ib-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
    box-shadow: 0 8px 22px rgba(59,130,246,0.35);
    flex-shrink: 0;
    font-size: 20px;
}
.ib-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}
.ib-body { padding-left: 60px; }
.ib-sep { height: 1px; background: linear-gradient(90deg, rgba(59,130,246,.28), rgba(234,88,12,.28)); border-radius: 1px; }

.identity-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 34px;
}

.identity-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.14);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(30,64,175,0.18);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .28s ease, box-shadow .28s ease;
    position: relative;
    overflow: hidden;
}

.identity-feature:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 44px rgba(30,64,175,0.22);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    font-size: 1.22rem;
    flex-shrink: 0;
    box-shadow: 0 8px 22px rgba(59,130,246,0.35);
}

.feature-content h4 {
    font-size: 1.14rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: .97rem;
    color: var(--gray-600);
}

.identity-section::before {
    content: '';
    position: absolute;
    inset: -60px -60px auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(closest-side, rgba(59,130,246,0.15), transparent 70%);
    filter: blur(10px);
    z-index: -1;
    animation: floatY 8s ease-in-out infinite;
}

.identity-section::after {
    content: '';
    position: absolute;
    inset: auto auto -80px -40px;
    width: 520px;
    height: 520px;
    background: radial-gradient(closest-side, rgba(234,88,12,0.14), transparent 70%);
    filter: blur(10px);
    z-index: -1;
    animation: floatY 10s ease-in-out infinite reverse;
}

.metric-card::before,
.identity-card::before,
.identity-feature::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 80%;
    background: linear-gradient(120deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
    transform: rotate(8deg);
    opacity: 0.6;
    pointer-events: none;
    animation: shineSweep 6s linear infinite;
}

.metric-card:hover .metric-value { transform: scale(1.03); }
.metric-card .metric-value { transition: transform .22s ease; }

@keyframes shineSweep {
    0% { transform: translateX(-30%) rotate(8deg); }
    50% { transform: translateX(10%) rotate(8deg); }
    100% { transform: translateX(40%) rotate(8deg); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@media (max-width: 1024px) {
    .identity-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .metrics-band { flex-direction: column; }
    .metric-card { width: 100%; min-width: unset; }
    .identity-cards { grid-template-columns: 1fr; }
    .identity-features { grid-template-columns: 1fr; }
}

.zephyr-department-hexagon {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.zephyr-department-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: none;
    transform: none;
    transition: none;
}

.zephyr-department-hexagon:hover::before { transform: none; }

.zephyr-hex-1 { border-color: rgba(26,63,209,0.20); }

.zephyr-hex-1:hover { border-color: rgba(26,63,209,0.40); box-shadow: 0 16px 36px rgba(30, 58, 138, 0.14); transform: translateY(-6px); }

.zephyr-hex-2 { border-color: var(--light-orange); }

.zephyr-hex-2:hover { border-color: var(--primary-orange); box-shadow: 0 16px 36px rgba(234, 88, 12, 0.14); transform: translateY(-6px); }

.zephyr-hex-3 { border-color: rgba(37,99,235,0.20); }

.zephyr-hex-3:hover { border-color: rgba(59,130,246,0.40); box-shadow: 0 16px 36px rgba(59, 130, 246, 0.14); transform: translateY(-6px); }

.zephyr-hex-4 { border-color: rgba(14,165,233,0.18); }

.zephyr-hex-4:hover { border-color: rgba(14,165,233,0.36); box-shadow: 0 16px 36px rgba(14,165,233,0.14); transform: translateY(-6px); }

.zephyr-hex-inner {
    text-align: center;
    margin-bottom: 1.5rem;
}

.zephyr-hex-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.zephyr-hex-1 .zephyr-hex-icon { background: #174392; background-size: 200% 200%; animation: servicesIconGradient 12s ease-in-out infinite; }

.zephyr-hex-2 .zephyr-hex-icon { background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange)); background-size: 240% 240%; animation: servicesIconGradient 10s ease-in-out infinite, servicesIconGlow 12s ease-in-out infinite; filter: saturate(1.12) brightness(1.05); box-shadow: 0 12px 28px rgba(234, 88, 12, 0.18); }

.zephyr-hex-3 .zephyr-hex-icon { background: #174392; background-size: 200% 200%; animation: servicesIconGradient 12s ease-in-out infinite; }

.zephyr-hex-4 .zephyr-hex-icon { background: #174392; background-size: 240% 240%; animation: servicesIconGradient 10s ease-in-out infinite, servicesIconGlow 12s ease-in-out infinite; filter: saturate(1.18) brightness(1.06); box-shadow: 0 12px 28px rgba(30,64,175,0.20); }

.zephyr-hex-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.zephyr-hex-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.zephyr-service-tag { background: rgba(17,24,39,0.04); color: #4b5563; padding: 0.3rem 0.8rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600; transition: all 0.25s ease; border: 1px solid rgba(17,24,39,0.06); background-image: linear-gradient(90deg, rgba(17,24,39,0.03), rgba(17,24,39,0.06), rgba(17,24,39,0.03)); background-size: 200% 100%; animation: tagSheen 16s linear infinite; }

.zephyr-hex-1 .zephyr-service-tag:hover { background: rgba(26,63,209,0.08); color: #1a3fd1; border-color: rgba(26,63,209,0.16); }

.zephyr-hex-2 .zephyr-service-tag:hover { background: var(--light-orange); color: var(--primary-orange); border-color: var(--primary-orange); }

.zephyr-hex-3 .zephyr-service-tag:hover { background: rgba(59,130,246,0.08); color: #2563eb; border-color: rgba(59,130,246,0.16); }

.zephyr-hex-4 .zephyr-service-tag:hover { background: rgba(14,165,233,0.08); color: #0ea5e9; border-color: rgba(14,165,233,0.16); }

.zephyr-hex-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(17,24,39,0.08);
    padding-top: 0;
}

.zephyr-department-hexagon:hover .zephyr-hex-details {
    opacity: 1;
    max-height: 300px;
    padding-top: 1.5rem;
}

.zephyr-hex-details p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.zephyr-detailed-services {
    list-style: none;
    padding: 0;
}

.zephyr-detailed-services li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.zephyr-detailed-services i {
    color: var(--primary-blue);
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zephyr-hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .zephyr-presentation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .zephyr-departments-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .zephyr-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .zephyr-about-header {
        margin-bottom: 40px;
    }
    
    .zephyr-section-title {
        font-size: 2rem;
    }
    
    .zephyr-intro-paragraph {
        font-size: 1.1rem;
    }
    
    .zephyr-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .zephyr-feature-item {
        padding: 20px;
        gap: 15px;
    }
    
    .zephyr-commitment-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    
    .zephyr-presentation-visual {
        grid-template-columns: 1fr;
    }
    
    .zephyr-card-2 {
        grid-column: span 1;
    }
    
    .zephyr-departments-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zephyr-presentation-section,
    .zephyr-departments-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .zephyr-section-title {
        font-size: 2rem;
    }
}
.identity-section .presentation-div { gap: 1.75rem; }
.identity-section .card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
    border: 1px solid transparent;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .24s ease, box-shadow .24s ease;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)), linear-gradient(135deg, #1a3fd1, #f97316);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    will-change: transform, opacity;
}
.identity-section .card::after {
    content: "";
    position: absolute;
    right: -10%;
    top: -12%;
    width: 280px;
    height: 280px;
    background: radial-gradient(closest-side, rgba(59,130,246,0.16), transparent 72%);
    filter: blur(22px);
    animation: cardGlow 9s ease-in-out infinite;
    pointer-events: none;
}
.identity-section .card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(17, 24, 39, 0.10); }
.identity-section .card h3 { color: #174392; letter-spacing: .1px; font-size: 1.75rem; }
.identity-section .card h3 i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #7aaeff, #1a3fd1);
    background-size: 200% 200%;
    animation: iconGradient 8s ease-in-out infinite, iconFloat 7s ease-in-out infinite;
    font-size: 18px;
    padding: 0;
    box-shadow: 0 0 0 4px rgba(26,63,209,0.15), 0 10px 20px rgba(26, 63, 209, 0.18);
    will-change: transform, box-shadow;
}
.identity-section .card:not(.small) h3 { justify-content: center; }
.identity-section .sep { width: 110px; height: 3px; background: linear-gradient(90deg, #1a3fd1, #4fc3ff); border-radius: 2px; background-size: 300% 100%; animation: sepFlow 6s linear infinite; }

.identity-section .card:not(.aos-animate) h3 i { transform: scale(.92); }
.identity-section .card:not(.aos-animate) .sep { transform: scaleX(0); transform-origin: left; }
.identity-section .card.aos-animate { animation: cardRise .6s cubic-bezier(0.4, 0, 0.2, 1) both; }
.identity-section .card.aos-animate h3 i { animation: iconPop .5s ease .15s both; }
.identity-section .card.aos-animate .sep { animation: sepGrow .6s ease .2s both; transform-origin: left; }

@keyframes cardRise { 0% { opacity: 0; transform: translateY(18px) scale(.98); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes iconPop { 0% { transform: scale(.85); } 60% { transform: scale(1.08); } 100% { transform: scale(1); } }
@keyframes sepGrow { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }

@media (max-width: 768px) {
    .identity-section { padding: 48px 16px; border-radius: 18px; }
    .identity-section .presentation-div { gap: 1.2rem; }
    .identity-section .card { border-radius: 14px; padding: 1.25rem; }
    .identity-section .card h3 { font-size: 1.3rem; line-height: 1.25; }
    .identity-section .card h3 i { width: 40px; height: 40px; font-size: 16px; box-shadow: 0 0 0 3px rgba(26,63,209,0.14), 0 8px 16px rgba(26,63,209,0.16); }
    .identity-section .sep { width: 80px; height: 2px; }
}

@media (max-width: 480px) {
    .identity-section { padding: 36px 12px; border-radius: 14px; }
    .identity-section .card { padding: 1rem; }
    .identity-section .card h3 { font-size: 1.15rem; line-height: 1.2; }
    .identity-section .card h3 i { width: 34px; height: 34px; font-size: 14px; box-shadow: 0 0 0 2px rgba(26,63,209,0.12), 0 6px 12px rgba(26,63,209,0.14); }
    .identity-section .sep { width: 64px; height: 2px; }
}
@keyframes cardGlow { 0% { transform: translate(0,0); opacity: .85; } 50% { transform: translate(-10px, 12px); opacity: 1; } 100% { transform: translate(0,0); opacity: .85; } }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes iconGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes sepFlow { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.zephyr-hex-icon { will-change: transform, background-position; }
.zephyr-service-tag { will-change: color, background-color, border-color; }

@keyframes servicesIconGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.zephyr-department-hexagon:hover .zephyr-hex-icon { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17,24,39,0.10); }
@keyframes servicesIconGlow { 0%,100% { filter: saturate(1.12) brightness(1.05); } 50% { filter: saturate(1.22) brightness(1.08); } }
@keyframes tagSheen { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }