/* フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

/* モバイルファースト基本設定 */
:root {
    --red: #FF6B6B;
    --teal: #4ECDC4;
    --dark: #292F36;
    --container-padding: 1rem;
    --section-spacing: 3rem;
    --container-width: min(1200px, 100% - 2rem);
    --header-height: 80px;
    --spacing-unit: clamp(1rem, 2vw, 2rem);
    --font-size-base: clamp(16px, 1vw, 18px);
    --font-size-h1: clamp(24px, 5vw, 36px);
    --font-size-h2: clamp(20px, 4vw, 28px);
    --font-size-h3: clamp(18px, 3vw, 24px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark);
}

/* 基本的なレスポンシブ設定 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--dark);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

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

.header-logo-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.header-logo-link:hover {
    opacity: 0.8;
}

.header-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.site-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement-text {
    color: var(--red);
    font-size: 1rem;
    font-weight: bold;
}

.site-title:hover {
    opacity: 0.9;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--red);
}

.badge {
    background: var(--red);
    color: white;
    padding: 0.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .header-nav.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.8rem;
        text-align: center;
    }
}

/* ヒーローセクション */
.hero {
    padding: calc(var(--header-height) + var(--spacing-unit)) var(--spacing-unit) var(--spacing-unit);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto var(--spacing-unit);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.hero-title {
    font-size: var(--font-size-h1);
    margin-bottom: var(--spacing-unit);
}

.hero-title .accent-text {
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title .main-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--red);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title .sub-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark);
    display: block;
}

.hero-achievement {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    font-size: 1.2rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.achievement-item .highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--teal);
    margin: 0 0.3rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 1rem 3rem;
    }

    .hero-image {
        max-width: 90%;
        margin-bottom: 1.5rem;
    }

    .hero-title .accent-text {
        font-size: 1.4rem;
    }

    .hero-title .main-text {
        font-size: 2rem;
    }

    .hero-title .sub-text {
        font-size: 1.6rem;
    }

    .hero-achievement {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .achievement-item {
        font-size: 1.1rem;
    }
}

/* メインセクション */
.benefits {
    padding: 4rem 1rem;
    background: white;
}

/* スマホタップだけの超簡単ビジネスセクション */
.simple-business {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.simple-business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.simple-business .benefit-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.simple-business .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.simple-business .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.simple-business .benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.simple-business .benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .simple-business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto 0;
    }
    
    .simple-business .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .simple-business .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .simple-business .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .simple-business .benefit-card p {
        font-size: 0.95rem;
    }
}

.benefit-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

/* ビデオサムネイル */
.video-thumbnail {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    font-size: 18px;
    text-align: center;
}

.play-icon {
    margin-right: 10px;
}

/* CTA ボタン */
.cta-button {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--red), #ff8787);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.cta-text {
    font-size: 1.2rem;
    display: block;
}

