@charset "UTF-8";

/* ===== ???Z?b?gCSS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ?i^?|{?X?^?C??q ===== */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== ?q??fE^?N??n?X ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.screen {
    display: none;
    animation: fadeIn 0.3s ease;
}

.screen.active {
    display: block;
}

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

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== ?w?b?_?[ ===== */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    font-size: 28px;
    color: #2d7d2d;
    margin-bottom: 5px;
}

.header p {
    color: #666;
    font-size: 14px;
}

/* ===== ???C??g?R??g?e??g?c ===== */
.main-content {
    flex: 1;
    padding: 40px 20px;
}

/* ===== ?X?^?[?g?nae?|E^ ===== */
#startScreen h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}

.lead {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

/* ===== ?{?^??g ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #2d7d2d;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background: #246324;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 125, 45, 0.3);
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-sub {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.btn-back {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    width: auto;
}

.btn-back:hover {
    background: #5a6268;
}

.btn-next {
    width: auto;
    padding: 12px 30px;
    margin-left: auto;
}

/* ?{?^??g?O??q?[?v */
.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
}

/* ===== ?f?ff?nae?|E^ ===== */
.progress {
    margin-bottom: 30px;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: #2d7d2d;
    width: var(--progress, 0%);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.question-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
}

/* ===== ?eI?e<eth>??O ===== */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.option:hover {
    background: #e8f5e8;
    border-color: #2d7d2d;
    transform: translateX(5px);
}

.option.selected {
    background: #e8f5e8;
    border-color: #2d7d2d;
    font-weight: 500;
}

/* ?`?F?b?N?{?b?N?X?\p */
.option.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.option.selected .checkbox-icon {
    background: #2d7d2d;
    border-color: #2d7d2d;
}

