/* Défibrillateur Page - Styles élégants */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Hero Section */
.dai-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.dai-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.dai-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.dai-main-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.dai-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.dai-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.dai-hero-stat {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.dai-hero-stat:nth-child(1) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.dai-hero-stat:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.dai-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dai-stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 200px;
}

/* Introduction Section */
.dai-intro {
    padding: 5rem 0;
    background: white;
}

.dai-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dai-intro-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.dai-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.dai-intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.dai-intro-text strong {
    color: #667eea;
    font-weight: 600;
}

.dai-mission-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    color: white;
    animation: slideInRight 0.8s ease-out;
}

.dai-mission-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dai-mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Arrhythmias Section */
.dai-arrhythmias {
    padding: 5rem 0;
    background: #f8f9fa;
}

.dai-section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 1rem auto 3rem;
    line-height: 1.7;
}

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

.dai-arrhythmia-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-top: 6px solid;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.dai-arrhythmia-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-arrhythmia-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-arrhythmia-card.warning {
    border-top-color: #f59e0b;
}

.dai-arrhythmia-card.danger {
    border-top-color: #ef4444;
}

.dai-arrhythmia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.dai-arr-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.dai-arrhythmia-card h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.dai-arr-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.dai-arr-details h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dai-arr-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.dai-arr-details ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.dai-arr-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dai-arrhythmia-card.warning ul li::before {
    color: #f59e0b;
}

.dai-arrhythmia-card.danger ul li::before {
    color: #ef4444;
}

.dai-treatment-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-top: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.dai-treatment-box.emergency {
    background: #fef2f2;
    border-left-color: #ef4444;
}

/* Types Section */
.dai-types {
    padding: 5rem 0;
    background: white;
}

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

.dai-type-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.dai-type-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-type-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-type-card:nth-child(3) {
    animation-delay: 0.3s;
}

.dai-type-card:nth-child(4) {
    animation-delay: 0.4s;
}

.dai-type-card:hover {
    border-color: #667eea;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.dai-type-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dai-type-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dai-type-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Functioning Section */
.dai-functioning {
    padding: 5rem 0;
    background: #f8f9fa;
}

.dai-function-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.dai-function-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.dai-function-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-function-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-function-card:nth-child(3) {
    animation-delay: 0.3s;
}

.dai-function-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}

.dai-function-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

.dai-function-content {
    margin-top: 1.5rem;
}

.dai-function-content h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dai-function-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Shock Section */
.dai-shock {
    padding: 5rem 0;
    background: white;
}

