/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    min-height: 100vh;
}

/* Utility classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.gradient-bg-light {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-secondary:hover {
    background: #eff6ff;
}

.full-width {
    width: 100%;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #dbeafe;
    z-index: 50;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-link:hover {
    color: #3b82f6;
}

.cta-desktop {
    display: block;
}

.mobile-menu-btn {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
}

.mobile-nav {
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-content {
    padding: 0.5rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    background: none;
    border: none;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.5rem;
}

.mobile-nav-link:hover {
    color: #3b82f6;
    background: #eff6ff;
}

.mobile-cta {
    padding: 0.75rem;
}

/* Hero Section */
.hero {
    padding: 6rem 1rem 4rem;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.funding-card {
    max-width: 32rem;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.funding-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.funding-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.funding-progress {
    margin-bottom: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.progress-bar {
    width: 100%;
    height: 0.75rem;
    background: #e5e7eb;
    border-radius: 9999px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 9999px;
    transition: width 1s ease-out;
}

.funding-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.stat {
    background: #eff6ff;
    border-radius: 0.5rem;
    padding: 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.funding-footer {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Features Section */
.features {
    padding: 5rem 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.75;
}

.stats-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 1.5rem;
    padding: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #bfdbfe;
}

/* Staking Section */
.staking {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.staking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.staking-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.staking-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.staking-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.apy-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.feature-list {
    list-style: none;
    color: #6b7280;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

.staking-calculator {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-suffix {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-weight: 500;
}

.rewards-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.reward-item {
    background: #eff6ff;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.reward-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3b82f6;
}

.reward-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

/* Loans Section */
.loans {
    padding: 5rem 1rem;
}

.loans-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.loans-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loans-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.loan-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.loan-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.loan-feature-card .feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.loan-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.loan-feature-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

.collateral-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.collateral-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.collateral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.collateral-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #eff6ff;
    border-radius: 0.5rem;
}

.collateral-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
}

.collateral-icon.eth {
    background: #3b82f6;
}

.collateral-icon.btc {
    background: #f97316;
}

.collateral-icon.usdt {
    background: #10b981;
}

.collateral-icon.usdc {
    background: #3b82f6;
}

.loan-calculator {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
}

.loan-calculator h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.slider {
    width: 100%;
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 9999px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    background: #3b82f6;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.loan-summary {
    background: #eff6ff;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.125rem;
}

.summary-row hr {
    border: none;
    border-top: 1px solid #bfdbfe;
    margin: 0.75rem 0;
}

.success {
    color: #10b981 !important;
}

.warning-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.warning-box i {
    color: #ef4444;
    flex-shrink: 0;
}

.warning-title {
    font-weight: 500;
    color: #dc2626;
    font-size: 0.875rem;
}

.warning-text {
    font-size: 0.75rem;
    color: #b91c1c;
    margin-top: 0.25rem;
}

/* SIP Section */
.sip {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.sip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sip-config {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
}

.config-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.config-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.asset-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.asset-option {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.asset-option.active {
    border-color: #3b82f6;
    background: #eff6ff;
}

.asset-option:hover {
    border-color: #3b82f6;
}

.asset-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
}

.asset-info {
    text-align: left;
}

.asset-name {
    font-weight: 500;
}

.asset-price {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-help {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.sip-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.projection-card,
.comparison-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
}

.projection-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: #eff6ff;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.stat-card.success {
    background: #f0fdf4;
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-card.success .stat-value {
    color: #10b981;
}

.final-value {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.final-amount {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.final-label {
    color: #6b7280;
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
}

.comparison-row:nth-child(1) {
    background: #eff6ff;
}

.comparison-row:nth-child(2) {
    background: #f9fafb;
}

.comparison-row.advantage {
    background: #f0fdf4;
}

.comparison-row .value {
    font-weight: 700;
}

.comparison-row .value.success {
    color: #10b981;
}

.comparison-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

/* Investors Section */
.investors {
    padding: 5rem 1rem;
}

.investors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.investor-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.document-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #6b7280;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: #3b82f6;
    border-radius: 50%;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #3b82f6;
}

.funding-info {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    border: 1px solid #dbeafe;
}

.funding-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
}

.funding-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.funding-stat .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.investor-form-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
}

.investor-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.investor-form input,
.investor-form select,
.investor-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.investor-form input:focus,
.investor-form select:focus,
.investor-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.investor-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-text {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.form-note {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success i {
    color: #10b981;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-success p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.success-note {
    background: #f0fdf4;
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 24rem;
    margin: 0 auto;
}

.success-note p {
    color: #166534;
    font-weight: 500;
    margin: 0;
}

/* Social Section */
.social {
    padding: 5rem 1rem;
    background: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.social-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.social-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.social-icon.twitter {
    background: #000000;
}

.social-icon.linkedin {
    background: #3b82f6;
}

.social-icon.facebook {
    background: #3b82f6;
}

.social-icon.youtube {
    background: #dc2626;
}

.social-icon.telegram {
    background: #60a5fa;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.social-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}

.social-card:hover .social-info h3 {
    color: #3b82f6;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
    transition: color 0.2s;
}

.social-card:hover .social-link {
    color: #3b82f6;
}

.social-card p {
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.social-card:hover p {
    color: #374151;
}

.social-stats {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.social-stats h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.social-stats .stats-grid {
    color: white;
}

.social-stats .stat-description {
    color: #bfdbfe;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-card:hover .contact-email {
    color: #1e40af;
}

.response-time {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    max-width: 32rem;
    margin: 0 auto;
}

.response-time h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.response-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.response-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.response-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.response-dot.green {
    background: #10b981;
}

.response-dot.blue {
    background: #3b82f6;
}

.response-dot.orange {
    background: #f97316;
}

.response-dot.purple {
    background: #8b5cf6;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-header {
    text-align: center;
}

.footer-header .logo-text {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-tagline {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 32rem;
    margin: 1.5rem auto 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #1f2937;
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.footer-link:hover {
    background: #374151;
    color: #bfdbfe;
}

.footer-link i {
    color: #60a5fa;
}

.footer-link:hover i {
    color: #bfdbfe;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.info-section li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.status-item {
    color: #9ca3af;
    font-size: 0.875rem;
}

.status-item.fundraising {
    color: #10b981;
    font-weight: 500;
}

.disclaimer {
    margin-top: 2rem;
    text-align: center;
}

.disclaimer p {
    font-size: 0.75rem;
    color: #6b7280;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .staking-content,
    .loans-content,
    .sip-content,
    .investors-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .cta-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .loans-feature-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .asset-selector {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .collateral-grid {
        grid-template-columns: 1fr;
    }

    .funding-details {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .response-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-status {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 5rem 0.75rem 3rem;
    }

    .funding-stats {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}