/* ?\X?oeO?N?hO^??o?gu?N?\I?L */
.postcode-input {
    width: 200px;
    padding: 15px;
    font-size: 18px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.postcode-input:focus {
    outline: none;
    border-color: #2d7d2d;
}

/* ===== OE?q?nE^?nae?|E^ ===== */
.result-header {
    background: linear-gradient(135deg, #2d7d2d, #3a9a3a);
    color: white;
    padding: 40px;
    text-align: center;
    margin: -40px -20px 40px;
    border-radius: 12px 12px 0 0;
}

.result-header h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.user-type {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.user-description {
    font-size: 16px;
    opacity: 0.95;
}

/* ?v???t?@?C??q?Z?N?V??o¨??g */
.profile-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-section:last-of-type {
    border-bottom: none;
}

.profile-section h3 {
    color: #2d7d2d;
    font-size: 20px;
    margin-bottom: 15px;
}

.profile-section p {
    color: #666;
    margin-bottom: 15px;
}

.profile-section ul {
    list-style: none;
}

.profile-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.profile-section li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: #2d7d2d;
    font-weight: bold;
}

/* ?q@?h\?^?O */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background: #e8f5e8;
    color: #2d7d2d;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* ?|??e?s?gx?oe]?n? */
.satisfaction-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.satisfaction-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.satisfaction-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.satisfaction-btn {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.satisfaction-emoji {
    font-size: 24px;
    display: block;
}

.satisfaction-text {
    font-size: 12px;
    color: #666;
    display: block;
}

.satisfaction-btn:hover {
    transform: translateY(-2px);
    border-color: #2d7d2d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.satisfaction-btn.selected {
    background: #e8f5e8;
    border-color: #2d7d2d;
}

.satisfaction-btn.selected .satisfaction-text {
    color: #2d7d2d;
    font-weight: 600;
}

/* ???[??q?Z?N?V??o¨??g */
.email-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.email-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.email-section p {
    color: #666;
    margin-bottom: 20px;
}

.email-form {
    max-width: 400px;
    margin: 0 auto;
}

#emailInput {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
}

#emailInput:focus {
    outline: none;
    border-color: #2d7d2d;
}

.privacy-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

/* ===== ???[?f?B??g?O ===== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
}

.loading-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2d7d2d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ?t?b?^?[ ===== */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

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

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

.footer-links a:hover {
    text-decoration: underline;
}

.footer p {
    opacity: 0.8;
}

/* ===== ?f?ffOE?q?nE^?I`?U?L??~?X?^?C??q ===== */
.profile-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.type-badge {
    margin-bottom: 20px;
}

.type-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.type-badge h3 {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-bottom: 10px;
}

.lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* ?T?}???[?J?[?h */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.summary-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.summary-card h4 {
    font-size: 14px;
    color: #2d7d2d;
    margin-bottom: 10px;
}

.summary-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ?Z?N?V??o¨??g?C??g?g?? */
.section-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ?U?L??~???X?g */
.detailed-list {
    list-style: none;
    margin-bottom: 30px;
}

.detailed-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.detailed-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d7d2d'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ?C??g?T?C?g?{?b?N?X */
.insight-box {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2d7d2d;
}

.insight-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2d7d2d;
}

.insight-box p {
    margin: 0;
    line-height: 1.8;
    color: #555;
}

/* ?q@?h\?O???b?h */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ?i?L?\??R??g?e??g?c */
.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.price-recommendation {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.price-range-display {
    text-align: center;
    margin: 20px 0;
}

.price-main {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #2d7d2d;
    margin-bottom: 5px;
}

.price-sub {
    display: block;
    font-size: 16px;
    color: #666;
}

.price-points {
    list-style: none;
    margin-top: 20px;
}

.price-points li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.price-points li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 3px;
}

.timing-advice {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.timing-advice h4 {
    margin-bottom: 15px;
}

.timing-advice p {
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ?A?N?Z?X?i^?oen */
.access-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.access-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.area-benefits {
    margin-top: 20px;
}

.benefit-item {
    padding: 8px 0;
    color: #555;
}

/* ?`?F?b?N???X?g */
.checklist-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.checklist-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.must-have li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d9534f'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath fill='white' d='M9 12l2 2 4-4-1.4-1.4L11 11.2l-.6-.6L9 12z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nice-to-have li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0ad4e' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ?Y?N?I`?X?e?b?v */
.next-steps {
    margin-top: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    background: #2d7d2d;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

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

.step-content p {
    margin: 0;
    line-height: 1.8;
    color: #555;
}

/* ?A?〈?I???b?Z?[?W */
.final-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.final-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #2d7d2d;
    font-weight: 500;
    margin: 0;
}

.final-section {
    border-bottom: none;
    padding-bottom: 0;
}

/* ?|??e?s?gx?oe]?n??i?nu?N?eP?hA?〈?j */
.satisfaction-section.attention {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.satisfaction-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.satisfaction-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

/* メールセクション（プレミアム版） - 視認性改善 */
.email-section.premium {
    background: #F0F8F0;  /* 薄い緑の背景 */
    color: #2C3E50;  /* 濃いグレーの文字 */
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 125, 45, 0.15);
    border: 2px solid #81C784;  /* 緑の枠線 */
}

.limited-offer {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-badge {
    background: #FFD700;  /* ゴールドに変更 */
    color: #1B5E20;  /* 濃い緑の文字 */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.offer-timer {
    background: #1B5E20;  /* 濃い緑の背景 */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.email-section.premium h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1B5E20;  /* 濃い緑 */
    font-weight: 700;
}

.report-preview {
    background: white;  /* 白背景 */
    border: 2px solid #E8F5E9;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.report-preview h4 {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    color: #1B5E20;  /* 濃い緑 */
}

.report-contents {
    list-style: none;
}

.report-contents li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2C3E50;  /* 濃いグレー */
}

.report-contents .check {
    color: #4CAF50;  /* 明るい緑 */
    font-size: 18px;
    font-weight: bold;
}

.testimonials {
    margin: 30px 0;
    font-style: italic;
    color: #555;  /* グレー */
}

.btn-cta {
    background: linear-gradient(135deg, #FFD700, #FFA000);  /* ゴールドグラデーション */
    color: #1B5E20;  /* 濃い緑の文字 */
    padding: 20px 40px;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    width: 100%;
    margin-top: 15px;
    font-weight: 700;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-main-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.btn-sub-text {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.security-badges .badge {
    font-size: 12px;
    color: #555;  /* グレー */
}

.privacy-note {
    font-size: 12px;
    color: #666;  /* グレー */
    margin-top: 15px;
}

.privacy-note a {
    color: #1B5E20;  /* 濃い緑 */
    text-decoration: underline;
}

.urgency-message {
    background: #FFF9E6;  /* 薄い黄色 */
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
}

.urgency-message p {
    margin: 0;
    font-size: 14px;
    color: #856404;  /* 濃い黄色 */
    font-weight: 500;
}

/* ??E^OE?????b?Z?[?W */
.success-message {
    text-align: center;
    padding: 40px;
}

.success-message h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 16px;
    margin-bottom: 10px;
}

.success-note {
    font-size: 14px;
    opacity: 0.9;
}

.share-prompt {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.share-buttons-inline {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.share-buttons-inline .share-btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* SNS?V?F?A?Z?N?V??o¨??g */
.share-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.share-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.share-section p {
    color: #666;
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-x {
    background: #000;
    color: white;
}

.share-x:hover {
    background: #222;
    transform: translateY(-2px);
}

.share-line {
    background: #00b900;
    color: white;
}

.share-line:hover {
    background: #009900;
    transform: translateY(-2px);
}

.share-copy {
    background: #6c757d;
    color: white;
}

.share-copy:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* ?A?C?R??g?C?3 */
.icon-target::before { content: "?"; }
.icon-red-circle { color: #ff4757; }
.icon-yellow-circle { color: #ffc107; }
.check-mark { color: #2d7d2d; font-weight: bold; }

/* ユーザータイプを目立たせる */
.user-type-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    color: #1B5E20;
    padding: 12px 35px;
    border-radius: 35px;
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}

/* ?OE?X?|??g?V?u */
@media (max-width: 768px) {
    .email-section.premium {
        padding: 30px 20px;
    }
    
    .limited-offer {
        position: static;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .report-preview {
        padding: 20px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-btn {
        justify-content: center;
    }
}