/* ========================================
   リセット＆基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット - ネイビー×白の信頼感あるデザイン */
    --primary-color: #1a2b4a;
    --primary-light: #2c4875;
    --secondary-color: #c29d5a;
    --accent-color: #4a7ba7;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e6ed;
    --overlay-dark: rgba(26, 43, 74, 0.85);
    
    /* タイポグラフィ */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* スペーシング */
    --section-padding: 80px 20px;
    --container-max: 1200px;
    
    /* トランジション */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.header-cta {
    background: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.header-cta:hover {
    background: #a88344;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 157, 90, 0.4);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.95) 0%, rgba(44, 72, 117, 0.95) 100%), url('../images/hero-meeting.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-title-main {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-title-sub {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1.4s ease;
}

.hero-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(194, 157, 90, 0.4);
    animation: fadeInUp 1.6s ease, pulse 2s infinite 3s;
}

.hero-cta i {
    margin-right: 10px;
}

.hero-cta:hover {
    background: #a88344;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(194, 157, 90, 0.5);
}

.hero-notice {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
    animation: fadeInUp 1.8s ease;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   セクション共通スタイル
======================================== */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    line-height: 1.4;
}

.section-title.white {
    color: white;
}

.lead {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 50px;
    color: var(--text-light);
    font-weight: 500;
}

.lead.white {
    color: rgba(255, 255, 255, 0.95);
}

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

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

.problem-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.problem-item i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.problem-item p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

/* ========================================
   ソリューションセクション
======================================== */
.solution {
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4875 100%);
    color: white;
}

.solution-emotion {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin: 40px 0;
    font-family: var(--font-serif);
}

.solution-bridge {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    backdrop-filter: blur(10px);
}

.solution-bridge p {
    font-size: 20px;
    font-weight: 500;
}

/* ========================================
   価値提案セクション
======================================== */
.value-prop {
    background: white;
}

.value-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.value-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.value-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.value-image:hover {
    transform: scale(1.05);
}

.value-text-wrapper {
    padding: 20px;
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
}

.value-text {
    font-size: 18px;
    line-height: 2;
}

.value-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.value-box p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 2;
}

.value-highlight {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--primary-color);
}

.value-highlight span {
    color: var(--primary-color);
    background: linear-gradient(transparent 60%, #ffeaa7 60%);
    padding: 0 5px;
}

/* ========================================
   実績・事例セクション
======================================== */
.results {
    background: var(--bg-light);
}

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

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

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

.result-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.result-header i {
    font-size: 40px;
    color: var(--accent-color);
}

.result-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.result-achievement {
    background: linear-gradient(135deg, #1a2b4a 0%, #4a7ba7 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.result-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.result-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
}

.results-bridge {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.results-bridge p {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   メソッド紹介セクション
======================================== */
.method {
    background: white;
}

.method-intro {
    text-align: center;
    margin-bottom: 50px;
}

.method-text {
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.8;
}

.comparison-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.comparison-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-card.old {
    border: 3px solid #e74c3c;
}

.comparison-card.new {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.03) 0%, rgba(74, 123, 167, 0.05) 100%);
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-card.old h3 {
    color: #e74c3c;
}

.comparison-card.new h3 {
    color: var(--primary-color);
}

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

.comparison-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.comparison-arrow {
    font-size: 40px;
    color: var(--accent-color);
}

.method-box {
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4875 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
    margin-bottom: 50px;
}

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

.method-steps {
    display: grid;
    gap: 30px;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.method-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.method-step-number {
    background: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.method-step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.method-step-content p {
    opacity: 0.9;
}

.method-conclusion {
    text-align: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.method-highlight {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.6;
}

/* ========================================
   体験会紹介セクション
======================================== */
.experience {
    background: linear-gradient(135deg, #2c4875 0%, #4a7ba7 100%);
    color: white;
}

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

.experience-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin-bottom: 40px;
}

.experience-image {
    width: 100%;
    height: auto;
    display: block;
}

.experience-intro {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.9;
}

.experience-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.experience-feature i {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.experience-feature p {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

.experience-quote {
    font-size: 22px;
    font-style: italic;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.experience-note {
    font-size: 24px;
    font-weight: 700;
}

.highlight-text {
    font-size: 32px;
    color: #ffe066;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ========================================
   特典セクション
======================================== */
.benefits {
    background: white;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-lead {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 20px;
}

.benefits-highlight {
    font-size: 24px;
    color: var(--primary-color);
    background: linear-gradient(transparent 60%, #ffeaa7 60%);
    padding: 0 8px;
}

.benefits-features {
    max-width: 900px;
    margin: 0 auto 60px;
}

.benefit-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-feature-icon {
    flex-shrink: 0;
}

.benefit-feature-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.benefit-feature-text h3 {
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 700;
}

.benefits-message {
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.03) 0%, rgba(74, 123, 167, 0.05) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    border: 3px solid var(--accent-color);
}

.benefits-text {
    font-size: 22px;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-color);
}

.benefits-emphasis {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-serif);
}

.benefits-bridge {
    text-align: center;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.benefits-bridge p {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   限定性・緊急性セクション
======================================== */
.urgency {
    background: var(--bg-light);
}

.urgency-content {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.urgency-box i {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 20px;
    line-height: 1.8;
}

.urgency-warning {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.urgency-warning i {
    font-size: 30px;
}

.urgency-warning p {
    font-size: 18px;
    font-weight: 700;
}

/* ========================================
   ストーリーセクション
======================================== */
.story {
    background: white;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-profile {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.story-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-serif);
}

.story-text {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 15px;
    line-height: 2;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.story-decision {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid var(--accent-color);
}

.story-mission {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0;
    font-family: var(--font-serif);
}

.story-message {
    text-align: center;
    margin-top: 40px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   最終CTAセクション
======================================== */
.final-cta {
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4875 100%);
    color: white;
    padding: 100px 20px;
}

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

.final-cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 2;
}

.final-cta-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.final-cta-box p {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
}

.final-cta-warning {
    font-size: 22px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.final-cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.final-cta-button i {
    margin-right: 12px;
}

.final-cta-button:hover {
    background: #a88344;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.final-cta-details {
    margin-top: 25px;
    font-size: 16px;
    opacity: 0.9;
}

.final-message {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.final-message p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-copyright {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ========================================
   スクロールトップボタン
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 15px;
    }
    
    .header-container {
        padding: 15px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .header-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-cta {
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-image-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-card {
        padding: 25px;
    }
    
    .comparison-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        font-size: 30px;
    }
    
    .benefit-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .benefit-feature-item:hover {
        transform: translateY(-5px);
    }
    
    .benefits-message {
        padding: 35px 25px;
    }
    
    .method-box {
        padding: 30px 20px;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
    }
    
    .method-step:hover {
        transform: translateY(-5px);
    }
    
    .story-profile {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .story-text {
        padding: 30px 20px;
    }
    
    .final-cta {
        padding: 60px 15px;
    }
    
    .final-cta-button {
        padding: 20px 40px;
        font-size: 16px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .value-box {
        padding: 25px 20px;
    }
    
    .urgency-box {
        padding: 25px 20px;
    }
    
    .urgency-warning {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}