* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Kaku Gothic Antique', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #2a1810 100%);
    color: #ffffff;
}

/* 背景动態粒子效果 */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: float 8s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* 增强的Hero背景效果 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 200, 81, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #2a1810 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

/* 股票滚动条 */
.stock-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 5;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerMove 60s linear infinite;
}

.ticker-item {
    margin-right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.ticker-symbol {
    color: #ffd700;
    font-weight: 700;
}

.ticker-price {
    color: #ffffff;
}

.ticker-change {
    font-weight: 600;
}

.ticker-up {
    color: #00c851;
}

.ticker-down {
    color: #ff4444;
}

@keyframes tickerMove {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* K线图背景 */
.candlestick-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 2;
}

.candlestick {
    position: absolute;
    width: 3px;
    background: linear-gradient(to top, #ff4444, #00c851);
    border-radius: 2px;
    animation: candlestickGrow 3s ease-in-out infinite;
}

@keyframes candlestickGrow {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 0.7; }
}

/* 股价图表装饰 */
.chart-decoration {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 300px;
    height: 200px;
    opacity: 0.15;
    z-index: 3;
}

.chart-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00c851, #ffd700, #00c851, transparent);
    animation: chartPulse 4s ease-in-out infinite;
}

.chart-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.chart-line:nth-child(2) { top: 40%; animation-delay: 0.5s; }
.chart-line:nth-child(3) { top: 60%; animation-delay: 1s; }
.chart-line:nth-child(4) { top: 80%; animation-delay: 1.5s; }

@keyframes chartPulse {
    0%, 100% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* 交易数据显示 */
.trading-data {
    position: absolute;
    left: 5%;
    top: 25%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    opacity: 0.8;
    z-index: 4;
}

.trading-data h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.data-value {
    color: #00c851;
    font-weight: 600;
}

/* 股票图标装饰 */
.stock-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.stock-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.3);
    animation: floatIcon 6s ease-in-out infinite;
}

.stock-icon:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.stock-icon:nth-child(2) { top: 25%; right: 25%; animation-delay: 1s; }
.stock-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.stock-icon:nth-child(4) { bottom: 20%; right: 15%; animation-delay: 3s; }
.stock-icon:nth-child(5) { top: 40%; left: 70%; animation-delay: 4s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(10px) translateY(10px); }
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 6;
    margin-top: 50px; /* 为股票滚动条留出空间 */
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 400px;
    text-align: left;
}

.hero-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.3),
        0 0 100px rgba(255, 215, 0, 0.1);
    animation: profileGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 900;
    color: #1a1f35;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-photo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: photoSpin 4s linear infinite;
    z-index: 1;
}

@keyframes profileGlow {
    0%, 100% { 
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.3),
            0 0 100px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 80px rgba(255, 215, 0, 0.5),
            0 0 150px rgba(255, 215, 0, 0.2);
        transform: scale(1.02);
    }
}

@keyframes photoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-achievements {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(45deg, #00c851, #4caf50);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 200, 81, 0.3);
    animation: achievementFloat 2s ease-in-out infinite;
}

@keyframes achievementFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.title-main {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease-in-out infinite;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.title-sub {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.title-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    color: #c0c0c0;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out 1s both;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    min-width: 100px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    display: block;
}
.stat-number1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    color: #c0c0c0;
    margin-top: 0.5rem;
}

/* 投资理念セクション */
.philosophy-section {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border-radius: 2px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.philosophy-card:hover::before {
    left: 100%;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.philosophy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.philosophy-text {
    color: #e0e0e0;
    line-height: 1.8;
}

/* プロフィールセクション */
.profile-section {
    position: relative;
    padding: 5rem 0;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease-out;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #1a1f35;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.profile-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.profile-info .position {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 500;
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* 成功案例セクション */
.success-section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 200, 81, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 200, 81, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.success-card:hover::before {
    opacity: 1;
}

.success-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 200, 81, 0.5);
}

.success-percentage {
    font-size: 3rem;
    font-weight: 900;
    color: #00c851;
    margin-bottom: 1rem;
}

.success-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.success-description {
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 客户评价セクション */
.testimonials-section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #ffd700;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a1f35;
}

.author-info .name {
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.2rem;
}

.author-info .title {
    font-size: 0.9rem;
    color: #c0c0c0;
}

/* 市场洞察セクション */
.insights-section {
    padding: 5rem 0;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.02);
}

.insights-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.insights-content h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.insights-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.insights-points {
    list-style: none;
}

.insights-points li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #c0c0c0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.insights-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00c851;
    font-weight: bold;
}

.insights-visual {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.chart-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 200, 81, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

/* 特色セクション */
.features-section {
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInRight 1s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-text {
    color: #c0c0c0;
    line-height: 1.6;
}

/* CTAセクション */
.cta-section {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 3rem;
    animation: slideInUp 1s ease-out;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.vip-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #1a1f35;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #00c851, #007e33);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 200, 81, 0.4);
}

.line-icon {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00c851;
    font-weight: bold;
}

/* アニメーション */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        min-width: auto;
        text-align: center;
    }
    
    .hero-image {
        flex: none;
        order: -1;
    }
    
    .profile-photo {
        width: 220px;
        height: 220px;
        font-size: 4rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .trading-data, .chart-decoration {
        display: none;
    }
    
    .stock-ticker {
        height: 40px;
    }
    
    .ticker-item {
        margin-right: 1.5rem;
        font-size: 0.7rem;
    }
    
    .hero-content {
        margin-top: 40px;
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .profile-photo {
        width: 180px;
        height: 180px;
        font-size: 3rem;
    }
    
    .hero-achievements {
        top: -10px;
        right: -10px;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 0.8rem 1rem;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stock-icons .stock-icon {
        font-size: 1rem;
    }
    
    .philosophy-grid,
    .success-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .insights-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-card {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0.5rem;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .ticker-item {
        margin-right: 1.5rem;
        font-size: 0.7rem;
    }
}
.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    }
    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    }
    .floating-button {
    position: relative;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    }
    
    .floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button .icon {
    font-size: 24px;
    }
    
    @media (max-width: 768px) {
    .floating-button-container {
    bottom: 20px;
    }
    
    .floating-button {
    font-size: 16px;
    padding: 12px 24px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 14px;
    padding: 10px 20px;
    }
    
    .floating-button .icon {
    font-size: 18px;
    }
    }