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

:root {
    --primary-color: #E91E63;
    --secondary-color: #C2185B;
    --accent-color: #F06292;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 100px 20px 50px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="200" cy="100" r="150" fill="white" opacity="0.3"/><circle cx="800" cy="400" r="200" fill="white" opacity="0.2"/><circle cx="1000" cy="150" r="100" fill="white" opacity="0.3"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-secondary:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Impact Section */
.impact-section {
    padding: 80px 20px;
    background: var(--dark-color);
    color: var(--light-color);
}

.impact-card {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.impact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.impact-subtitle {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.impact-description {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.impact-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--light-color);
}

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

.solution-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.solution-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.solution-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.solution-highlight p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-tagline {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

/* Methodology Section */
.methodology-section {
    padding: 80px 20px;
    background: var(--gray-color);
}

.founder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.founder-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.founder-experience {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Navigation Overview */
.navigation-overview {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.overview-card {
    background: var(--gray-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.overview-icon svg {
    width: 100%;
    height: 100%;
}

.overview-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overview-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Platform Section */
.platform-section {
    padding: 80px 20px;
    background: var(--dark-color);
    color: var(--light-color);
}

.platform-section .section-title {
    color: var(--light-color);
}

.platform-section .section-title::after {
    background: var(--light-color);
}

.platform-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-column h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.platform-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.platform-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Results Section */
.results-section {
    padding: 80px 20px;
    background: var(--gray-color);
}

.results-image {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.results-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Our Work Section */
.our-work-section {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.work-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
}

.work-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.work-card p {
    font-size: 1.1rem;
}

.work-credentials {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* Differentials Section */
.differentials-section {
    padding: 80px 20px;
    background: var(--gray-color);
}

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

.differential-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.differential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.differential-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.differential-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.differential-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.differential-card ul {
    list-style: none;
}

.differential-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.differential-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Recognition Section */
.recognition-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.recognition-content {
    max-width: 1000px;
    margin: 0 auto;
}

.recognition-text {
    margin-bottom: 3rem;
}

.recognition-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.recognition-text ul {
    list-style: none;
    margin: 2rem 0;
}

.recognition-text ul li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.recognition-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.recognition-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 2rem;
}

.recognition-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.recognition-logos img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.recognition-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Cases Section */
.cases-section {
    padding: 80px 20px;
    background: var(--gray-color);
}

.case-card {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.case-info {
    margin-bottom: 2rem;
}

.case-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.case-stats {
    margin: 2rem 0;
}

.stat-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

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

.profile-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.profile-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.profile-item p {
    font-size: 1.1rem;
}

/* Impact Comparison */
.impact-comparison {
    margin: 2rem 0;
}

.comparison-item {
    margin-bottom: 3rem;
}

.comparison-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-container p {
    min-width: 80px;
    font-weight: 600;
}

.bar {
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-weight: 700;
    transition: var(--transition);
    min-width: 60px;
}

.bar-before {
    background: var(--text-light);
}

.bar-after {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.bar-label {
    padding: 0 1rem;
}

.challenges {
    margin-top: 2rem;
}

.challenges h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.challenges ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.challenges ul li {
    padding: 0.8rem;
    padding-left: 2rem;
    position: relative;
    background: var(--gray-color);
    border-radius: 5px;
}

.challenges ul li::before {
    content: '•';
    position: absolute;
    left: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Satisfaction Card */
.satisfaction-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.satisfaction-stat {
    text-align: center;
}

.satisfaction-number {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.satisfaction-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Clinical Card */
.clinical-content {
    text-align: center;
}

.clinical-note {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.clinical-image {
    max-width: 800px;
    margin: 0 auto;
}

.clinical-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.p-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Results Card */
.case-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.result-item p {
    font-size: 1.1rem;
}

.case-insights {
    margin-top: 2rem;
}

.case-insights h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-insights ul {
    list-style: none;
    margin-bottom: 2rem;
}

.case-insights ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.case-insights ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.barriers-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    text-align: center;
}

.contact-section .section-title {
    color: var(--light-color);
}

.contact-section .section-title::after {
    background: var(--light-color);
}

.contact-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 20px;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    font-size: 1rem;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .impact-card h2 {
        font-size: 1.8rem;
    }

    .impact-subtitle {
        font-size: 1.3rem;
    }

    .impact-highlight {
        font-size: 1.5rem;
    }

    .solution-content h2 {
        font-size: 1.8rem;
    }

    .solution-subtitle {
        font-size: 1.3rem;
    }

    .solution-highlight p {
        font-size: 1.2rem;
    }

    .solution-tagline {
        font-size: 1.5rem;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-image img {
        width: 200px;
        height: 200px;
    }

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

    .platform-content {
        grid-template-columns: 1fr;
    }

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

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

    .case-profile {
        grid-template-columns: 1fr;
    }

    .case-results {
        grid-template-columns: 1fr;
    }

    .satisfaction-content {
        flex-direction: column;
    }

    .satisfaction-number {
        font-size: 4rem;
    }

    .case-card {
        padding: 2rem;
    }

    .case-title {
        font-size: 1.5rem;
    }

    .bar-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .bar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .satisfaction-number {
        font-size: 3rem;
    }

    .result-number {
        font-size: 2rem;
    }

    .profile-number {
        font-size: 2rem;
    }
}