.dai-shock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.dai-shock-info-card {
    background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.dai-shock-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-shock-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-shock-info-card:nth-child(3) {
    animation-delay: 0.3s;
}

.dai-shock-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.dai-shock-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.dai-shock-info-card h3 {
    font-size: 1.3rem;
    color: #667eea;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.dai-shock-info-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Procedure Section */
.dai-procedure {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.dai-proc-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #667eea;
}

.dai-proc-box h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dai-proc-box ul {
    list-style: none;
    padding: 0;
}

.dai-proc-box ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.dai-proc-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.dai-test-info {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8f0 100%);
    border: 2px solid #f093fb;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.dai-test-info h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.dai-test-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Recovery Section */
.dai-recovery {
    padding: 5rem 0;
    background: white;
}

.dai-recovery-timeline {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.dai-recovery-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.dai-recovery-step:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-recovery-step:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-recovery-step:nth-child(3) {
    animation-delay: 0.3s;
}

.dai-recovery-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.dai-recovery-content {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.dai-recovery-content h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dai-recovery-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dai-recovery-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.dai-recovery-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.dai-alert-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 3px solid #ef4444;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.dai-alert-box h3 {
    font-size: 1.5rem;
    color: #b91c1c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dai-alert-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dai-alert-box ul li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #7f1d1d;
    line-height: 1.6;
}

.dai-alert-box ul li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Lifestyle Section */
.dai-lifestyle {
    padding: 5rem 0;
    background: #f8f9fa;
}

.dai-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.dai-lifestyle-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
    transition: all 0.3s ease;
}

.dai-lifestyle-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-lifestyle-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-lifestyle-card:nth-child(3) {
    animation-delay: 0.3s;
}

.dai-lifestyle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.dai-lifestyle-card.allowed {
    border-top-color: #22c55e;
}

.dai-lifestyle-card.caution {
    border-top-color: #f59e0b;
}

.dai-lifestyle-card.forbidden {
    border-top-color: #ef4444;
}

.dai-lifestyle-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dai-lifestyle-card.allowed h3 {
    color: #22c55e;
}

.dai-lifestyle-card.caution h3 {
    color: #f59e0b;
}

.dai-lifestyle-card.forbidden h3 {
    color: #ef4444;
}

.dai-lifestyle-card ul {
    list-style: none;
    padding: 0;
}

.dai-lifestyle-card ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.dai-lifestyle-card.allowed ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.dai-lifestyle-card.caution ul li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.dai-lifestyle-card.forbidden ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Driving Section */
.dai-driving {
    padding: 5rem 0;
    background: white;
}

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

.dai-driving-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
    transition: all 0.3s ease;
}

.dai-driving-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-driving-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-driving-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.dai-driving-card.prevention {
    border-color: #22c55e;
}

.dai-driving-card.secondary {
    border-color: #ef4444;
}

.dai-driving-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.dai-driving-card.prevention h3 {
    color: #22c55e;
}

.dai-driving-card.secondary h3 {
    color: #ef4444;
}

.dai-driving-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.dai-driving-card ul {
    list-style: none;
    padding: 0;
}

.dai-driving-card ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.dai-driving-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dai-driving-card.prevention ul li::before {
    color: #22c55e;
}

.dai-driving-card.secondary ul li::before {
    color: #ef4444;
}

.dai-driving-important {
    background: #fff8f0;
    border: 2px solid #f59e0b;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2.5rem;
}

.dai-driving-important p {
    margin: 0;
    color: #92400e;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Conduct Section */
.dai-conduct {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.dai-conduct-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.dai-conduct-card.single {
    animation-delay: 0.1s;
}

.dai-conduct-card.multiple {
    animation-delay: 0.2s;
}

.dai-conduct-card h3 {
    font-size: 1.6rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.dai-emergency-header {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 3px solid #ef4444;
    border-radius: 15px;
    padding: 1.5rem;
    margin: -2.5rem -2.5rem 2rem -2.5rem;
}

.dai-emergency-header h3 {
    color: #b91c1c;
    margin: 0;
}

.dai-conduct-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dai-conduct-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.dai-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.dai-conduct-step p {
    flex: 1;
    margin: 0;
    padding-top: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.dai-samu-box {
    background: #b91c1c;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(185, 28, 28, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.dai-samu-box p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.dai-samu-box p:first-child {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Monitoring Section */
.dai-monitoring {
    padding: 5rem 0;
    background: white;
}

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

.dai-monitoring-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #667eea;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
    transition: all 0.3s ease;
}

.dai-monitoring-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-monitoring-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-monitoring-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.dai-monitoring-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.dai-monitoring-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dai-monitoring-card ul {
    list-style: none;
    padding: 0;
}

.dai-monitoring-card ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.dai-monitoring-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* FAQ Section */
.dai-faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.dai-faq-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.dai-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.dai-faq-item h3 {
    font-size: 1.3rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dai-faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Expertise Section */
.dai-expertise {
    padding: 5rem 0;
    background: white;
}

.dai-expertise-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.dai-expertise-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.dai-expertise-text strong {
    color: #667eea;
    font-weight: 600;
}

.dai-expertise-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dai-highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.dai-highlight-box:nth-child(1) {
    animation-delay: 0.1s;
}

.dai-highlight-box:nth-child(2) {
    animation-delay: 0.2s;
}

.dai-highlight-box:nth-child(3) {
    animation-delay: 0.3s;
}

.dai-highlight-box:hover {
    border-color: #667eea;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.dai-highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.dai-highlight-box h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dai-highlight-box p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.pm-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

.pm-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.pm-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pm-cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pm-cta-content > p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary.large {
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
}

.pm-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.pm-cta-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.pm-cta-locations span {
    color: white;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dai-intro-grid,
    .dai-expertise-content {
        grid-template-columns: 1fr;
    }

    .dai-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dai-main-title {
        font-size: 2.5rem;
    }

    .dai-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .dai-arrhythmia-grid,
    .dai-function-steps,
    .dai-shock-grid,
    .dai-procedure-grid,
    .dai-lifestyle-grid,
    .dai-driving-grid,
    .dai-conduct-grid,
    .dai-monitoring-content,
    .dai-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dai-main-title {
        font-size: 2rem;
    }

    .dai-hero-subtitle {
        font-size: 1.2rem;
    }

    .dai-types-grid {
        grid-template-columns: 1fr;
    }

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