/* Base Variables & Reset */
:root {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-color: #2563EB;
    /* Blue */
    --accent-gradient: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --accent-shine: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
    --border-color: #e2e8f0;
    --success-color: #10b981;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    --container-width: 1100px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

ul {
    list-style: none;
}

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

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

/* Typography & Utilities */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: #2563EB;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    background: rgba(37, 99, 235, 0.05);
}

.btn-sm:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: #2563EB;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    background: radial-gradient(circle at center top, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

.hero-title {
    font-size: 3.5rem;
    /* Large font for impact */
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.hero-note {
    font-size: 0.875rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.hero-visual {
    max-width: 700px;
    margin: 0 auto;
}

.hero-product-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.problem-card {
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Solution Section */
.solution {
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.solution-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 思考モード切替用の問いかけ（Solution Section内） */
.solution-note {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
}

/* 損失訴求セクション */
.loss-appeal {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* 背景にうっすらとした光の演出を追加 */
.loss-appeal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.loss-appeal-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loss-list {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.loss-item {
    font-size: 1.1rem;
    color: var(--text-secondary);
    /* 悩みは少し暗く、沈んだ色で表現 */
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.8;
    transition: color 0.3s;
}

/* アイコンの代わりに、ミニマルなバーでアクセント */
.loss-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 100%;
    background: var(--border-color);
    border-radius: 4px;
    transition: background 0.3s, height 0.3s;
}

/* ホバー時に少しだけ強調（インタラクション） */
.loss-item:hover {
    color: var(--text-primary);
}

.loss-item:hover::before {
    background: var(--accent-color);
}

.loss-message {
    text-align: center;
    margin-top: 2rem;
}

.loss-question {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: 0.05em;
    /* 問いかけにインパクトを持たせるテキストシャドウ */
    text-shadow: none;
}

@media (max-width: 768px) {
    .loss-question {
        font-size: 1.75rem;
    }
    
    .loss-item {
        font-size: 1rem;
        padding-left: 1.25rem;
    }
}

.cta-subtext {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Origin Story Section */
.origin-story {
    background: #ffffff;
}

.origin-story-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.origin-story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.origin-tagline {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 2rem;
}

/* Data Value Section */
.data-value {
    background: radial-gradient(ellipse at center bottom, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
}

.data-value .section-title {
    line-height: 1.4;
}

.sp-only {
    display: none;
}

.data-value-lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.data-value-lead strong {
    color: var(--text-primary);
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.chart-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.chart-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.chart-image {
    background: #ffffff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.chart-image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.chart-caption {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

.chart-caption strong {
    color: var(--accent-color);
}

.data-value-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(37, 99, 235, 0.05);
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary svg {
    flex-shrink: 0;
}

.data-value-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Features Table */
.feature-block {
    margin-bottom: var(--spacing-lg);
}

.feature-block h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    min-width: 600px;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background: #f1f5f9;
    color: var(--text-secondary);
    font-weight: 500;
}

.target-own,
.target-competitor {
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    background: #f8fafc;
}

.target-own {
    color: var(--text-primary);
}

.target-competitor {
    color: #2563EB;
}

/* Comparison Table */
.comparison-table th,
.comparison-table td {
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
    background: #f8fafc;
}

.th-primary,
.cell-primary {
    background: rgba(37, 99, 235, 0.06) !important;
    border-left: 1px solid rgba(37, 99, 235, 0.15);
    border-right: 1px solid rgba(37, 99, 235, 0.15);
}

.cell-primary {
    color: #1e40af;
    font-weight: bold;
}

.cell-primary strong {
    color: #2563EB;
    font-size: 1.2em;
}

.note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-align: right;
}

/* Target Section */
.target-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.target-list li {
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
}

.check-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.target-list strong {
    color: var(--text-primary);
}

/* Pricing Section */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid #2563EB;
    /* Highlight border */
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
    text-align: center;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.pricing-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--text-primary);
}

.currency {
    font-size: 1.5rem;
    margin-right: 2px;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.price-note {
    color: var(--success-color);
    font-weight: bold;
    margin-top: 0.5rem;
}

.pricing-details {
    text-align: left;
    margin-top: var(--spacing-md);
}

.detail-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.detail-item .label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.detail-item .value {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1rem;
}

.campaign-price {
    color: #dc2626;
}

.arrow {
    color: var(--text-secondary);
}

.badge {
    background: #dc2626;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.detail-note {
    font-size: 0.85rem;
    margin-top: 0.25rem;
    color: var(--text-secondary);
}

/* Flow Section */
.steps {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: var(--spacing-md);
    border-radius: 12px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mid CTA Section */
.cta-mid {
    padding: var(--spacing-lg) 0;
    background: rgba(37, 99, 235, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-mid-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.cta-mid-text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: calc(28px + 0.75rem);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 100px 0;
}

.cta-card {
    background: var(--accent-shine), var(--card-bg);
    border-radius: 30px;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    border: 1px solid var(--accent-color);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-text {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.form-requirements {
    text-align: left;
    display: inline-block;
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.form-requirements ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

.btn-large .icon {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn-large:hover .icon {
    transform: translateX(5px);
}

/* Footer */
.footer {
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Form Page */
.contact-section {
    padding-top: 160px;
    padding-bottom: var(--spacing-xl);
    min-height: calc(100vh - 200px);
}

.contact-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.contact-lead {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.required {
    color: #dc2626;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.optional {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: var(--card-bg);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.radio-label:hover {
    border-color: var(--accent-color);
    background: rgba(37, 99, 235, 0.03);
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--accent-color);
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.radio-label input[type="radio"]:checked + .radio-text {
    color: var(--text-primary);
}

.radio-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.form-submit {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Thanks Page */
.thanks-section {
    padding-top: 160px;
    padding-bottom: var(--spacing-xl);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: var(--spacing-md);
}

.thanks-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thanks-message {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: var(--spacing-lg);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 5rem;
    }

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

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

    .hero-visual {
        max-width: 100%;
        overflow-x: auto;
    }

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

    .pricing-card {
        padding: var(--spacing-md);
    }

    /* Data Value Section - Mobile */
    .sp-only {
        display: inline;
    }

    .data-value .section-title {
        font-size: 1.75rem;
    }

    .data-value-lead {
        font-size: 1rem;
    }

    .charts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .chart-image {
        min-height: 180px;
        padding: 0.75rem;
    }

    .chart-image img {
        max-height: 200px;
    }

    .chart-caption {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .solution-note {
        font-size: 1rem;
    }

    .loss-appeal-question {
        font-size: 1.5rem;
    }

    .loss-appeal-item {
        font-size: 1rem;
    }

    /* Contact Form - Mobile */
    .contact-section {
        padding-top: 120px;
    }

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

    .contact-form {
        padding: var(--spacing-md);
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-label {
        width: 100%;
    }

    /* Thanks Page - Mobile */
    .thanks-section {
        padding-top: 120px;
    }

    .thanks-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }

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