/* File2u.link 期限付きファイル共有 LP
   Design: contract.htmlと同一レイアウト
   Color: Deep Emerald Green scheme
          (#065f46 primary / #2563eb accent-blue / #b45309 CTA amber)
          ※ 他3LPとは完全に異なる緑系基調
*/

:root {
    --primary: #065f46;
    --primary-mid: #047857;
    --primary-light: #059669;
    --primary-dark: #022c22;
    --primary-bg: #d1fae5;
    --primary-bg-light: #ecfdf5;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --cta: #b45309;
    --cta-light: #d97706;
    --text: #111827;
    --text-mid: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-bg: #f8fafc;
    --border: #a7f3d0;
    --red-warn: #dc2626;
}

* { padding: 0; margin: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 15px;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
p { margin: 0; }

/* ===== Nav ===== */
.lp-nav {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(6,95,70,0.07);
}
.lp-nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.lp-logo img { height: 30px; }
.lp-nav-links { display: flex; align-items: center; gap: 28px; }
.lp-nav-links a { font-size: 14px; font-weight: 700; color: var(--text); }
.lp-nav-links a:hover { color: var(--primary-light); }
.btn-nav {
    background: var(--cta); color: var(--white) !important;
    padding: 8px 20px; border-radius: 6px; font-weight: 700; transition: background 0.2s;
}
.btn-nav:hover { background: var(--primary) !important; }

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block; background: var(--primary); color: var(--white) !important;
    padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 15px;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
    display: inline-block; background: var(--white); color: var(--primary) !important;
    padding: 13px 36px; border-radius: 8px; font-weight: 700; font-size: 15px;
    border: 2px solid var(--primary); transition: all 0.2s;
}
.btn-secondary:hover { background: var(--primary-bg); transform: translateY(-1px); }
.btn-cta {
    display: inline-block; background: var(--cta); color: var(--white) !important;
    padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 15px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 18px rgba(180,83,9,0.35);
}
.btn-cta:hover { background: var(--cta-light); transform: translateY(-1px); }
.btn-large { padding: 18px 56px !important; font-size: 17px !important; }

/* ===== Shared Section ===== */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 88px 32px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 32px; font-weight: 900; line-height: 1.45; margin-bottom: 18px; }
.section-header p { font-size: 15px; color: var(--text-light); line-height: 1.9; }
.section-header p + p { margin-top: 8px; }
.section-tag {
    display: inline-block; font-size: 12px; font-weight: 700;
    background: var(--primary-bg); color: var(--primary-dark);
    padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
    letter-spacing: 0.5px; border: 1px solid #6ee7b7;
}

/* ===== 1. Hero ===== */
.hero-section {
    background: linear-gradient(180deg, #d1f5e8 0%, #e8fdf5 50%, #ffffff 100%);
    border-bottom: 3px solid var(--primary-light);
    position: relative; overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; top: -180px; right: -180px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(5,150,105,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: ''; position: absolute; bottom: 0; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1000px; margin: 0 auto;
    padding: 80px 32px 0;
    text-align: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700;
    background: var(--primary); color: var(--white);
    padding: 6px 18px; border-radius: 20px; margin-bottom: 28px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(6,95,70,0.35);
}
.hero-text h1 {
    font-size: 52px; font-weight: 900; line-height: 1.3;
    margin-bottom: 22px; color: var(--primary-dark);
    letter-spacing: -0.5px;
}
.hero-text h1 em {
    font-style: normal; color: var(--cta);
    background: linear-gradient(transparent 72%, rgba(180,83,9,0.15) 72%);
}
.hero-sub {
    font-size: 17px; color: var(--text-mid); line-height: 1.85;
    margin: 0 auto 32px; max-width: 700px;
}
.hero-chips {
    display: flex; gap: 12px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 40px;
}
.hero-chip {
    background: var(--white); border: 1.5px solid var(--border);
    padding: 9px 20px; border-radius: 100px;
    font-size: 13px; font-weight: 700; color: var(--primary);
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 2px 10px rgba(6,95,70,0.07);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-chip:hover { border-color: var(--primary-light); box-shadow: 0 4px 14px rgba(5,150,105,0.18); }
.hero-chip-check { color: var(--cta); font-weight: 900; font-size: 15px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; }
.hero-note {
    font-size: 13px; color: var(--text-light); margin-bottom: 56px; line-height: 1.7;
}
.hero-visual {
    max-width: 740px; margin: 0 auto;
    border-radius: 16px 16px 0 0; overflow: hidden;
    box-shadow: 0 -6px 40px rgba(6,95,70,0.14), 0 -2px 12px rgba(6,95,70,0.08);
}
.hero-diagram-img { width: 100%; height: auto; display: block; }

/* ===== 2. Problems ===== */
.problem-section { background: var(--gray-bg); }
.problem-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 48px;
}
.problem-item {
    background: var(--white); border-radius: 12px; padding: 20px 22px;
    display: flex; align-items: flex-start; gap: 16px;
    border-left: 4px solid var(--red-warn);
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.problem-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.problem-item-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.problem-item-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text-mid); }
.problem-item-body p { font-size: 13px; color: var(--text-light); line-height: 1.65; }
.problem-summary {
    background: var(--white); border-radius: 12px; padding: 28px 40px;
    border-left: 4px solid var(--primary); box-shadow: 0 2px 12px rgba(0,0,0,0.06); text-align: center;
}
.problem-summary p { font-size: 15px; font-weight: 700; line-height: 1.9; }
.problem-summary p + p { margin-top: 8px; font-weight: 400; font-size: 14px; color: var(--text-light); }

/* ===== 3. Solution ===== */
.solution-section { background: var(--white); }
.solution-section .section-header h2 { color: var(--primary-dark); }
.feat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 80px;
}
.feat-card {
    background: var(--primary-bg-light); border-radius: 12px; padding: 18px 20px;
    display: flex; align-items: flex-start; gap: 14px;
    border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(6,95,70,0.12); }
