/* ========================================
   CSS Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-pink: #FFB6D9;
    --soft-pink: #FFD6E8;
    --light-pink: #FFF0F5;
    --cream: #FFF8F0;
    --peach: #FFE5D9;
    --gold: #FFD700;
    --rainbow-1: #FF6B9D;
    --rainbow-2: #C770F0;
    --rainbow-3: #70C4F0;
    --rainbow-4: #70F0A0;
    --rainbow-5: #FFE770;
    --text-dark: #5A4A42;
    --text-gray: #8B7B73;
    --white: #FFFFFF;
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Zen Maru Gothic', sans-serif;
    
    /* スペーシング */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 50%, var(--peach) 100%);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* ========================================
   背景装飾
======================================== */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* 桜の花びらアニメーション */
.sakura-container::before,
.sakura-container::after {
    content: '🌸';
    position: absolute;
    font-size: 20px;
    opacity: 0.6;
    animation: sakuraFall 15s infinite linear;
}

.sakura-container::before {
    left: 20%;
    animation-delay: 0s;
}

.sakura-container::after {
    left: 70%;
    animation-delay: 7s;
}

@keyframes sakuraFall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(100px) rotate(180deg);
    }
    100% {
        top: 110%;
        transform: translateX(-100px) rotate(360deg);
    }
}

/* キラキラエフェクト */
.sparkle-container::before,
.sparkle-container::after {
    content: '✨';
    position: absolute;
    font-size: 24px;
    opacity: 0;
    animation: sparkle 3s infinite;
}

.sparkle-container::before {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.sparkle-container::after {
    top: 60%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    padding: 120px 0 100px;
    text-align: center;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 246, 248, 0.9) 0%, rgba(255, 248, 240, 0.8) 100%);
}

.hero-content {
    position: relative;
}

.hero-decoration {
    margin-bottom: 30px;
}

.emoji-float {
    display: inline-block;
    font-size: 32px;
    margin: 0 15px;
    animation: float 3s ease-in-out infinite;
}

.emoji-float.delay-1 {
    animation-delay: 1s;
}

.emoji-float.delay-2 {
    animation-delay: 2s;
}

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

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--primary-pink);
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(255, 182, 217, 0.3);
}

.title-line {
    display: block;
}

.sakura-icon {
    display: inline-block;
    font-size: 0.8em;
    animation: spin 4s linear infinite;
}

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

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 1.8;
}

.highlight-rainbow {
    background: linear-gradient(90deg, 
        var(--rainbow-1), 
        var(--rainbow-2), 
        var(--rainbow-3), 
        var(--rainbow-4), 
        var(--rainbow-5)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.2em;
    animation: rainbowMove 3s linear infinite;
}

@keyframes rainbowMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-vito {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.vito-image {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 182, 217, 0.4));
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

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

.vito-message {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 182, 217, 0.3);
    position: relative;
}

.vito-message::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.vito-message p {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-pink);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   CTAボタン
======================================== */
.cta-button {
    display: inline-block;
    position: relative;
    padding: 20px 50px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--white);
    background: linear-gradient(135deg, var(--rainbow-1) 0%, var(--rainbow-2) 50%, var(--rainbow-3) 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
    animation: rainbowMove 2s linear infinite;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 30%;
    height: 200%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

.hero-cta {
    margin-top: 20px;
}

/* ========================================
   セクション共通スタイル
======================================== */
section {
    position: relative;
    padding: var(--section-padding);
    z-index: 2;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    text-align: center;
    color: var(--primary-pink);
    margin-bottom: 50px;
    line-height: 1.5;
}

.title-decoration {
    display: inline-block;
    margin: 0 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.subtitle-small {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-gray);
    margin-top: 10px;
}

.sp-only {
    display: none;
}

/* ========================================
   講演会振り返りセクション
======================================== */
.memory-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.memory-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.memory-text {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.memory-text strong {
    color: var(--primary-pink);
    font-weight: 700;
}

/* ========================================
   Amazon26冠達成セクション
======================================== */
.achievement-section {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 182, 217, 0.2) 50%, 
        rgba(255, 229, 217, 0.1) 100%
    );
    overflow: hidden;
}

