/* RED CLOUDE - Main Stylesheet */

:root {
    --primary-color: #C41230;
    --secondary-color: #1A1A1A;
    --accent-color: #FFD700;
    --text-primary: #333333;
    --text-secondary: #666666;
    --bg-light: #F8F8F8;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #DC3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
}

/* Header */
.header {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.header-left {
    display: flex;
    align-items: center;
}

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

.dropdown-icon {
    font-size: 0.8rem;
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

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

.search-icon {
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.btn-header {
    padding: 0.5rem 1.25rem;
    border: 2px solid white;
    color: white;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-header:hover {
    background: white;
    color: var(--primary-color);
}

.btn-header-primary {
    background: white;
    color: var(--primary-color);
}

.btn-header-primary:hover {
    background: transparent;
    color: white;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #A01020;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #E01540);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 120%;
    height: 3px;
    background: var(--accent-color);
    transform: rotate(-15deg);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: -5%;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: rotate(-15deg);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-content .tagline {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-hero-primary {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

.btn-hero-primary:hover {
    background: #FFE135;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-chat-button {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.btn-chat {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-chat:hover {
    background: white;
    color: var(--primary-color);
}

/* News Section */
.news-section {
    background: white;
    padding: 2rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-container {
    max-width: 800px;
}

.news-header {
    margin-bottom: 1.5rem;
}

.news-header h2 {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
}

.news-item {
    font-size: 0.95rem;
    line-height: 1.5;
}

.news-category {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.news-title {
    color: var(--text-primary);
}

/* Pickup Cards */
.pickup-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pickup-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 240px;
}

.pickup-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pickup-left {
    flex: 0 0 320px;
    position: relative;
}

.pickup-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.pickup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.pickup-category {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.pickup-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.pickup-yield {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.yield-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.yield-value {
    font-size: 1.1rem;
    font-weight: bold;
}

.pickup-right {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pickup-info {
    flex: 1;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 0.9rem;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 140px;
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.pickup-progress {
    height: 8px;
    background: #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-gradient {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF6B35 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pickup-actions {
    text-align: center;
}

.btn-chat-pickup {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-chat-pickup:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Anken (Project) List Section */
.anken-section {
    background: white;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.anken-header {
    margin-bottom: 2rem;
}

.anken-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.anken-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.anken-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    position: relative;
    min-height: 240px;
}

.anken-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.anken-status.running {
    background: #2E86AB;
    color: white;
}

.anken-left {
    flex: 0 0 320px;
    position: relative;
}

.anken-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.anken-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anken-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.anken-title {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
}

.anken-right {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.anken-dates {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.date-item {
    text-align: center;
}

.date-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.date-value {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
}

.date-value.red {
    color: var(--primary-color);
}

.info-rows {
    flex: 1;
}

.anken-progress {
    height: 8px;
    background: #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.anken-actions {
    text-align: center;
}

.btn-chat-anken {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-chat-anken:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.anken-view-all {
    text-align: center;
}

.btn-view-all {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-view-all:hover {
    background: #A01020;
    transform: translateY(-2px);
}

/* Flow Section */
.flow-section {
    background: #F8F9FA;
    padding: 4rem 2rem;
}

.flow-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.flow-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
}

.step-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
}

.step-num {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.step-icon {
    margin-bottom: 1.5rem;
}

.icon-phone,
.icon-document {
    font-size: 3rem;
    display: block;
}

.icon-start {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.2;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.step-connector {
    position: absolute;
    top: 3rem;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--primary-color) 0,
        var(--primary-color) 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 5;
}

.flow-step:last-child .step-connector {
    display: none;
}

@media (max-width: 768px) {
    .flow-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        top: auto;
        bottom: -1.5rem;
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        width: 2rem;
        height: 2px;
    }
}

/* Fund Cards */
.fund-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.fund-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.fund-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.fund-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.fund-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.fund-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fund-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.fund-content {
    padding: 1.5rem;
}

.fund-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.fund-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.fund-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.fund-progress {
    margin: 1rem 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.progress-bar {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s;
}

.fund-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fund-method {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-q-mark {
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.faq-q-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border: 2px solid #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-view-all {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all-faq {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-view-all-faq:hover {
    background: #A01020;
    transform: translateY(-2px);
}

/* News End Section */
.news-end-section {
    background: #F8F9FA;
    padding: 4rem 2rem;
}

.news-end-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-end-header {
    margin-bottom: 3rem;
}

.news-end-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: left;
}

.news-end-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.news-end-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E5E5;
    transition: background-color 0.3s;
}

.news-end-item:last-child {
    border-bottom: none;
}

.news-end-item:hover {
    background-color: #F8F9FA;
    cursor: pointer;
}

.news-end-date {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-right: 2rem;
    font-weight: 500;
    min-width: 80px;
}

.news-end-category {
    flex-shrink: 0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 1.5rem;
    min-width: 60px;
    text-align: center;
}

.news-end-category.fund {
    background: var(--secondary-color);
    color: white;
}

.news-end-category.notice {
    background: #E3F2FD;
    color: #1976D2;
    border: 1px solid #BBDEFB;
}

.news-end-title {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.news-end-view-all {
    text-align: right;
    margin-top: 2rem;
}

.btn-view-all-news {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-all-news:hover {
    background: #A01020;
    transform: translateY(-1px);
}

.btn-view-all-news::after {
    content: '>';
    font-size: 1rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .news-end-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .news-end-date,
    .news-end-category {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .news-end-view-all {
        text-align: center;
    }
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #28A745, #20c997);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.banner-section::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 20"><defs><pattern id="wave" x="0" y="0" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10c10-5 20-5 30 0s20 5 30 0 20-5 30 0 20 5 30 0v10H0z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23wave)"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
    z-index: 1;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.banner-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-banner-primary {
    background: white;
    color: #28A745;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid white;
    display: inline-block;
}

.btn-banner-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-banner-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.8);
    display: inline-block;
}

.btn-banner-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    background: white;
    padding: 4rem 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-section a:hover {
    color: white;
}

.footer-company {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.company-info p,
.license-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-social {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .fund-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}