/* ===============================
   車スタック緊急救出ページ専用CSS
   =============================== */

/* ===============================
   Breadcrumb
   =============================== */
.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb nav ol li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #94a3b8;
}

.breadcrumb nav ol li a {
    color: #3b82f6;
    transition: color 0.2s;
}

.breadcrumb nav ol li a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* ===============================
   Hero Section
   =============================== */
.stuck-hero {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(59, 130, 246, 0.2) 100%),
                url('../car-stuck-rescue/images/car-stuck-rescue_hero-background.webp') center center / cover no-repeat;
    color: white;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.stuck-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.stuck-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.stuck-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.4);
    color: #1e293b;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(251, 191, 36, 0.6), 0 0 30px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(251, 191, 36, 0.8), 0 0 40px rgba(251, 191, 36, 0.6);
    }
}

.stuck-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.5px;
}

.stuck-hero-subtitle {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    opacity: 0.95;
}

.stuck-hero-lead {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.stuck-hero-lead strong {
    color: #fbbf24;
    font-weight: 800;
    font-size: 1.6rem;
    display: block;
    margin: 0.75rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(251, 191, 36, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.stuck-hero-cta {
    margin-top: 3rem;
}

/* ===============================
   Emergency Contact Box
   =============================== */
.emergency-contact-box {
    background: white;
    color: #1f2937;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.emergency-label {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.emergency-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
}

.emergency-phone i {
    font-size: 2rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.emergency-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.emergency-features span {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
}

.emergency-features i {
    color: #3b82f6;
    font-size: 1.25rem;
}

/* ===============================
   Section Common Styles
   =============================== */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: #f8fafc;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-title i {
    color: #3b82f6;
    font-size: 1.75rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.section-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

/* ===============================
   Troubles Section
   =============================== */
.troubles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.trouble-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.trouble-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trouble-card-title i {
    color: #dc2626;
    font-size: 1.5rem;
}

.trouble-list {
    list-style: none;
}

.trouble-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.trouble-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

/* ===============================
   Benefits Section
   =============================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.benefit-content p {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 1.7;
}

.benefit-content strong {
    color: #1e293b;
}

.benefit-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.benefit-list {
    list-style: none;
    margin-top: 1rem;
}

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #475569;
}

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

/* ===============================
   Comparison Box
   =============================== */
.comparison-box {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.comparison-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #475569;
}

.comparison-value.highlight {
    color: #dc2626;
    font-size: 1.5rem;
}

/* ===============================
   Price Box
   =============================== */
.price-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    text-align: center;
    border: 2px solid #fbbf24;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-label {
    font-size: 1rem;
    color: #92400e;
    font-weight: 600;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #dc2626;
}

.price-note {
    font-size: 1rem;
    color: #92400e;
}

/* ===============================
   Process List
   =============================== */
.process-list {
    list-style: none;
    counter-reset: process;
    margin: 1.5rem 0;
}

.process-list li {
    counter-increment: process;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===============================
   Comparison Section
   =============================== */
.comparison-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2.5rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.comparison-table th {
    padding: 1.25rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table th.highlight-col {
    background: #dc2626;
}

.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    color: #475569;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1e293b;
}

.comparison-table td.highlight-col {
    background: #fef2f2;
    font-weight: 700;
    color: #dc2626;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-note {
    text-align: center;
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

.comparison-note a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.2s;
}

.comparison-note a:hover {
    color: #2563eb;
}

/* ===============================
   Usage Guide
   =============================== */
.usage-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.usage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.usage-our-service {
    border-left: 5px solid #10b981;
}

.usage-our-service h3 {
    color: #10b981;
}

.usage-others {
    border-left: 5px solid #3b82f6;
}

.usage-others h3 {
    color: #3b82f6;
}

.usage-card ul {
    list-style: none;
}

.usage-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.usage-card ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: currentColor;
    font-size: 1.5rem;
}

/* ===============================
   Savings Example
   =============================== */
.savings-example {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.savings-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

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

.savings-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.savings-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.savings-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.savings-item {
    text-align: center;
    flex: 1;
}

.savings-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.savings-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.savings-time {
    font-size: 0.875rem;
    color: #64748b;
}

.savings-vs {
    font-size: 1.25rem;
    font-weight: 800;
    color: #94a3b8;
}

.savings-result {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #10b981;
}

.savings-result strong {
    color: #15803d;
    font-size: 1.1rem;
}

/* ===============================
   Flow Section
   =============================== */
.flow-steps {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.flow-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-step:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.flow-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.flow-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 1rem;
}

.flow-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.flow-time {
    text-align: center;
    color: #dc2626;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.flow-description {
    text-align: center;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.flow-arrow {
    text-align: center;
    font-size: 2.5rem;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-arrow i {
    transform: rotate(-90deg);
}

/* ===============================
   Checklist Section
   =============================== */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.checklist-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3b82f6;
}

.checklist-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.checklist-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.checklist-items li i {
    position: absolute;
    left: 0;
    top: 0.9rem;
    color: #10b981;
    font-size: 1rem;
}

/* ===============================
   Pricing Section
   =============================== */
.pricing-main {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 3px solid #3b82f6;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 4rem;
    font-weight: 800;
    color: #dc2626;
    display: block;
    line-height: 1;
}

.pricing-tax {
    display: block;
    font-size: 1.25rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.pricing-includes {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2rem 0 1rem;
    text-align: center;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

.pricing-list li i {
    position: absolute;
    left: 0;
    top: 0.9rem;
    color: #10b981;
    font-size: 1.25rem;
}

.pricing-additional {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 3px solid #f59e0b;
}

.pricing-subtitle {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    background: #fffbeb;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #fde68a;
    color: #475569;
    font-size: 1.05rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:first-child {
    width: 60%;
    font-weight: 600;
}

.pricing-table td.pricing-value {
    text-align: right;
    font-weight: 800;
    color: #dc2626;
    font-size: 1.375rem;
}

.pricing-example {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 2px solid #e5e7eb;
}

.pricing-example h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.pricing-calculation {
    font-size: 1.125rem;
    color: #475569;
    margin-top: 0.5rem;
}

.pricing-calculation strong {
    color: #dc2626;
    font-size: 1.25rem;
}

.pricing-note {
    background: #fffbeb;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #fbbf24;
    margin-bottom: 2rem;
}

.pricing-note h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-note p {
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.pricing-note strong {
    color: #dc2626;
    font-size: 1.125rem;
}

.pricing-payment {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1.5rem 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #475569;
}

.payment-method i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.payment-note {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
}

/* ===============================
   FAQ Section
   =============================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    border-left: 5px solid #3b82f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.faq-question i {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    flex: 1;
}

.faq-answer {
    padding-left: 3.5rem;
    color: #475569;
    line-height: 1.8;
}

.faq-answer strong {
    color: #1e293b;
    font-weight: 700;
}

/* ===============================
   Warning Section
   =============================== */
.section-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.warning-text {
    color: #991b1b;
    font-weight: 600;
}

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

.warning-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #dc2626;
}

.warning-card.danger {
    border-top-width: 8px;
}

.warning-icon {
    font-size: 3rem;
    color: #dc2626;
    text-align: center;
    margin-bottom: 1.25rem;
}

.warning-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #991b1b;
    text-align: center;
    margin-bottom: 1.5rem;
}

.warning-content {
    color: #475569;
    line-height: 1.7;
}

.warning-risk {
    background: #fef2f2;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #dc2626;
}

.warning-action {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.warning-risk strong,
.warning-action strong {
    color: #991b1b;
    display: block;
    margin-bottom: 0.5rem;
}

.warning-action strong {
    color: #15803d;
}

/* ===============================
   Area Section
   =============================== */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3b82f6;
}

.area-priority {
    border-top-color: #dc2626;
}

.area-available {
    border-top-color: #10b981;
}

.area-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.area-title i {
    color: #3b82f6;
}

.area-priority .area-title i {
    color: #dc2626;
}

.area-available .area-title i {
    color: #10b981;
}

.area-list {
    list-style: none;
}

.area-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

.area-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

.area-note {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 2rem;
    line-height: 1.8;
}

/* ===============================
   Final CTA Section
   =============================== */
.section-final-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
    text-shadow: none;
}

.final-cta-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #475569;
    opacity: 1;
    margin-top: 0.5rem;
    text-shadow: none;
}

.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    color: #1f2937;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.final-cta-text {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.final-cta-contact {
    margin-bottom: 2.5rem;
}

.final-cta-label {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.final-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 1.75rem 2.5rem;
    border-radius: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem auto;
    max-width: 600px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.final-cta-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
}

.final-cta-phone i {
    font-size: 2rem;
    animation: ring 2s ease-in-out infinite;
}

.final-cta-hours {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 600;
}

.final-cta-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.final-cta-feature {
    text-align: center;
}

.final-cta-feature i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 0.75rem;
    display: block;
}

.final-cta-feature span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.6;
}

.final-cta-message {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-top: 2rem;
}

.final-cta-alt {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #64748b;
    font-size: 0.95rem;
}

.final-cta-alt i {
    color: #10b981;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* ===============================
   Button Styles
   =============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-emergency {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* ===============================
   Footer Overrides
   =============================== */
.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin: 0.5rem 0;
}

.footer-contact a {
    color: #3b82f6;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #60a5fa;
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin: 0.5rem 0;
}

.footer-links ul li a {
    color: #cbd5e1;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 768px) {
    .stuck-hero {
        padding: 3rem 0 4rem;
    }

    .stuck-hero-content {
        padding: 0 1rem;
    }

    .stuck-hero-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
    }

    .stuck-hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .stuck-hero-lead {
        font-size: 1rem;
        line-height: 1.8;
    }

    .stuck-hero-lead strong {
        font-size: 1.125rem;
    }

    .emergency-contact-box {
        padding: 1.75rem;
    }

    .emergency-phone {
        font-size: 1.625rem;
        padding: 1.125rem 1.75rem;
        gap: 0.75rem;
    }

    .emergency-phone i {
        font-size: 1.5rem;
    }

    .emergency-features {
        gap: 1rem;
    }

    .emergency-features span {
        font-size: 0.9rem;
    }

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

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .flow-arrow {
        margin: 1rem 0;
    }

    .flow-arrow i {
        transform: rotate(0deg);
    }

    .flow-step {
        min-height: auto;
    }

    .comparison-table-wrapper {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .savings-comparison {
        flex-direction: column;
    }

    .savings-vs {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .final-cta-title {
        font-size: 1.75rem;
        color: #1e293b;
        text-shadow: none;
    }

    .final-cta-subtitle {
        font-size: 1.125rem;
        color: #475569;
    }

    .final-cta-phone {
        font-size: 1.75rem;
        padding: 1.25rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stuck-hero {
        padding: 2.5rem 0 3.5rem;
    }

    .stuck-hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }

    .stuck-hero-title {
        font-size: 1.625rem;
        line-height: 1.35;
        margin-bottom: 1.25rem;
    }

    .stuck-hero-lead {
        font-size: 0.9375rem;
        line-height: 1.75;
    }

    .stuck-hero-lead strong {
        font-size: 1.0625rem;
    }

    .emergency-contact-box {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .emergency-label {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .emergency-phone {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        gap: 0.625rem;
        border-radius: 14px;
    }

    .emergency-phone i {
        font-size: 1.25rem;
    }

    .emergency-features {
        gap: 0.875rem;
        padding-top: 1.25rem;
    }

    .emergency-features span {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .emergency-features i {
        font-size: 1rem;
    }

    .trouble-card,
    .benefit-card,
    .checklist-card,
    .area-card {
        padding: 1.5rem;
    }

    .pricing-price {
        font-size: 3rem;
    }

    .final-cta-box {
        padding: 2rem 1.5rem;
    }
}