.achievement-badge-container {
    text-align: center;
    margin-bottom: 40px;
}

.achievement-badge {
    display: inline-block;
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-crown {
    font-size: 40px;
    margin-bottom: 5px;
}

.badge-number {
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.badge-shine {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.achievement-title {
    margin-top: 20px;
}

.achievement-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.achievement-text {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
    margin-bottom: 25px;
}

.book-title {
    color: var(--primary-pink);
    font-size: 1.1em;
}

.highlight-gold {
    background: linear-gradient(90deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.2em;
}

.achievement-thanks {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--primary-pink);
    margin-top: 30px;
}

/* ========================================
   講座開催の経緯セクション
======================================== */
.reason-section {
    background: rgba(255, 255, 255, 0.5);
}

.reason-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.reason-text {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
    margin-bottom: 30px;
}

.reason-text strong {
    color: var(--primary-pink);
    font-size: 1.1em;
}

.highlight-box {
    background: linear-gradient(135deg, 
        rgba(255, 182, 217, 0.2) 0%, 
        rgba(199, 112, 240, 0.2) 100%
    );
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--soft-pink);
}

.text-large {
    font-size: 1.3em;
}

/* ========================================
   講座内容セクション
======================================== */
.course-section {
    background: linear-gradient(135deg, 
        rgba(255, 240, 245, 0.9) 0%, 
        rgba(255, 248, 240, 0.9) 100%
    );
}

.course-theme {
    text-align: center;
    margin-bottom: 60px;
}

.course-title {
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--rainbow-2);
    margin-bottom: 20px;
}

.course-theme-text {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--primary-pink);
    line-height: 1.6;
}

.course-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 30px;
}

.course-target {
    max-width: 700px;
    margin: 0 auto 60px;
}

.target-list {
    list-style: none;
    text-align: left;
}

.target-list li {
    font-size: clamp(16px, 2.5vw, 20px);
    padding: 15px 20px;
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(255, 182, 217, 0.2);
    position: relative;
    padding-left: 50px;
}

.target-list li::before {
    content: '✨';
    position: absolute;
    left: 20px;
    font-size: 20px;
}

.course-learn {
    margin-bottom: 60px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.learn-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 182, 217, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 182, 217, 0.4);
}

.learn-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.learn-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

.course-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-text {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
    color: var(--text-dark);
}

.message-text strong {
    color: var(--primary-pink);
    font-size: 1.1em;
}

/* ========================================
   開催日時セクション
======================================== */
.schedule-section {
    background: rgba(255, 255, 255, 0.6);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.schedule-card {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--light-pink) 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 182, 217, 0.3);
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: scale(1.05);
}

.schedule-date {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.schedule-time {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    color: var(--rainbow-2);
}

.schedule-note {
    text-align: center;
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-gray);
    line-height: 1.8;
}

.price-highlight {
    display: block;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-pink);
    margin-top: 15px;
}

/* ========================================
   特典セクション
======================================== */
.benefit-section {
    background: linear-gradient(135deg, 
        rgba(255, 229, 217, 0.5) 0%, 
        rgba(255, 240, 245, 0.5) 100%
    );
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 182, 217, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--light-pink) 100%);
    border: 3px solid var(--primary-pink);
}

.benefit-number {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-dark);
}

.benefit-text strong {
    font-size: 1.2em;
    color: var(--rainbow-1);
}

.text-small {
    font-size: 0.85em;
    color: var(--text-gray);
}

.benefit-vito {
    text-align: center;
    margin-top: 40px;
}

.vito-image-small {
    width: 100px;
    height: auto;
    display: inline-block;
    margin-bottom: 15px;
}

.bounce-slow {
    animation: bounce 3s ease-in-out infinite;
}

.vito-text {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    color: var(--primary-pink);
}

/* ========================================
   メインCTA(申込セクション)
======================================== */
.registration-section {
    background: linear-gradient(135deg, 
        rgba(255, 182, 217, 0.3) 0%, 
        rgba(199, 112, 240, 0.2) 50%, 
        rgba(112, 196, 240, 0.2) 100%
    );
    padding: 100px 0;
}

.registration-title {
    font-size: clamp(32px, 5vw, 48px);
}