.feat-icon { width: 44px; height: 44px; flex-shrink: 0; }
.feat-icon img { width: 100%; height: 100%; object-fit: contain; }
.feat-body h3 { font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--primary-dark); }
.feat-body p { font-size: 12px; color: var(--text-light); line-height: 1.65; }

/* ===== 4. Benefits ===== */
.benefit-section { background: var(--primary-bg-light); }
.benefit-section .section-inner { padding: 88px 32px 96px; }
.benefit-rows {
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 6px 28px rgba(6,95,70,0.1); border: 1px solid var(--border);
}
.benefit-row {
    display: grid; grid-template-columns: 100px 1fr; gap: 40px;
    padding: 40px 52px; align-items: center;
    background: var(--white); border-bottom: 1px solid var(--border);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-row-alt { background: var(--gray-bg); }
.benefit-row-num {
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--primary-bg); border: 3px solid var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 900; color: var(--primary); flex-shrink: 0;
}
.benefit-row-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--primary-dark); }
.benefit-row-body p { font-size: 14px; color: var(--text-light); line-height: 1.85; }

/* ===== 5. Usecases ===== */
.usecase-section { background: var(--white); }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.usecase-card {
    background: var(--gray-bg); border-radius: 14px; padding: 28px 22px;
    border-left: 4px solid var(--primary-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.usecase-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(6,95,70,0.1); }
.usecase-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.usecase-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--primary-dark); }
.usecase-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== 6. Steps ===== */
.steps-section { background: linear-gradient(150deg, #022c22 0%, #065f46 100%); }
.steps-section .section-inner { padding: 88px 32px; }
.steps-section .section-header h2 { color: var(--white); }
.steps-section .section-header p { color: rgba(255,255,255,0.7); }
.steps-pipeline {
    display: flex; align-items: flex-start; gap: 0; position: relative;
}
.steps-pipeline::before {
    content: ''; position: absolute; top: 31px; left: 16.5%; right: 16.5%;
    height: 3px; background: rgba(255,255,255,0.18); z-index: 0;
}
.step-node {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative; z-index: 1; padding: 0 12px;
}
.step-circle {
    width: 64px; height: 64px; background: var(--cta); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(180,83,9,0.45); border: 3px solid rgba(253,230,138,0.4);
}
.step-icon-em { font-size: 36px; margin-bottom: 10px; }
.step-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.step-body h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.step-body p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.75; }

/* ===== 7. Comparison ===== */
.comparison-section { background: var(--gray-bg); }
.comparison-section .section-header h2 { color: var(--text); }
.comparison-table-wrap { overflow-x: auto; margin-bottom: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); }
.comparison-table thead th { padding: 16px 14px; font-size: 13px; font-weight: 700; text-align: left; vertical-align: middle; }
.comparison-table th:first-child { background: #f0fdf4; color: var(--text); width: 18%; }
.comparison-table th.col-old { background: #f5f5f5; color: #777; width: 15%; }
.comparison-table th.col-transfer { background: #fff7ed; color: #92400e; width: 20%; }
.comparison-table th.col-cloud { background: #f8f8f8; color: #666; width: 17%; }
.comparison-table th.col-new { background: var(--primary); color: var(--white); width: 30%; }
.comparison-table tbody td { padding: 12px 14px; font-size: 13px; border-top: 1px solid var(--border); vertical-align: middle; line-height: 1.55; }
.comparison-table tbody td:first-child { font-weight: 700; background: #f8fdfb; }
.comparison-table tbody td.col-old { color: #888; }
.comparison-table tbody td.col-transfer { color: #92400e; background: #fffbf5; }
.comparison-table tbody td.col-cloud { color: #888; }
.comparison-table tbody td.col-new { color: var(--primary-dark); font-weight: 600; }
.comparison-table tbody tr:hover td { background: rgba(6,95,70,0.025); }
.comparison-table tbody tr:hover td:first-child { background: #edfdf5; }
.comparison-table tbody tr:hover td.col-transfer { background: #fff8f0; }
.comparison-note {
    background: var(--white); border-radius: 12px; padding: 20px 32px;
    font-size: 14px; color: var(--text-light); border-left: 4px solid var(--primary-light); line-height: 1.8;
}

/* ===== 8. Security ===== */
.security-section { background: var(--white); }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.security-card {
    background: var(--primary-bg-light); border-radius: 14px; padding: 28px 22px;
    border-top: 4px solid var(--primary-light);
    box-shadow: 0 2px 14px rgba(0,0,0,0.05); transition: transform 0.2s;
}
.security-card:hover { transform: translateY(-3px); }
.security-icon { width: 52px; height: 52px; margin-bottom: 16px; }
.security-icon img { width: 100%; height: 100%; object-fit: contain; }
.security-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--primary-dark); }
.security-card p { font-size: 14px; color: var(--text-light); line-height: 1.75; }
.security-footnote {
    margin-top: 40px; text-align: center;
    font-size: 14px; color: var(--text-light); line-height: 1.9;
}
.security-footnote a { color: var(--primary); text-decoration: underline; }

/* ===== 9. Examples ===== */
.example-section { background: var(--gray-bg); }
.example-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.example-tab {
    padding: 9px 22px; border-radius: 8px; font-size: 13px; font-weight: 700;
    border: 2px solid var(--border); background: var(--white); color: var(--text-light);
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.example-tab.active, .example-tab:hover { border-color: var(--primary-light); color: var(--primary); background: var(--primary-bg); }
.example-panel { display: none; }
.example-panel.active { display: block; }
.example-box {
    border: 2px solid var(--border); border-radius: 14px; overflow: hidden;
    max-width: 720px; margin: 0 auto 20px; box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
.example-label {
    background: var(--primary); color: var(--white); font-size: 13px; font-weight: 700;
    padding: 10px 22px; display: flex; align-items: center; gap: 8px;
}
.example-label::before { content: '⏱'; font-size: 14px; }
.example-text { padding: 26px 30px; background: var(--white); font-size: 14px; line-height: 2.1; color: var(--text); }
.example-text p { margin-bottom: 14px; }
.example-text p:last-child { margin-bottom: 0; }
.example-url {
    color: var(--primary-dark); font-weight: 700; background: var(--primary-bg);
    padding: 3px 10px; border-radius: 5px; font-family: 'Courier New', monospace; font-size: 13px;
}
.example-note { text-align: center; font-size: 14px; color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.8; }

/* ===== 10. Pricing / Merit ===== */
.pricing-section { background: var(--primary-bg-light); }
.pricing-section .section-header h2 { color: var(--primary-dark); }
.pricing-cta { display: flex; gap: 20px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.pricing-note { text-align: center; font-size: 14px; color: var(--text-light); margin-bottom: 72px; line-height: 1.7; }
.merit-divider { border: none; border-top: 2px solid var(--border); margin: 0 0 60px; }
.merit-heading { text-align: center; margin-bottom: 40px; }
.merit-heading h3 { font-size: 26px; font-weight: 900; color: var(--primary-dark); line-height: 1.45; }
.merit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.merit-card {
    background: var(--white); border-radius: 12px; padding: 22px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-bottom: 3px solid var(--primary-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.merit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(6,95,70,0.1); }
.merit-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.merit-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--primary-dark); }
.merit-card p { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ===== 11. FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; padding: 22px 4px; display: flex; justify-content: space-between;
    align-items: center; background: none; border: none; cursor: pointer;
    text-align: left; font-size: 15px; font-weight: 700; color: var(--text);
    font-family: inherit; gap: 16px; transition: color 0.2s;
}
.faq-question:hover { color: var(--primary-light); }
.faq-question-text { flex: 1; }
.faq-toggle {
    width: 30px; height: 30px; background: var(--primary); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 400; flex-shrink: 0; line-height: 1;
    transition: background 0.2s, transform 0.25s;
}
.faq-item.open .faq-toggle { background: var(--cta); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 4px 22px; font-size: 14px; color: var(--text-light); line-height: 1.85; }
.faq-answer.open { display: block; }
.faq-answer a { color: var(--primary); text-decoration: underline; }

/* ===== 12. Final CTA ===== */
.final-cta-section {
    background: var(--primary-dark);
    text-align: center; position: relative; overflow: hidden;
}
.final-cta-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; background: rgba(5,150,105,0.15);
    border-radius: 50%; pointer-events: none;
}
.final-cta-section::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px; background: rgba(37,99,235,0.08);
    border-radius: 50%; pointer-events: none;
}
.final-cta-section .section-inner { padding: 100px 32px; position: relative; z-index: 1; }
.final-cta-section h2 { font-size: 34px; font-weight: 900; margin-bottom: 20px; color: var(--white); line-height: 1.4; }
.final-cta-section .lead { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.9; margin-bottom: 48px; display: block; }
.final-cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.final-cta-section .btn-cta { font-size: 17px; padding: 18px 52px; }
.final-cta-section .btn-secondary { font-size: 17px; padding: 16px 52px; border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9) !important; }
.final-cta-section .btn-secondary:hover { background: rgba(255,255,255,0.08); }
.final-note { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.7; }

/* ===== Footer ===== */
footer { background: #011a11; color: rgba(255,255,255,0.75); }
.site-footer { padding: 64px 32px 40px; max-width: 1100px; margin: 0 auto; }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-column h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 9px; }
.footer-column a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-column a:hover { color: var(--white); }
.copyright { display: block; text-align: center; padding: 20px 32px; font-size: 13px; color: rgba(255,255,255,0.38); border-top: 1px solid rgba(255,255,255,0.1); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .problem-list { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .usecase-grid { grid-template-columns: repeat(2, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .merit-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-text h1 { font-size: 40px; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
    .benefit-row { padding: 32px 36px; gap: 28px; }
}
@media (max-width: 768px) {
    .hero-text h1 { font-size: 30px; }
    .hero-inner { padding: 56px 20px 0; }
    .section-inner { padding: 64px 20px; }
    .section-header h2 { font-size: 24px; }
    .feat-grid { grid-template-columns: 1fr; }
    .usecase-grid { grid-template-columns: 1fr; }
    .steps-pipeline { flex-direction: column; gap: 32px; }
    .steps-pipeline::before { display: none; }
    .step-node { flex-direction: row; text-align: left; gap: 20px; }
    .step-circle { margin-bottom: 0; flex-shrink: 0; }
    .step-body { flex: 1; }
    .security-grid { grid-template-columns: 1fr; }
    .merit-grid { grid-template-columns: 1fr 1fr; }
    .footer-columns { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .pricing-cta { flex-direction: column; align-items: center; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .final-cta-section h2 { font-size: 26px; }
    .lp-nav-links a:not(.btn-nav) { display: none; }
    .problem-summary { padding: 24px 20px; }
    .benefit-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 24px; }
    .benefit-row-num { width: 56px; height: 56px; font-size: 18px; }
    .comparison-table th, .comparison-table td { font-size: 12px; padding: 10px; }
    .hero-chips { gap: 8px; }
    .hero-chip { font-size: 12px; padding: 7px 14px; }
}
@media (max-width: 480px) {
    .hero-text h1 { font-size: 24px; }
    .section-header h2 { font-size: 22px; }
    .feat-grid { grid-template-columns: 1fr; }
    .merit-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr; }
    .btn-large { padding: 16px 32px !important; font-size: 15px !important; }
    .comparison-table th.col-transfer, .comparison-table td.col-transfer,
    .comparison-table th.col-cloud, .comparison-table td.col-cloud { display: none; }
    .hero-chip { font-size: 11px; padding: 6px 12px; }
}
