/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    background: linear-gradient(45deg, #FF6B35 50%, #2563EB 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.95);
}

.gradient-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
}

/* Header */
.header {
    position: relative;
    z-index: 50;
    padding: 1rem 0;
}

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

.logo {
    width: 3.5rem;
    height: 3.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-text {
    color: #FF6B35;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
}

.logo-subtext {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1;
}

.nav {
    display: none;
    align-items: center;
    gap: 1rem;
}

.nav-button {
    color: white;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-subtitle {
    color: white;
    font-size: 0.75rem;
    margin-top: 0.75rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    padding-bottom: 4rem;
}

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

.hero-character {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.speech-bubble {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.speech-bubble p {
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

.speech-arrow {
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid white;
}

.character-icon {
    font-size: 4rem;
}

.phone-icon {
    font-size: 2.5rem;
}

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

.hero-heading h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.heading-secondary {
    opacity: 0.95;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
    }
    
    .hero-character {
        margin-bottom: 0;
    }
    
    .hero-heading {
        text-align: right;
    }
    
    .hero-heading h1 {
        font-size: 4rem;
    }
}

/* Hero Cards */
.hero-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .hero-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.card-title {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.text-orange {
    color: #FF6B35;
}

.card-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(255, 107, 53, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

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

.badge-text {
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
}

.partner-tags {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tag-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.tag {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tag.orange {
    background: linear-gradient(to right, #FF6B35, rgba(255, 107, 53, 0.8));
}

.tag.blue {
    background: linear-gradient(to right, #2563EB, rgba(37, 99, 235, 0.8));
}

.tag.gray {
    background: linear-gradient(to right, #6b7280, #9ca3af);
}

.card-button {
    width: 100%;
    background: linear-gradient(to right, #2563EB, rgba(37, 99, 235, 0.9));
    color: white;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-button:hover {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.9), #2563EB);
    transform: scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Research Section */
.research-section {
    padding-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.research-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .research-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.research-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.research-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.trophy-container {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, #FF6B35, rgba(255, 107, 53, 0.8));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.trophy-icon {
    font-size: 2.5rem;
}

.research-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.text-orange.large {
    font-size: 1.875rem;
}

.star-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
    background: linear-gradient(to right, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    padding: 1rem 1.5rem;
    border-radius: 1rem;
}

.star {
    color: #d1d5db;
    font-size: 1.5rem;
}

.star.filled {
    color: #FF6B35;
}

.research-note {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(to right, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
}

.percentage-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.percentage-bar {
    width: 4rem;
    height: 12rem;
    background: #e5e7eb;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.percentage-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 88%;
    background: linear-gradient(to top, #2563EB, rgba(37, 99, 235, 0.8));
    border-radius: 9999px;
    transition: all 1s ease;
}

.percentage-number {
    color: #2563EB;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.percentage-description {
    color: #2563EB;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.text-gray {
    color: #1f2937;
}

.text-blue {
    color: #2563EB;
}

.disclaimer {
    text-align: center;
}

.disclaimer-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.disclaimer-content p {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding-bottom: 4rem;
}

.stats-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon.orange {
    background: linear-gradient(to bottom right, #FF6B35, rgba(255, 107, 53, 0.8));
}

.stat-icon.blue {
    background: linear-gradient(to bottom right, #2563EB, rgba(37, 99, 235, 0.8));
}

.stat-icon.purple {
    background: linear-gradient(to bottom right, #8B5CF6, rgba(139, 92, 246, 0.8));
}

.stat-icon.green {
    background: linear-gradient(to bottom right, #10b981, rgba(16, 185, 129, 0.8));
}

.stat-text {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Gallery Section */
.gallery-section {
    padding-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.gallery-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    max-width: 48rem;
    margin: 0 auto;
}

.contact-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-content {
        flex-direction: row;
        gap: 2rem;
    }
}

.contact-info {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-info {
        text-align: left;
    }
}

.contact-name {
    color: #1f2937;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-role {
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 1rem;
    padding: 1rem;
}

@media (min-width: 768px) {
    .contact-item {
        justify-content: flex-start;
    }
}

.contact-item:first-child {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
}

.contact-item:last-child {
    background: linear-gradient(to right, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon.blue {
    background: linear-gradient(to bottom right, #2563EB, rgba(37, 99, 235, 0.8));
}

.contact-icon.orange {
    background: linear-gradient(to bottom right, #FF6B35, rgba(255, 107, 53, 0.8));
}

.contact-text {
    color: #1f2937;
    font-weight: 700;
    font-size: 1.25rem;
}

.contact-text.email {
    color: #6b7280;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-avatar {
    position: relative;
}

.avatar-image {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
}

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

.avatar-badge {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, #FF6B35, rgba(255, 107, 53, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    padding: 3rem 0;
}

.footer-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-text {
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-button {
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.footer-button:hover {
    transform: scale(1.05);
}

.footer-button.primary {
    background: linear-gradient(to right, #2563EB, rgba(37, 99, 235, 0.9));
    color: white;
}

.footer-button.primary:hover {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.9), #2563EB);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.footer-button.google {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-button.google:hover {
    background: linear-gradient(to right, #b91c1c, #dc2626);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .hero-heading h1 {
        font-size: 2.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .research-card {
        padding: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-button {
        width: 100%;
        max-width: 300px;
    }
}