.registration-message {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
}

.registration-message strong {
    font-size: 1.2em;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 60px 0 30px;
    flex-wrap: wrap;
}

.cta-vito-left,
.cta-vito-right {
    flex-shrink: 0;
}

.vito-image-cta {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 182, 217, 0.4));
}

.wiggle {
    animation: wiggle 2s ease-in-out infinite;
}

.wiggle.delay-1 {
    animation-delay: 1s;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.main-cta {
    font-size: clamp(20px, 3.5vw, 28px);
    padding: 25px 60px;
}

.cta-note {
    text-align: center;
    font-size: clamp(12px, 1.8vw, 14px);
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 20px;
}

.vito-message-bottom {
    text-align: center;
    margin-top: 30px;
}

.vito-message-bottom p {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--primary-pink);
}

/* ========================================
   著者プロフィール
======================================== */
.profile-section {
    background: rgba(255, 255, 255, 0.7);
}

.profile-content {
    max-width: 900px;
    margin: 0 auto;
}

.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-name {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--primary-pink);
    font-family: var(--font-accent);
}

.profile-reading {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 10px;
}

.profile-body {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 6px 20px rgba(255, 182, 217, 0.2);
}

.profile-text {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 2;
    margin-bottom: 25px;
}

.profile-text strong {
    font-weight: 700;
    color: var(--text-dark);
}

.highlight-pink {
    color: var(--primary-pink);
    font-weight: 700;
}

.profile-awards {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--light-pink) 100%);
    padding: 25px 30px;
    border-radius: 20px;
    margin: 30px 0;
}

.awards-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.awards-list {
    list-style: none;
}

.awards-list li {
    font-size: clamp(14px, 2vw, 16px);
    padding: 8px 0;
    color: var(--text-dark);
}

.awards-text {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.profile-vito {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.vito-image-profile {
    width: 100px;
    height: auto;
}

.profile-vito-text {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-dark);
    max-width: 300px;
}

/* ========================================
   クロージングメッセージ
======================================== */
.closing-section {
    background: linear-gradient(135deg, 
        rgba(255, 240, 245, 0.8) 0%, 
        rgba(255, 229, 217, 0.6) 100%
    );
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closing-text {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 2;
    margin-bottom: 30px;
}

.closing-signature {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: var(--primary-pink);
    margin-top: 40px;
}

.closing-signature strong {
    font-size: 1.1em;
}

/* ========================================
   最終CTA
======================================== */
.final-cta-section {
    background: linear-gradient(135deg, 
        rgba(255, 182, 217, 0.4) 0%, 
        rgba(199, 112, 240, 0.3) 100%
    );
    padding: 80px 0;
}

.final-cta-container {
    text-align: center;
}

.final-vito-top {
    margin-bottom: 30px;
}

.vito-image-final {
    width: 140px;
    height: auto;
}

.final-cta {
    font-size: clamp(20px, 3.5vw, 28px);
    padding: 25px 60px;
    margin-bottom: 25px;
}

.final-cta-message {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--primary-pink);
    font-weight: 500;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rainbow-2) 100%);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-vito {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .sp-only {
        display: inline;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-vito {
        flex-direction: column;
    }
    
    .vito-message::before {
        left: 50%;
        top: -10px;
        transform: translateX(-50%) rotate(90deg);
    }
    
    .cta-button {
        padding: 18px 40px;
        width: 100%;
        max-width: 350px;
    }
    
    .achievement-badge {
        width: 160px;
        height: 160px;
    }
    
    .badge-number {
        font-size: 48px;
    }
    
    .badge-text {
        font-size: 16px;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-vito-left,
    .cta-vito-right {
        display: none;
    }
    
    .main-cta {
        padding: 20px 40px;
        width: 100%;
        max-width: 350px;
    }
    
    .profile-body {
        padding: 25px 20px;
    }
    
    .profile-vito {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .vito-image {
        width: 80px;
    }
    
    .vito-image-cta {
        width: 80px;
    }
    
    .vito-image-small {
        width: 70px;
    }
    
    .vito-image-profile {
        width: 70px;
    }
    
    .vito-image-final {
        width: 100px;
    }
}
