/* Pacemaker - Page spécifique */

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

.pm-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;
}

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

.pm-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;
}

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

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

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

.pm-intro-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.pm-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 2px;
}

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

.pm-intro-text strong {
    color: #4facfe;
    font-weight: 600;
}

/* Stats Box */
.pm-stats-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.3);
}

.pm-stat-item {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pm-stat-item:last-child {
    border-bottom: none;
}

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

.pm-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

/* Bradycardie Section */
.pm-bradycardie {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pm-brady-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.pm-brady-explanation h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pm-brady-explanation p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.pm-system-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pm-system-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-left: 4px solid #4facfe;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.pm-brady-note {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8f5 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f093fb;
    font-style: italic;
}

.pm-brady-symptoms h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pm-symptoms-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pm-symptom-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pm-symptom-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(79, 172, 254, 0.2);
}

.pm-symptom-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

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

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

.pm-type-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid #4facfe;
}

.pm-type-card.highlight {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
    border-top-color: #00f2fe;
    box-shadow: 0 10px 40px rgba(79, 172, 254, 0.2);
}

.pm-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.pm-type-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pm-type-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pm-type-features {
    list-style: none;
    padding: 0;
}

.pm-type-features li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.pm-type-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

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

.pm-func-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.pm-func-explanation h3,
.pm-func-working h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pm-components {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.pm-component {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pm-component h4 {
    font-size: 1.3rem;
    color: #4facfe;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pm-component ul {
    list-style: none;
    padding: 0;
}

.pm-component li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.pm-component li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-size: 1.5rem;
    line-height: 1;
}

.pm-working-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pm-working-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.pm-step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.pm-step-content h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pm-step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.pm-sentinel-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 15px 50px rgba(79, 172, 254, 0.3);
}

.pm-sentinel-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.pm-sentinel-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pm-sentinel-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Procedure Section */
.pm-procedure {
    padding: 5rem 0;
    background: white;
}

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

.pm-proc-preparation h3,
.pm-proc-steps h3,
.pm-proc-duration h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin: 3rem 0 2rem;
    font-weight: 700;
}

.pm-prep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pm-prep-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-top: 4px solid #4facfe;
}

.pm-prep-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pm-prep-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.pm-procedure-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pm-proc-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pm-proc-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
}

.pm-proc-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.pm-proc-step h4 {
    font-size: 1.4rem;
    color: #4facfe;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pm-proc-step p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.pm-proc-variant {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border: 2px solid #4facfe;
}

.pm-variant-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.pm-variant-content h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pm-variant-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pm-variant-content ul {
    list-style: none;
    padding: 0;
}

.pm-variant-content li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.pm-variant-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

.pm-duration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pm-duration-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pm-duration-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.pm-duration-card h4 {
    font-size: 1.6rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pm-duration-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Risks Section */
.pm-risks {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pm-risks-intro {
    max-width: 900px;
    margin: 2rem auto 3rem;
    text-align: center;
}

.pm-risks-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pm-risks-note {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f093fb;
    font-style: italic;
}

.pm-risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.pm-risk-category h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 700;
}

.pm-risk-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pm-risk-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pm-risk-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pm-risk-item h4 {
    font-size: 1.2rem;
    color: #4facfe;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pm-risk-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.pm-risks-longterm {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    border: 2px solid #4facfe;
}

.pm-risks-longterm h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pm-risks-longterm p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

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

.pm-recovery-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.pm-recovery-phase h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pm-recovery-phase ul {
    list-style: none;
    padding: 0;
}

.pm-recovery-phase li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.pm-recovery-phase li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.pm-precautions-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8f5 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1.5rem;
    border-left: 5px solid #f093fb;
}

.pm-precautions-box h4 {
    font-size: 1.4rem;
    color: #e53e3e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pm-scar-care h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin: 3rem 0 2rem;
    font-weight: 700;
}

.pm-scar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pm-scar-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-top: 4px solid #4facfe;
}

.pm-scar-card.alert {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-top-color: #e53e3e;
}

.pm-scar-card h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pm-scar-card.alert h4 {
    color: #e53e3e;
}

.pm-scar-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pm-scar-card ul {
    list-style: none;
    padding: 0;
}

.pm-scar-card li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.pm-scar-card li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
}

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

.pm-life-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.pm-life-category h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.pm-life-category.caution h3 {
    color: #f59e0b;
}

.pm-life-category.forbidden h3 {
    color: #e53e3e;
}

.pm-life-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pm-life-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pm-life-item span:first-child {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pm-life-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pm-card-box {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 15px 50px rgba(79, 172, 254, 0.3);
}

.pm-card-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.pm-card-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pm-card-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

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

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

.pm-monitor-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pm-monitor-card.highlight {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
    border: 2px solid #4facfe;
}

.pm-monitor-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

.pm-monitor-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pm-monitor-card ul {
    list-style: none;
    padding: 0;
}

.pm-monitor-card li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.pm-monitor-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.pm-monitoring-schedule h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin: 3rem 0 2rem;
    font-weight: 700;
}

.pm-schedule-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.pm-schedule-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pm-schedule-item::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #4facfe;
}

.pm-schedule-item:last-child::after {
    display: none;
}

.pm-schedule-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4facfe;
    margin-bottom: 1rem;
}

.pm-schedule-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

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

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

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

.pm-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
}

.pm-faq-item h3 {
    font-size: 1.3rem;
    color: #4facfe;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

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

.pm-expertise-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pm-highlight-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pm-highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
}

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

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

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

/* CTA Section */
.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 */
@media (max-width: 1200px) {
    .pm-intro-grid,
    .pm-expertise-content {
        grid-template-columns: 1fr;
    }

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

    .pm-brady-content,
    .pm-func-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .pm-prep-grid,
    .pm-scar-grid,
    .pm-duration-grid,
    .pm-risks-grid,
    .pm-monitoring-types,
    .pm-faq-grid {
        grid-template-columns: 1fr;
    }

    .pm-life-items {
        grid-template-columns: 1fr;
    }

    .pm-schedule-timeline {
        flex-direction: column;
    }

    .pm-schedule-item::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -2rem;
        transform: translateX(50%);
    }
}

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

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

    .pm-sentinel-box,
    .pm-proc-variant,
    .pm-card-box {
        flex-direction: column;
    }

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

    .pm-cta-locations {
        flex-direction: column;
        gap: 1rem;
    }
}
