/* ===============================
   屋根雪下ろしページ専用CSS
   パターンB: 安心・信頼重視型
   =============================== */

/* ===============================
   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 - 安心・信頼重視型
   =============================== */
.roof-hero {
    /* 背景画像 + オーバーレイ（car-stuck-rescueと同じ透過率） */
    background:
        linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(59, 130, 246, 0.2) 100%),
        url('../images/roof-hero-bg.webp') center center / cover no-repeat;
    /* フォールバック（画像が読み込めない場合） */
    background-color: #1e40af;
    color: white;
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

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

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

.roof-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.roof-hero-badge i {
    color: #fbbf24;
}

.roof-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    /* 背景が明るいため、影を強化 */
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3);
}

.roof-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    /* 背景が明るいため、文字の視認性を上げる */
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Hero CTA Box */
.hero-cta-box {
    background: white;
    color: #1f2937;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    max-width: 550px;
    margin: 0 auto;
}

.hero-cta-label {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

.cta-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #06c755;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-line:hover {
    background: #05b84f;
    transform: translateY(-2px);
}

.hero-cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

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

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

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

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

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===============================
   Danger Section - 屋根雪の危険性
   =============================== */
.danger-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

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

.danger-card {
    background: white;
    padding: 1.75rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #dc2626;
    transition: all 0.3s ease;
}

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

.danger-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.danger-card-icon i {
    font-size: 1.75rem;
    color: #dc2626;
}

.danger-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.danger-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.danger-card ul {
    list-style: none;
    margin-top: 1rem;
}

.danger-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
}

.danger-card ul li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

/* Weight Info Box */
.weight-info-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #fbbf24;
    margin-top: 2rem;
}

.weight-info-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weight-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.weight-table th,
.weight-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #fde68a;
}

.weight-table th {
    background: #fbbf24;
    color: #78350f;
    font-weight: 700;
}

.weight-table td {
    color: #475569;
}

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

/* Weight Example */
.weight-example {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 10px;
    border: 2px dashed #f59e0b;
}

.weight-example > p:first-child {
    font-size: 1rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.weight-example ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.weight-example li {
    padding: 0.5rem 0;
    color: #475569;
    border-bottom: 1px dashed #fde68a;
}

.weight-example li:last-child {
    border-bottom: none;
}

.weight-example li strong {
    color: #dc2626;
    font-size: 1.1rem;
}

.weight-warning {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.weight-warning i {
    margin-right: 0.5rem;
}

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

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

.pricing-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.pricing-card.featured {
    border-color: #3b82f6;
    position: relative;
}

.pricing-card.featured::before {
    content: '人気';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.375rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing-card-size {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.pricing-card-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.pricing-card-note {
    font-size: 0.85rem;
    color: #64748b;
}

/* Additional Pricing */
.pricing-additional {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

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

.pricing-additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.pricing-additional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.pricing-additional-item span:first-child {
    color: #475569;
    font-weight: 500;
}

.pricing-additional-item span:last-child {
    color: #dc2626;
    font-weight: 700;
}

/* Pricing Example */
.pricing-example {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.pricing-example h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-example h4 i {
    color: #3b82f6;
}

.example-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.example-table th,
.example-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.example-table th {
    background: #f1f5f9;
    color: #475569;
    font-weight: 600;
}

.example-table td {
    color: #1e293b;
}

.example-table td strong {
    color: #dc2626;
    font-size: 1.1rem;
}

.example-note {
    background: #fefce8;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #854d0e;
    font-size: 0.95rem;
    margin: 0;
}

.example-note i {
    margin-right: 0.5rem;
    color: #ca8a04;
}

.example-note a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: underline;
}

.example-note a:hover {
    color: #1e40af;
}

/* Pricing Note */
.pricing-note {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    text-align: center;
}

.pricing-note p {
    color: #1e40af;
    font-weight: 500;
}

/* ===============================
   Service Content Section
   =============================== */
.service-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-content-card {
    background: white;
    padding: 1.75rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
}

.service-content-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content-card h3 i {
    color: #3b82f6;
}

.service-content-card ul {
    list-style: none;
}

.service-content-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

.service-content-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 0.85rem;
}

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

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

.area-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-card h3 i {
    color: #dc2626;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-list span {
    background: #f1f5f9;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #475569;
}

.area-note {
    background: #eff6ff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.area-note p {
    color: #334155;
    line-height: 1.8;
    margin: 0;
}

.area-note i {
    color: #3b82f6;
    margin-right: 0.5rem;
}

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

.diy-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.diy-intro p {
    color: #475569;
    line-height: 1.8;
}

/* Safety Equipment */
.safety-equipment {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.safety-equipment h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.safety-equipment h3 i {
    color: #dc2626;
}

.safety-table {
    width: 100%;
    border-collapse: collapse;
}

.safety-table th,
.safety-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.safety-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 700;
}

.safety-table td {
    color: #475569;
}

.safety-table .required {
    color: #dc2626;
    font-weight: 700;
}

.safety-table .recommended {
    color: #f59e0b;
    font-weight: 600;
}

/* Accident Stats */
.accident-stats {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 3px solid #dc2626;
}

.accident-stats h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accident-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accident-stat {
    text-align: center;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 10px;
}

.accident-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #dc2626;
    display: block;
}

.accident-stat-label {
    font-size: 0.9rem;
    color: #991b1b;
    font-weight: 600;
}

.accident-patterns {
    list-style: none;
}

.accident-patterns li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    border-bottom: 1px solid #fee2e2;
}

.accident-patterns li:last-child {
    border-bottom: none;
}

.accident-patterns li::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #dc2626;
}

/* When to Call Pro */
.when-to-call-pro {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #10b981;
}

.when-to-call-pro h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.when-to-call-pro ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.when-to-call-pro ul li {
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: #166534;
    background: white;
    border-radius: 8px;
    font-weight: 500;
}

.when-to-call-pro ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    color: #10b981;
}

.when-to-call-pro .cta-message {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #15803d;
}

/* ===============================
   Why Choose Us Section
   =============================== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

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

.reason-icon i {
    font-size: 1.75rem;
    color: white;
}

.reason-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.reason-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.reason-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.reason-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    font-size: 0.9rem;
}

.reason-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 0.8rem;
}

/* ===============================
   FAQ Section
   =============================== */
.section-faq {
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

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

.faq-question i.fa-chevron-down {
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-question.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.25rem 1.5rem;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.faq-answer p {
    color: #334155;
    line-height: 1.8;
}

/* ===============================
   Final CTA Section
   =============================== */
.section-final-cta {
    background: #f8fafc;
    padding: 4rem 0;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.final-cta-price {
    margin-bottom: 1.5rem;
}

.final-cta-price-label {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

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

.final-cta-price-value span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.final-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.final-cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.final-cta-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #06c755;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.final-cta-line:hover {
    background: #05b84f;
    transform: translateY(-2px);
}

.final-cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.final-cta-feature i {
    color: #10b981;
}

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

    .roof-hero-title {
        font-size: 1.75rem;
    }

    .roof-hero-subtitle {
        font-size: 1rem;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .pricing-card-price {
        font-size: 2rem;
    }

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

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

    .final-cta-price-value {
        font-size: 2rem;
    }

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

    .accident-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .roof-hero-title {
        font-size: 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .hero-cta-box {
        padding: 1.5rem;
    }

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

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