/* File2u.link 請求書回収 LP */

:root {
    --primary: #1565c0;
    --primary-light: #1e88e5;
    --primary-dark: #0d47a1;
    --primary-bg: #e8f0fe;
    --primary-bg-light: #f0f7ff;
    --accent: #ff6b35;
    --text: #222222;
    --text-light: #555555;
    --white: #ffffff;
    --gray-bg: #f5f7fa;
    --border: #dde6f0;
    --shadow: rgba(21,101,192,0.1);
}

* { 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; }

/* ===== Navigation ===== */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.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); }
.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.2s;
}
.btn-nav:hover { background: var(--primary-dark) !important; }

/* ===== Shared Buttons ===== */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white) !important;
    padding: 14px 32px;
    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 32px;
    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(--accent);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: #e55a2b; transform: translateY(-1px); }
.btn-large { padding: 18px 52px !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: 60px; }
.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; }

/* ===== 1. Hero ===== */
.hero-section {
    background: linear-gradient(140deg, #0d47a1 0%, #1565c0 45%, #1976d2 100%);
    overflow: hidden;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 88px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-label {
    font-size: 12px;
    font-weight: 700;
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.95);
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.25);
}
.hero-text h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 22px;
    color: var(--white);
}
.hero-text h1 span {
    color: #ffd600;
    border-bottom: 3px solid #ffd600;
    padding-bottom: 2px;
}
.hero-sub {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.95);
}
.hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
    margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-cta .btn-primary {
    background: #ffd600;
    color: #0d47a1 !important;
    box-shadow: 0 4px 16px rgba(255,214,0,0.35);
}
.hero-cta .btn-primary:hover { background: #ffc400; }
.hero-cta .btn-secondary {
    border-color: rgba(255,255,255,0.55);
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
}
.hero-cta .btn-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    background: rgba(0,0,0,0.18);
    padding: 12px 18px;
    border-radius: 8px;
    display: inline-block;
    border-left: 3px solid rgba(255,214,0,0.6);
}

