/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.6rem;
    color: #2c5aa0;
    letter-spacing: -0.03em;
}

.nav-brand i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #2c5aa0, #667eea);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.cta-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Hero部分 - 重新设计 */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stock-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.5rem;
    animation: float 8s ease-in-out infinite;
}

.stock-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.stock-icon:nth-child(2) {
    top: 65%;
    right: 12%;
    animation-delay: 2s;
}

.stock-icon:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.stock-icon:nth-child(4) {
    top: 35%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-25px) rotate(5deg); 
        opacity: 0.25;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    color: white;
}

.hero-left {
    animation: slideInLeft 1s ease-out;
}

.hero-right {
    animation: slideInRight 1s ease-out 0.3s both;
}

@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);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 30px;
    backdrop-filter: blur(15px);
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

.hero-title {
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.title-sub {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 600;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-cta {
    margin-top: 40px;
}

.pulse-btn {
    animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-features {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.9;
}

.feature-item i {
    color: #25D366;
    font-size: 1rem;
}

/* Hero右侧图片区域 */
.hero-image {
    position: relative;
    height: 500px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.main-image i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    animation: chart-pulse 3s ease-in-out infinite;
}

@keyframes chart-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.profit-indicator {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: bounce-in 2s ease-out 1s both;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.info-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: #2c5aa0;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 10%;
    left: -20px;
    animation: float-card 4s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    right: -25px;
    animation: float-card 4s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 10%;
    left: -15px;
    animation: float-card 4s ease-in-out infinite 2s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.primary-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 20px 45px;
    border-radius: 35px;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.primary-btn.large {
    padding: 22px 50px;
    font-size: 1.3rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.primary-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 新介绍部分 */
.intro-section {
    padding: 100px 0;
    background: #f8faff;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
    line-height: 1.6;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.intro-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.intro-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.intro-item:hover .intro-icon {
    transform: scale(1.1) rotate(5deg);
}

.intro-icon i {
    font-size: 2rem;
    color: white;
}

.intro-item h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.intro-item p {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    line-height: 1.6;
}

.intro-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-bg 10s linear infinite;
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.highlight-content {
    position: relative;
    z-index: 2;
}

.intro-highlight h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.intro-highlight p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 600;
}

/* 通用部分样式 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* 全局字体优化 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    letter-spacing: -0.02em;
}

p {
    font-weight: 600;
}

strong {
    font-weight: 800;
}

/* 按钮通用样式优化 */
button {
    font-family: 'Inter', 'Noto Sans SC', sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
}

/* 关于活动部分 */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-main h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.about-main p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 8px 0;
    font-weight: 700;
    position: relative;
    padding-left: 25px;
}

.highlight-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: 900;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #333;
}

/* 图文模块 */
.image-text-section {
    padding: 80px 0;
}

.image-text-section.alt {
    background: #f8f9fa;
}

.image-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-text-content.right-image {
    grid-template-columns: 1fr 1fr;
}

.placeholder-image {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 60px 30px;
    border-radius: 15px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.placeholder-image p {
    font-size: 1.2rem;
    font-weight: 900;
}

.text-part h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.text-part p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.feature-list i {
    color: #25D366;
    font-size: 1.1rem;
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

/* 活动细则 */
.details-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.detail-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.detail-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    font-weight: 700;
}

.detail-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 900;
}

.important-notes {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ff6b6b;
}

.important-notes h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.note-item i {
    color: #ff6b6b;
    margin-top: 3px;
}

.note-item p {
    font-weight: 700;
}

/* 关于阿布 */
.about-abu-section {
    padding: 100px 0;
}

.abu-content {
    max-width: 900px;
    margin: 0 auto;
}

.abu-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.placeholder-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.profile-info h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 700;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #2c5aa0;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.abu-story p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 立即参与 */
.join-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.join-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* 页脚 */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-content p {
    margin-bottom: 25px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2c5aa0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* 固定悬浮按钮 */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.floating-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .title-main {
        font-size: 2.8rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .cta-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-highlight {
        padding: 40px 30px;
    }
    
    .image-text-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-text-content.right-image .text-part {
        order: 1;
    }
    
    .image-text-content.right-image .image-part {
        order: 2;
    }
    
    .abu-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .info-card {
        position: relative !important;
        margin: 10px 0;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    .floating-cards {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .primary-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .floating-cta {
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: none;
    }
    
    .floating-btn {
        width: 100%;
        justify-content: center;
    }
}
