/* Ablation par Radiofréquence - Design moderne et clair */

/* Hero Section */
.ablation-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.ablation-hero-content {
    position: relative;
    z-index: 1;
}

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

.ablation-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

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

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.section-intro {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Arythmies Section */
.arythmies-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.arythmie-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid;
}

.arythmie-card.supra {
    border-top-color: #3b82f6;
}

.arythmie-card.junctional {
    border-top-color: #f59e0b;
}

.arythmie-card.ventriculaire {
    border-top-color: #ef4444;
}

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

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

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

.arythmie-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.arythmie-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #555;
}

.arythmie-list li:last-child {
    border-bottom: none;
}

.arythmie-list strong {
    color: #1e3c72;
    font-weight: 600;
}

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

.procedure-steps {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.procedure-step {
    display: flex;
    gap: 2.5rem;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border-left: 5px solid #d1d5db;
}

.procedure-step.highlight {
    background: linear-gradient(135deg, #fef9f3 0%, #fef3e8 100%);
    border-left-color: #f59e0b;
}

.procedure-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

.step-content {
    flex: 1;
}

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

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

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.detail-item strong {
    display: block;
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

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

.info-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #3b82f6;
}

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

.info-box strong {
    display: block;
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-box p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
}

/* Après Section */
.apres-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.apres-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.apres-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.apres-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.apres-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Déroulement détaillé - Section spéciale FA */
.ablation-deroulement {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5f0 100%);
}

.deroulement-phase {
    margin-bottom: 4rem;
    padding: 3rem;
    border-radius: 25px;
    background: white;
    border: 3px solid;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.deroulement-phase.avant {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.deroulement-phase.pendant {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.deroulement-phase.apres {
    border-color: #10b981;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}

.phase-icon {
    font-size: 3.5rem;
}

.phase-header h3 {
    font-size: 2.2rem;
    color: #1e3c72;
    font-weight: 700;
    margin: 0;
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.phase-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.phase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #f59e0b;
}

.phase-item.full-width {
    grid-column: 1 / -1;
    text-align: center;
}

.phase-item.highlight {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8f5 100%);
    border-color: #f093fb;
}

.phase-item.important {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-color: #ef4444;
}

.phase-item.success {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-color: #10b981;
}

.item-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.phase-item h4 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.phase-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0.5rem 0;
}

.phase-item em {
    color: #999;
    font-size: 0.95rem;
}

.phase-item ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

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

.phase-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

/* Admission Options */
.admission-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.option {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #f59e0b;
    transition: all 0.3s ease;
}

.option:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
}

.option-label {
    display: block;
    font-size: 0.8rem;
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option span:last-child {
    display: block;
    font-size: 0.95rem;
    color: #1e3c72;
    font-weight: 600;
    line-height: 1.3;
}

/* Anesthesie Benefits */
.anesthesie-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.anesthesie-benefits span {
    background: white;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #f59e0b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #f59e0b;
    transition: all 0.3s ease;
}

.anesthesie-benefits span:hover {
    transform: scale(1.05);
}

/* Suites Info */
.suites-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

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

.suite-item:hover {
    transform: translateX(5px);
}

.suite-item .icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.suite-item span:last-child {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    line-height: 1.3;
}

/* Sortie Section */
.sortie-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    color: white;
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3);
}

.sortie-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.sortie-option {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sortie-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.sortie-option h4 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sortie-option p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Efficacité Section */
.efficacite-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card.primary {
    border-top-color: #667eea;
}

.stat-card.success {
    border-top-color: #10b981;
}

.stat-card.info {
    border-top-color: #3b82f6;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-card.primary .stat-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card.success .stat-number {
    color: #10b981;
}

.stat-card.info .stat-number {
    color: #3b82f6;
}

.stat-title {
    font-size: 1.3rem;
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

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

.benefits-section {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.benefits-title {
    font-size: 2rem;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.benefit-content strong {
    display: block;
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Risques Section */
.risques-section {
    padding: 5rem 0;
    background: white;
}

.safety-highlight {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 6px solid #10b981;
}

.safety-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

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

.safety-content p {
    font-size: 1.1rem;
    color: #065f46;
    line-height: 1.7;
    margin: 0;
}

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

.risk-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.risk-card.minor {
    border-top: 5px solid #f59e0b;
}

.risk-card.major {
    border-top: 5px solid #ef4444;
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.risk-badge {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.minor-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.major-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.risk-header h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin: 0;
    font-weight: 700;
}

.risk-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.risk-list li {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.risk-list li:last-child {
    border-bottom: none;
}

.risk-bullet {
    font-size: 1.5rem;
    color: #ef4444;
    font-weight: bold;
    flex-shrink: 0;
}

.risk-list strong {
    display: block;
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.risk-list p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.important-notice {
    display: flex;
    gap: 2rem;
    align-items: start;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
    margin-top: 3rem;
}

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

.notice-content strong {
    display: block;
    color: #92400e;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.notice-content p {
    color: #78350f;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
}

.expertise-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.expertise-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

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

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

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.expertise-item h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-primary.large {
    background: white;
    color: #1e3c72;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary.large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary.large:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-3px);
}

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

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

    .arythmies-grid,
    .apres-grid,
    .expertise-highlights {
        grid-template-columns: 1fr;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .risks-grid {
        grid-template-columns: 1fr;
    }

    .procedure-info {
        grid-template-columns: 1fr;
    }

    .step-details {
        grid-template-columns: 1fr;
    }

    .safety-highlight {
        flex-direction: column;
        text-align: center;
    }
}

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

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

    .section-title {
        font-size: 2rem;
    }

    .procedure-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .phase-header {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .ablation-main-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
}
