/* ==========================================
   リセット & ベーススタイル
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f97316;
    --danger-color: #dc2626;
    --success-color: #16a34a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --white: #ffffff;
    
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   緊急性バー
========================================== */
.urgency-bar {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.urgency-bar .highlight {
    background: var(--white);
    color: var(--danger-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 16px;
}

/* ==========================================
   ファーストビュー
========================================== */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: var(--white);
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}

.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 1200 120"><path fill="%23ffffff" fill-opacity="0.05" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"/><path fill="%23ffffff" fill-opacity="0.05" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"/><path fill="%23ffffff" fill-opacity="0.05" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"/></svg>') repeat-x bottom;
    background-size: 120% 60px;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 bottom; }
    100% { background-position: 1200px bottom; }
}

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

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

.prehead {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.prehead .emphasis {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.main-headline {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.headline-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.main-headline .red-text {
    color: #fef2f2;
    background: var(--danger-color);
    padding: 0 10px;
    border-radius: 4px;
}

.main-headline .emphasis {
    color: #fef3c7;
    font-weight: 900;
}

.main-headline .big-number {
    display: block;
    font-size: 56px;
    color: #fbbf24;
    margin: 10px 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.subhead {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.subhead .emphasis {
    font-size: 22px;
    font-weight: 700;
    color: #fbbf24;
}

.hero-image {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 1.5s ease-out 0.5s both;
}

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

.hero-image img {
    width: 100%;
}

/* ==========================================
   CTAボタン
========================================== */
.cta-box {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: var(--white);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(249, 115, 22, 0);
    }
}

.cta-icon {
    margin-right: 8px;
}

.cta-arrow {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   共通セクションスタイル
========================================== */
section {
    padding: 80px 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title.white {
    color: var(--white);
}

.section-lead {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.section-lead.white {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   問題提起セクション
========================================== */
.pain-section {
    background: var(--bg-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pain-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--danger-color);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.pain-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.enemy-box {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.enemy-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.enemy-text.large {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.4;
}

.enemy-explanation {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.enemy-detail {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.emphasis {
    font-weight: 700;
    color: #fbbf24;
}

.red-text {
    color: #fca5a5;
}

/* ==========================================
   解決策セクション
========================================== */
.solution-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
}

.new-opportunity {
    max-width: 800px;
    margin: 0 auto 60px;
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.opportunity-card.highlight {
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
}

.opportunity-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.opportunity-card p {
    line-height: 1.8;
}

.arrow-down {
    text-align: center;
    font-size: 36px;
    margin: 20px 0;
}

.quote-box {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 6px solid #fbbf24;
    border-radius: 8px;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

.method-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
}

.method-image {
    max-width: 1000px;
    margin: 0 auto 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.method-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.method-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    color: var(--primary-color);
}

.method-example {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.method-card p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.method-result {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label {
    font-weight: 700;
    color: var(--text-dark);
}

.result-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
}

/* ==========================================
   証拠セクション
========================================== */
.proof-section {
    background: var(--bg-light);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-unit {
    font-size: 36px;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.4;
}

.before-after {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.ba-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.before-after img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    margin: 0 auto 20px;
}

.ba-caption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-section {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    border-left: 6px solid var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    font-size: 48px;
    margin-right: 20px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-result {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================
   オファーセクション
========================================== */
.offer-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: var(--white);
}

.offer-main {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.offer-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 30px;
}

.offer-description {
    font-size: 18px;
    line-height: 1.8;
}

.bonus-section {
    margin-bottom: 60px;
}

.bonus-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.bonus-card.highlight {
    background: rgba(251, 191, 36, 0.2);
    border: 3px solid #fbbf24;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bonus-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-value {
    font-size: 14px;
    color: #fbbf24;
    margin-bottom: 15px;
}

.bonus-card p {
    line-height: 1.8;
}

.guarantee-badge {
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.guarantee-badge img {
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.price-section {
    max-width: 900px;
    margin: 60px auto;
}

.price-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-old,
.price-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.price-new {
    background: rgba(251, 191, 36, 0.2);
    border: 3px solid #fbbf24;
}

.price-label {
    font-size: 16px;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.price-note {
    font-size: 14px;
    opacity: 0.8;
}

.price-arrow {
    font-size: 36px;
}

.price-explanation {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    line-height: 1.8;
}

/* ==========================================
   FAQ セクション
========================================== */
.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    padding: 0 25px 25px;
    border-top: 1px solid var(--bg-light);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    flex: 1;
}

/* ==========================================
   最終CTA セクション
========================================== */
.final-cta-section {
    background: var(--white);
    padding: 80px 20px 100px;
}

.final-cta-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.final-cta-lead {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.choice-card {
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.choice-card.bad {
    background: #fef2f2;
    border: 2px solid #fca5a5;
}

.choice-card.good {
    background: #f0fdf4;
    border: 3px solid #86efac;
}

.choice-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.choice-card p {
    line-height: 1.8;
    color: var(--text-dark);
}

.final-cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--danger-color);
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.required {
    color: var(--danger-color);
    font-size: 14px;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    margin-top: 30px;
    cursor: pointer;
    border: none;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.6;
}

.form-message {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}

.form-message.success {
    background: #d1fae5;
    color: var(--success-color);
}

.form-message.error {
    background: #fee2e2;
    color: var(--danger-color);
}

/* ==========================================
   追伸セクション
========================================== */
.ps-section {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background: #fef3c7;
    border-left: 6px solid var(--accent-color);
    border-radius: 8px;
}

.ps-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.ps-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ==========================================
   フッター
========================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 12px;
    opacity: 0.7;
}

/* ==========================================
   レスポンシブ対応
========================================== */
@media (max-width: 768px) {
    .main-headline {
        font-size: 24px;
    }
    
    .main-headline .big-number {
        font-size: 42px;
    }
    
    .subhead {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-lead {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .pain-grid,
    .method-grid,
    .bonus-grid,
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
    }
    
    .price-arrow {
        transform: rotate(90deg);
    }
    
    .final-cta-box {
        padding: 30px 20px;
    }
    
    .choice-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .urgency-bar {
        font-size: 12px;
        padding: 10px;
    }
    
    .main-headline {
        font-size: 20px;
    }
    
    .main-headline .big-number {
        font-size: 36px;
    }
    
    .hero-image {
        margin: 30px auto;
    }
}
