* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2a9d8f; 
    --primary-dark: #1f776b; 
    --secondary-color: #264653; 
    --accent-color: #f4a261; 
    --success-color: #2a9d8f; 
    --warning-color: #e9c46a; 
    --error-color: #e76f51; 
    --text-primary: #264653; 
    --text-secondary: #6b7280; 
    --text-light: #9ca3af; 
    --bg-primary: #ffffff; 
    --bg-secondary: #f4f4f4; 
    --bg-dark: #264653; 
    --border-color: #e5e7eb; 
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --primary-color-rgb: 42, 157, 143; 
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo .logo-img {
    width: 28px;
    height: 28px;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center; 
}

.nav-menu li:last-child { 
    margin-left: auto; 
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(-60px) rotate(240deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }



.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 1rem;
    max-width: 500px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1.2s forwards;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-calculate {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-calculate:hover {
    background: #e07b39;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-calculate i {
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 270px;
    height: 585px;
    background: #1c1c1e;
    border-radius: 50px;
    padding: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 2px rgba(255,255,255,0.1) inset;
    transform: perspective(1200px) rotateY(-15deg) rotateX(5deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup::before,
.phone-mockup::after {
    content: '';
    position: absolute;
    background: #333;
    border-radius: 3px;
}
.phone-mockup::before {
    width: 3px;
    height: 30px;
    left: -3px;
    top: 100px;
    box-shadow: 0 35px 0 0 #333;
}
.phone-mockup::after {
    width: 3px;
    height: 50px;
    right: -3px;
    top: 120px;
}

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--secondary-color) 0%, #1c3a47 100%);
    border-radius: 38px;
    padding: 1.2rem 0.8rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background-color: #000;
    border-radius: 14px;
    z-index: 10;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.7rem;
    color: white;
    padding-top: 30px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
}

.app-header p {
    font-weight: 500;
}

.app-header i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.app-balance-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 0.9rem 1.1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.app-balance-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.app-balance-change {
    font-size: 0.8rem;
    color: #a7f3d0;
    font-weight: 500;
}

.app-chart-container {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.app-chart-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.app-quick-actions {
    display: flex;
    justify-content: space-around;
    padding: 0.6rem 0;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.2s ease;
}

.action-item:hover {
    color: white;
}

.action-item i {
    font-size: 1rem;
    padding: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.action-item:hover i {
    transform: scale(1.1);
}

.app-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(10, 20, 25, 0.5);
    backdrop-filter: blur(20px);
    padding: 0.3rem 0.2rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    margin: 0 0.3rem;
}

.app-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.2rem 0.3rem;
    border-radius: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
    flex-grow: 1;
    text-align: center;
    min-height: 36px;
}

.app-nav .nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.app-nav .nav-item.active {
    color: white;
}

.app-nav .nav-item.active i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.app-nav .nav-item i {
    font-size: 0.95rem;
    margin-bottom: 1px;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.app-nav .nav-item:nth-child(3) { 
    background-color: transparent !important; 
    flex-grow: 0.5; 
    transform: translateY(-6px);
    min-height: auto; 
}

.app-nav .nav-item:nth-child(3) i {
    font-size: 1.6rem; 
    color: white;
    background: var(--primary-color);
    border-radius: 50%;
    width: 38px; 
    height: 38px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(var(--primary-color-rgb, 42, 157, 143), 0.35);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.app-nav .nav-item:nth-child(3):hover i {
    transform: scale(1.15) rotate(22.5deg); 
    box-shadow: 0 5px 12px rgba(var(--primary-color-rgb, 42, 157, 143), 0.45);
}


.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card[data-aos="fade-up"] {
    animation: fadeUp 0.8s ease-out forwards;
}

.feature-card[data-delay="0"] { animation-delay: 0.1s; }
.feature-card[data-delay="100"] { animation-delay: 0.2s; }
.feature-card[data-delay="200"] { animation-delay: 0.3s; }
.feature-card[data-delay="300"] { animation-delay: 0.4s; }
.feature-card[data-delay="400"] { animation-delay: 0.5s; }
.feature-card[data-delay="500"] { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 15px rgba(42, 157, 143, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 20px rgba(42, 157, 143, 0.4);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Calculator Section */
.calculator-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.calculator-section .section-title,
.calculator-section .section-subtitle {
    color: white;
}

.calculator-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}

.calculator-input {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.calculator-input h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.3);
}

.calculator-results {
    flex: 2;
    min-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.calculator-placeholder {
    opacity: 0.7;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%; /* Ensure placeholder takes full available centered width */
    text-align: center; /* Ensure text content of children (i, h3, p) is centered */
}

.calculator-placeholder i {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.calculator-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.calculator-placeholder p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
    line-height: 1.6;
}

.calculator-content {
    width: 100%;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.results-header {
    margin-bottom: 0.5rem;
    text-align: center;
    flex-shrink: 0;
}

.results-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.remaining-budget {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
}

.investment-scenarios {
    margin-top: 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.scenario-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.tab-button {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    flex: 1;
    text-align: center;
    min-width: 100px;
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.tab-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.3);
}

.scenario-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
}

.scenario {
    display: none;
    width: 100%;
}

.scenario.active {
    display: flex; 
    flex-direction: column; 
    height: 100%;
    width: 100%;
}

.scenario-stats {
    display: flex; 
    justify-content: space-around; 
    gap: 0.5rem;
    flex-wrap: wrap; 
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-label {
    display: block;
    font-size: 0.75em;
    margin-bottom: 0.25em;
    color: #f0f0f0;
}

.stat-value {
    font-size: 1.4em;
    font-weight: bold;
    color: #ffffff;
}

.stat-value.highlight {
    color: #ffaf29;
}

.chart-container {
    position: relative; 
    width: 100%;
    flex-grow: 1;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-disclaimer {
    width: 100%; /* Ensures it takes full width */
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 1rem; 
    color: rgba(255, 255, 255, 0.7); /* Light text color */
    font-size: 0.8rem; /* Small font size */
    line-height: 1.4;
}

.calculator-disclaimer small {
    font-size: 0.9em; /* Relative to parent's font-size */
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.mission-statement {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.mission-statement h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start; 
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
}

.form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo .logo-img {
    width: 48px;
    height: 48px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Download Badges */
.download-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1s forwards;
}

.download-badge {
    display: block;
    transition: var(--transition);
    cursor: not-allowed;
}

.download-badge img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.download-badge:hover {
    transform: translateY(-2px);
}

.download-badge:hover img {
    filter: brightness(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    animation: bounce 2s infinite, fadeInUp 0.8s ease-out 1.4s forwards;
    opacity: 0;
    padding: 0.5rem;
}

.scroll-arrow:hover {
    background: none;
    border: none;
    box-shadow: none;
    transform: translateY(-3px);
}

.scroll-arrow i {
    color: white;
    font-size: 3.5rem;
    animation: arrowPulse 2s infinite;
    text-shadow: 0  2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 900;
}

/* Accounts Screen Styles */
.accounts-list {
    flex-grow: 1;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.account-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.account-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.bank-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
}

.bank-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.account-info {
    flex-grow: 1;
}

.bank-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
}

.account-type {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.account-balance {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-align: right;
}

/* Analytics Screen Styles */
.analytics-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.analytics-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.analytics-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.analytics-change {
    font-size: 0.7rem;
    font-weight: 500;
    color: #a7f3d0;
}

.investment-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.75rem;
    flex-grow: 1;
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-item:last-child {
    border-bottom: none;
}

.investment-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.investment-icon {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
}

.investment-amount {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

/* Popup Styles */
.mockup-popup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 38px;
    z-index: 100;
}

.popup-content {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem;
    text-align: center;
    max-width: 140px;
}

.popup-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.popup-text {
    font-size: 0.7rem;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.popup-button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

/* Profile Screen Styles */
.profile-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    overflow: hidden;
}

.profile-avatar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    flex-shrink: 0;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
       font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.avatar-circle:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.profile-email {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.profile-menu {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 0.4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    flex: 1;
}

.profile-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(38, 70, 83, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-item:hover::before {
    opacity: 1;
}

.profile-item:last-child {
    margin-bottom: 0;
}

.profile-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.profile-item i:first-child {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.profile-item span {
    flex-grow: 1;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.profile-item i:last-child {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.profile-item:hover i:last-child {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(2px);
}

.founder-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.portrait-container {
    width: 300px;
    height: 400px;
    overflow: hidden;
    transition: var(--transition);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.founder-info p {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Login Page Styles */
.login-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 750px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-header .login-logo-img {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.login-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.login-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.login-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.login-form .form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
}

.login-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
}

.login-form .form-group input::placeholder {
    color: var(--text-light);
}

.login-form .form-options {
    text-align: right;
    margin-bottom: 2rem;
}

.forgot-password-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.btn-block {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.login-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.login-footer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.register-link,
.back-to-home-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.register-link:hover,
.back-to-home-link:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.back-to-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.back-to-home-link i {
    font-size: 0.8rem;
}

/* Password Input Container */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    width: 100%;
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.1);
}

.password-toggle:focus {
    outline: none;
    color: var(--primary-color);
}

.password-toggle i {
    font-size: 1rem;
    transition: var(--transition);
}

/* Appointment Section */
.appointment-section {
    background: var(--bg-primary);
    padding: 4rem 0 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2rem 2rem 2rem;
    border: 1px solid var(--border-color);
}

.appointment-content .section-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.appointment-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.appointment-fields {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
}

.appointment-fields input[type="text"],
.appointment-fields input[type="email"],
.appointment-fields input[type="date"],
.appointment-fields input[type="time"] {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-primary);
    width: 100%;
}

.appointment-fields input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(42,157,143,0.15);
}

.appointment-form button {
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.appointment-form button:hover {
    background: var(--primary-dark);
}

.appointment-content small {
    display: block;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Coming Soon Page Styles */
.coming-soon-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0;
}

.coming-soon-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.coming-soon-logo .logo-img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.coming-soon-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.coming-soon-title .title-line:nth-child(1) { animation-delay: 0.4s; }
.coming-soon-title .title-line:nth-child(2) { animation-delay: 0.6s; }

.gradient-text {
    background: linear-gradient(135deg, #ffaf29 0%, #f4a261 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

/* Progress Section */
.progress-section {
    max-width: 800px;
    width: 80%;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1s forwards;
}

.progress-header {
    display: none;
}

.progress-bar-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    height: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 100%;
}

.progress-fill {
    height: 100%;
    width: 60%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    position: relative;
    animation: progressFill 2s ease-out 1.2s forwards;
    transform-origin: left;
    transform: scaleX(0);
    box-shadow: 0 0 15px rgba(42, 157, 143, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 40%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.2) 60%, 
        transparent 100%);
    border-radius: 12px;
    animation: progressShine 2.5s ease-in-out infinite;
}

@keyframes progressFill {
    to {
        transform: scaleX(1);
    }
}

@keyframes progressShine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.email-signup-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1s forwards;
}

.signup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.signup-header i {
    font-size: 1.5rem;
    color: white;
}

.signup-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.signup-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.email-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.email-input-group input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.email-input-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.signup-btn {
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 1rem;
}

.signup-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.signup-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
}

.social-section {
    width: 100%;
    max-width: 400px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1.2s forwards;
}

.social-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 500;
}

.social-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Partner Section */
.partner-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1.4s forwards;
}

.partner-container {
    text-align: center;
}

.partner-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.partner-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.page-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0;
    animation: slideUp 0.8s ease-out 1.4s forwards;
    padding: 2rem 0;
    margin-top: auto;
}

.page-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 6px;
}

.page-footer a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.page-footer span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Success/Error Modal */
.success-modal, .error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.modal-icon.error {
    color: var(--error-color);
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1.5rem;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .coming-soon-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .progress-section {
        max-width: 90%;
        margin-bottom: 2rem;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .progress-label {
        font-size: 0.9rem;
    }
    
    .progress-percentage {
        font-size: 1.1rem;
    }
    
    .partner-section {
        max-width: 90%;
        margin-bottom: 0.75rem;
    }
    
    .partner-title {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .partner-logo {
        height: 20px;
    }
    
    .email-signup-container {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .email-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .signup-btn {
        width: 100%;
        justify-content: center;
    }
    
    .coming-soon-logo .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .page-footer {
        flex-direction: row;
        gap: 1rem;
        padding: 1.5rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-footer span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .progress-section {
        max-width: 95%;
    }
    
    .progress-label {
        font-size: 0.85rem;
    }
    
    .progress-percentage {
        font-size: 1rem;
    }
    
    .progress-bar-container {
        height: 10px;
    }
    
    .partner-section {
        max-width: 95%;
        margin-bottom: 0.1rem;
    }
    
    .partner-logo {
        height: 18px;
    }
    
    .email-signup-container {
        padding: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
}