/* Hero Illustration */
.hero-visual { position: relative; }
.hero-diagram-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-illustration {
    display: flex;
    align-items: center;
    gap: 18px;
}
.ill-col {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 20px 16px;
    backdrop-filter: blur(4px);
}
.ill-col-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 0;
    margin-bottom: 14px;
    border-radius: 6px;
}
.ill-col-label.bad { background: rgba(239,83,80,0.3); color: #ffcdd2; }
.ill-col-label.good { background: rgba(76,175,80,0.3); color: #c8e6c9; }
.ill-email-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.ill-email {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    padding: 6px 9px;
    border-radius: 7px;
    font-size: 11px;
    color: rgba(255,255,255,0.88);
}
.ill-email.tilt1 { transform: rotate(-2deg); opacity: 0.75; }
.ill-email.tilt2 { transform: rotate(2.5deg); opacity: 0.65; }
.ill-email-icon { font-size: 13px; flex-shrink: 0; }
.ill-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ill-tag {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}
.ill-tag.bad-tag { background: rgba(239,83,80,0.3); color: #ffcdd2; }
.ill-tag.good-tag { background: rgba(76,175,80,0.3); color: #c8e6c9; }
.ill-box {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
}
.ill-box-header {
    font-size: 12px;
    font-weight: 700;
    color: #ffd600;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
    margin-bottom: 10px;
}
.ill-file-list { display: flex; flex-direction: column; gap: 6px; }
.ill-file {
    font-size: 11px;
    color: rgba(255,255,255,0.88);
    background: rgba(76,175,80,0.2);
    padding: 5px 8px;
    border-radius: 5px;
}
.ill-arrow { font-size: 28px; color: #ffd600; font-weight: 900; flex-shrink: 0; }

/* ===== 2. Problem ===== */
.problem-section { background: var(--gray-bg); }
.problem-section .section-header h2 { color: var(--text); }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}
.problem-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border-top: 4px solid #ef5350;
    transition: transform 0.2s;
}
.problem-card:hover { transform: translateY(-3px); }
.problem-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.problem-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.problem-summary {
    text-align: center;
    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);
}
.problem-summary p { font-size: 15px; font-weight: 700; line-height: 1.9; }

/* ===== 3. Solution ===== */
.solution-section { background: var(--white); }
.solution-section .section-header h2 { color: var(--primary-dark); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 88px;
}
.feature-card {
    background: var(--primary-bg-light);
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    border: 1px solid #c5d8f7;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(21,101,192,0.15); }
.feature-icon { width: 54px; height: 54px; margin: 0 auto 14px; }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card h3 { font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.feature-card p { font-size: 12px; color: var(--text-light); line-height: 1.65; }

.benefit-heading { text-align: center; margin-bottom: 44px; }
.benefit-heading h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; color: var(--primary-dark); }
.benefit-heading p { font-size: 15px; color: var(--text-light); }
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.benefit-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.07);
    border: 1px solid var(--border);
}
.benefit-num {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.benefit-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { font-size: 14px; color: var(--text-light); line-height: 1.75; }

/* ===== 4. Comparison ===== */
.comparison-section { background: var(--primary-bg-light); }
.comparison-section .section-header h2 { color: var(--primary-dark); }
.comparison-table-wrap { overflow-x: auto; margin-bottom: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.09); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); }
.comparison-table thead tr th {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}
.comparison-table th:first-child { background: #f0f4f8; color: var(--text); width: 28%; }
.comparison-table th.col-bad { background: #f5f5f5; color: #666; }
.comparison-table th.col-good { background: var(--primary); color: var(--white); }
.comparison-table tbody tr td {
    padding: 15px 22px;
    font-size: 14px;
    border-top: 1px solid var(--border);
    vertical-align: middle;
}
.comparison-table tbody tr td:first-child { font-weight: 700; background: #f8fafc; }
.comparison-table tbody tr td.col-bad { color: #888; }
.comparison-table tbody tr td.col-good { color: var(--primary-dark); font-weight: 600; }
.comparison-table tbody tr:hover td { background: rgba(21,101,192,0.025); }
.comparison-table tbody tr:hover td:first-child { background: #f0f4f8; }
.comparison-note {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 32px;
    font-size: 14px;
    color: var(--text-light);
    border-left: 4px solid var(--primary);
    line-height: 1.8;
}

/* ===== 5. Use Cases ===== */
.usecase-section { background: var(--white); }
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.usecase-card {
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.usecase-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(21,101,192,0.12);
    transform: translateY(-3px);
}
.usecase-icon { font-size: 38px; margin-bottom: 14px; display: block; }
.usecase-card h3 { font-size: 15px; 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(135deg, #0d47a1 0%, #1565c0 100%); }
.steps-section .section-inner { padding: 88px 32px; }
.steps-section .section-header h2 { color: var(--white); margin-bottom: 12px; }
.steps-section .section-header p { color: rgba(255,255,255,0.75); }
.steps-container { display: flex; align-items: flex-start; gap: 16px; }
.step-item {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 36px 26px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.step-item:hover { background: rgba(255,255,255,0.16); }
.step-num {
    font-size: 11px;
    font-weight: 700;
    background: #ffd600;
    color: var(--primary-dark);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.step-icon { font-size: 52px; margin-bottom: 18px; display: block; }
.step-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 14px; color: var(--white); line-height: 1.45; }
.step-item p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.75; }
.step-arrow { font-size: 32px; color: #ffd600; padding-top: 90px; flex-shrink: 0; font-weight: 900; }

/* ===== 7. Security ===== */
.security-section { background: var(--gray-bg); }
.security-section .section-header h2 { color: var(--text); }
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.security-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary);
    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; }

/* ===== 8. Example ===== */
.example-section { background: var(--white); }
.example-box {
    border: 2px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    max-width: 680px;
    margin: 0 auto 24px;
    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: #fafbff;
    font-size: 14px;
    line-height: 2;
    color: var(--text);
}
.example-text p { margin-bottom: 14px; }
.example-text p:last-child { margin-bottom: 0; }
.example-url {
    color: var(--primary);
    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: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== 9. Pricing ===== */
.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(3, 1fr);
    gap: 20px;
}
.merit-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
}
.merit-card:hover { transform: translateY(-3px); border-color: var(--primary-light); }
.merit-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.merit-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--primary-dark); }
.merit-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ===== 10. FAQ ===== */
.faq-section { background: var(--white); }
.faq-section .section-header h2 { color: var(--text); }
.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); }
.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.2s;
}
.faq-item.open .faq-toggle {
    background: var(--primary-dark);
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 4px 22px 4px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.85;
}
.faq-answer.open { display: block; }

/* ===== 11. Final CTA ===== */
.final-cta-section {
    background: linear-gradient(140deg, #0d47a1 0%, #1565c0 60%, #1e88e5 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.final-cta-section .section-inner { padding: 100px 32px; position: relative; z-index: 1; }
.final-cta-section h2 {
    font-size: 36px;
    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.88);
    line-height: 1.85;
    margin-bottom: 44px;
    display: block;
}
.final-cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.final-cta-section .btn-primary {
    background: #ffd600;
    color: #0d47a1 !important;
    box-shadow: 0 4px 18px rgba(255,214,0,0.35);
}
.final-cta-section .btn-primary:hover { background: #ffc400; }
.final-cta-section .btn-cta {
    background: var(--white);
    color: var(--primary) !important;
}
.final-note { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.7; }

/* ===== Footer ===== */
footer { background: #1a1a2e; color: rgba(255,255,255,0.8); }
.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.65); 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.45);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-cards { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px; }
    .hero-text h1 { font-size: 34px; }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .merit-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section-header h2 { font-size: 24px; }
    .hero-text h1 { font-size: 27px; }
    .hero-visual { display: none; }
    .hero-diagram-img { display: none; }
    .hero-inner { padding: 56px 20px; }
    .section-inner { padding: 64px 20px; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-summary { padding: 24px 20px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-cards { grid-template-columns: 1fr; }
    .comparison-table th, .comparison-table td { font-size: 13px; padding: 12px 14px; }
    .usecase-grid { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); padding-top: 0; padding-left: 0; align-self: center; }
    .security-grid { grid-template-columns: 1fr; }
    .merit-grid { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: 1fr 1fr; gap: 28px; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .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; }
}
@media (max-width: 480px) {
    .feature-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 24px; }
    .hero-note { font-size: 12px; }
    .section-header h2 { font-size: 22px; }
    .footer-columns { grid-template-columns: 1fr; }
    .btn-large { padding: 16px 32px !important; font-size: 15px !important; }
}