.remaining-slots {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.remaining-slots .number {
    font-weight: bold;
    color: #fff;
}

.cta-subtext {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .cta-button {
        bottom: 0.5rem;
        padding: 0.8rem 1.5rem;
        min-width: 90%;
        max-width: 300px;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .remaining-slots {
        font-size: 0.9rem;
    }

    .cta-subtext {
        font-size: 0.75rem;
    }
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .benefits {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* メディア掲載実績セクション */
.media-features {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
}

.media-description {
    font-size: 1.3rem;
    color: #666;
    margin: 1.5rem 0;
    line-height: 1.8;
}

.media-logos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.media-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.media-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.media-logo {
    width: 200px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0.5);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.media-logo-item:hover .media-logo {
    filter: grayscale(0);
    opacity: 1;
}

.media-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.media-highlight {
    font-size: 1rem;
    color: var(--red);
    font-weight: bold;
    padding: 0.5rem 1rem;
    background: rgba(255,107,107,0.1);
    border-radius: 50px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .media-logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .media-logo-item {
        padding: 1rem;
    }

    .media-logo {
        width: 160px;
        height: 48px;
    }

    .media-highlight {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .media-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .media-logos-container {
        grid-template-columns: 1fr;
    }

    .media-logo-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* 収益スクリーンショット */
.earnings-proof {
    position: relative;
    max-width: 600px;
    margin: 3rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.earnings-proof img {
    width: 100%;
    height: auto;
}

.earnings-proof::after {
    content: "実際の収益画面";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

/* よくある質問 */
.faq-section {
    max-width: 800px;
    margin: 4rem auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem;
}

.cta-button-a {
    background: #ff6b6b;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.cta-button-b {
    background: #4CAF50;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* 画像スタイル */
.image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
}

.illustration-img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.image-wrapper span {
    font-size: 1.2rem;
    color: var(--dark);
    text-align: center;
}

.video-thumb-img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    font-size: 18px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.play-icon {
    margin-right: 10px;
    color: var(--red);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .illustration-container {
        flex-direction: column;
    }

    .image-wrapper {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .illustration-img {
        width: 150px;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

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

    .merit-image {
        max-width: 90%;
        margin: 1.5rem auto;
    }

    .benefit-img {
        max-width: 100%;
    }
    
    .benefit-card {
        padding: 1rem;
    }

    .header {
        padding: 0.8rem 0;
    }

    .header-logo-image {
        height: 32px;
    }

    .achievement-text {
        font-size: 0.9rem;
    }
}

/* 成功者の声セクション */
.testimonials {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: var(--red);
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark);
    font-weight: bold;
    white-space: nowrap;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.subtitle-icon {
    font-size: 1.4rem;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.tweet-container {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tweet-container:hover {
    transform: translateY(-5px);
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.display-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--dark);
}

.username {
    color: #666;
    font-size: 0.9rem;
}

.tweet-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1rem;
}

.tweet-image {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
}

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

.tweet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.engagement {
    display: flex;
    gap: 1rem;
}

.engagement span {
    color: #666;
    font-size: 0.9rem;
}

.tweet-hashtags {
    color: var(--red);
    font-size: 0.9rem;
    margin-top: 1rem;
    display: block;
}

.tweet-images {
    margin: 1rem 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.tweet-grid-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .testimonials .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tweet-container {
        padding: 1.2rem;
    }

    .profile-pic {
        width: 40px;
        height: 40px;
    }

    .display-name {
        font-size: 1rem;
    }

    .username {
        font-size: 0.8rem;
    }

    .tweet-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .engagement {
        gap: 0.8rem;
    }

    .engagement span {
        font-size: 0.8rem;
    }

    .image-grid {
        gap: 0.3rem;
    }
}

.emotion-trigger {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.emotion-trigger .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.fear-trigger, .hope-trigger {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.fear-trigger h3, .hope-trigger h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trigger-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.trigger-highlight, .hope-highlight {
    color: var(--red);
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    background: rgba(255,107,107,0.1);
    border-radius: 5px;
}

.trust-bar {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.trust-bar-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 24px;
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.trust-text {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.trust-badge span {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .emotion-trigger {
        padding: 3rem 0;
    }

    .fear-trigger, .hope-trigger {
        padding: 1.5rem;
    }

    .fear-trigger h3, .hope-trigger h3 {
        font-size: 1.3rem;
    }

    .trigger-content {
        font-size: 1rem;
    }

    .trust-bar-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }
}

/* 特別企画セクション */
.limited-bonus {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.bonus-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bonus-label {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--red);
}

.bonus-main-title {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: bold;
}

.bonus-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.countdown-timer {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.countdown-label {
    font-size: 1.1rem;
    color: #666;
}

.timer {
    font-size: 2.5rem;
    color: var(--red);
    font-weight: bold;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.bonus-detail {
    font-size: 1.1rem;
    color: #666;
}

/* ステップセクション */
.steps {
    padding: 4rem 1rem;
    background: white;
    text-align: center;
}

.steps h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 3rem;
}

.step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
}

.step-title {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: bold;
}

.step-arrow {
    font-size: 2rem;
    color: var(--red);
    margin-top: 2rem;
}

/* 緊急セクション */
.urgency {
    padding: 2rem 1rem;
    background: rgba(255,107,107,0.1);
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.warning-icon {
    font-size: 2.5rem;
}

.urgency-content {
    text-align: left;
}

.slots-remaining {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.highlight-number {
    font-size: 2rem;
}

.urgency-message {
    font-size: 1.1rem;
    color: #666;
}

/* 最終CTAセクション */
.final-cta {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-header {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fire-emoji {
    font-size: 2.5rem;
}

.quick-register {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timer-icon {
    font-size: 1.5rem;
}

.register-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-time {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--red);
}

.register-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-dots {
    display: flex;
    gap: 0.3rem;
}

.dot {
    color: #ccc;
}

.dot.active {
    color: var(--red);
}

.main-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--red), #ff8787);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
    transition: transform 0.3s ease;
}

.main-cta-button:hover {
    transform: translateY(-2px);
}

/* フローティングCTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 15px;
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-cta-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.floating-cta-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: #666;
}

.floating-cta-stat .icon {
    font-size: 1.2em;
}

.floating-cta-stat .stat-highlight {
    color: #FF6B6B;
    font-weight: 700;
}

.floating-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.floating-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.floating-cta-button .icon {
    font-size: 1.3em;
}

@media (max-width: 768px) {
    .floating-cta-stats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .floating-cta-stat {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .floating-cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}

/* セレブリーレビューセクション */
.celebrity-reviews {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.celebrity-reviews .container {
    max-width: 800px;
    margin: 0 auto;
}

.celebrity-reviews .tweet-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 600px;
}

.celebrity-reviews .tweet-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.celebrity-reviews .profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.celebrity-reviews .user-info {
    flex: 1;
}

.celebrity-reviews .display-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark);
}

.celebrity-reviews .username {
    font-size: 1rem;
    color: #666;
}

.celebrity-reviews .tweet-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.celebrity-reviews .highlight {
    color: var(--red);
    font-weight: bold;
}

.celebrity-reviews .tweet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.celebrity-reviews .engagement {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .celebrity-reviews .tweet-container {
        padding: 1.5rem;
    }

    .celebrity-reviews .tweet-content {
        font-size: 1rem;
    }

    .celebrity-reviews .tweet-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .celebrity-reviews .engagement {
        flex-wrap: wrap;
    }
}

.celebrity-catch {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.catch-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 1rem;
}

.catch-message {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.celebrity-name {
    font-size: 1.2rem;
    color: #666;
}

@media (max-width: 768px) {
    .celebrity-catch {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }

    .catch-text {
        font-size: 1.8rem;
    }

    .catch-message {
        font-size: 1.3rem;
    }

    .celebrity-name {
        font-size: 1.1rem;
    }
}

.tweet-video {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tweet-video .video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}

.tweet-video .video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .tweet-video {
        margin-top: 1rem;
    }
}

.tweet-thumbnail {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tweet-thumbnail .video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}

.tweet-thumbnail .video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .tweet-thumbnail {
        margin: 0.8rem 0;
    }
}

/* 元銀行員の暴露セクション */
.banker-reveal {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.banker-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.banker-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.banker-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007bff;
}

.banker-speech {
    flex: 1;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.banker-speech p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
    color: #2c3e50;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
}

.banker-speech::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right-color: #f8f9fa;
}

.profit-proof {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.profit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.profit-icon {
    font-size: 24px;
}

.profit-header h3 {
    margin: 0;
    color: #2c3e50;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
}

.profit-screenshot {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.line-notification {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profit-screenshot iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.urgency-timer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #dc3545;
    border-radius: 15px;
    color: #fff;
}

.timer-label {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
}

.urgency-timer .timer {
    font-size: 2.5em;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .banker-profile {
        flex-direction: column;
        text-align: center;
    }

    .banker-speech::before {
        left: 50%;
        top: -15px;
        transform: translateX(-50%);
        border: 15px solid transparent;
        border-bottom-color: #f8f9fa;
    }

    .banker-image {
        width: 150px;
        height: 150px;
    }

    .profit-screenshot {
        height: auto;
    }
}

.footer {
    background: var(--dark);
    color: white;
    padding: var(--spacing-unit) 0;
    margin-top: calc(var(--spacing-unit) * 2);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-unit);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

/* LINE通知スタイル */
.line-container {
    width: 375px;
    background: #f8f8f8;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.line-header {
    background: #00c300;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0) 100%);
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    margin-left: 12px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.profile-name {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.3px;
}

.profile-status {
    font-size: 12px;
    opacity: 0.9;
    position: relative;
    padding-left: 18px;
}

.profile-status::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #7d7;
    border-radius: 50%;
    box-shadow: 0 0 8px #7d7;
    animation: status-pulse 1.5s infinite;
}

.line-messages {
    padding: 16px 12px 80px;
    background: linear-gradient(to bottom, 
        #ececec 0%, 
        #e6e6e6 100%);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.message {
    margin: 8px 0;
    max-width: 80%;
    position: relative;
    opacity: 0;
    animation: message-fade 0.3s ease-out forwards;
}

.message-left {
    align-self: flex-start;
    animation-delay: 0.2s;
}

.message-right {
    align-self: flex-end;
    animation-delay: 0.4s;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 20px;
    line-height: 1.4;
    position: relative;
    font-size: 15px;
    box-shadow: 0 2px 1px rgba(0,0,0,0.05);
    transition: transform 0.1s ease;
}

.message-bubble:hover {
    transform: scale(1.02);
}

.left-bubble {
    background: white;
    border-bottom-left-radius: 4px;
    margin-right: 40px;
}

.right-bubble {
    background: #dcf8c6;
    border-bottom-right-radius: 4px;
    margin-left: 40px;
}

.income-notification {
    background: rgba(255,255,255,0.95);
    border: 2px solid #00c300;
    border-radius: 16px;
    padding: 20px;
    margin: 16px auto;
    width: 85%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);
}

.income-notification::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: white;
    transform: translateX(-50%) rotate(45deg);
    border-left: 2px solid #00c300;
    border-top: 2px solid #00c300;
}

.income-title {
    color: #00c300;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-align: center;
}

.income-amount {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin: 8px 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.income-amount::before {
    content: "¥";
    font-size: 0.8em;
    vertical-align: top;
    margin-right: 2px;
}

.income-total {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 4px;
}

.line-footer {
    background: #f8f8f8;
    padding: 12px 16px;
    position: relative;
    border-top: 1px solid #ddd;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8);
}

.input-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 8px 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@keyframes status-pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

@keyframes message-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 400px) {
    .line-container {
        width: 100%;
        border-radius: 0;
    }
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ユーティリティ */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-unit); }
.mt-2 { margin-top: calc(var(--spacing-unit) * 2); }
.mb-1 { margin-bottom: var(--spacing-unit); }
.mb-2 { margin-bottom: calc(var(--spacing-unit) * 2); }

/* 主な特徴セクションのスタイル (restored) */
.benefits {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits .section-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.benefits .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #00c300;
    margin: 15px auto 0;
    border-radius: 2px;
}

.benefits .grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: nowrap;
    padding: 0 20px;
    width: 100%;
}

.benefits .card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: center;
    width: 300px;
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.benefits .card:hover {
    transform: translateY(-5px);
}

.benefits .card-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.benefits .card h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.benefits .card h3::before {
    font-size: 24px;
}

.benefits .card:nth-child(1) h3::before {
    content: "🤖";
}

.benefits .card:nth-child(2) h3::before {
    content: "⚡";
}

.benefits .card:nth-child(3) h3::before {
    content: "💫";
}

.benefits .card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.feature-list li {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00c300;
    font-weight: bold;
}

/* レスポンシブ対応 (restored) */
@media (max-width: 768px) {
    .benefits .grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }
    
    .benefits .card {
        width: 100%;
        max-width: 300px;
    }
}

/* モバイル (375px以上) */
@media (min-width: 375px) {
    body {
        font-size: 14px;
    }
    .hero-image {
        width: 100%;
        height: auto;
    }
    .hero-title {
        font-size: 1.5rem;
    }
}

/* タブレット (768px以上) */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* デスクトップ (1024px以上) */
@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ワイドデスクトップ (1440px以上) */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

/* 超ワイド (2000px以上) */
@media (min-width: 2000px) {
    .container {
        max-width: 1800px;
    }
    body {
        font-size: 18px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

/* 追加のレスポンシブ調整 */

/* モバイル */
@media (max-width: 767px) {
    .media-logos-container {
        grid-template-columns: 1fr;
    }
    .testimonials .container {
        flex-direction: column;
    }
    .tweet-container {
        width: 100%;
        margin-bottom: 20px;
    }
    .benefits .grid {
        grid-template-columns: 1fr;
    }
    .simple-business-grid {
        grid-template-columns: 1fr;
    }
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1023px) {
    .media-logos-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .simple-business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* デスクトップ */
@media (min-width: 1024px) {
    .media-logos-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefits .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .simple-business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ワイド */
@media (min-width: 2000px) {
    .media-logos-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .container {
        max-width: 1800px;
    }
}

/* ======================= Responsive overflow fixes ======================= */
.section-header h2,
.feature-list li,
.media-highlight {
    white-space: normal !important; /* allow text to wrap on small screens */
}

/* Allow benefit cards to wrap when the viewport is not wide enough */
@media (max-width: 1023px) {
    .benefits .grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Ensure main floating CTA button never exceeds viewport width */
.cta-button {
    min-width: auto;
    width: clamp(180px, 90%, 400px);
}

@media (max-width: 767px) {
    .step-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .section-subtitle {
        padding: 0 1rem;
        text-align: center;
    }
}