/* CSS V3 - Professional, Clean Design without Color Bars */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #080e26;
    --navy-light: #1a2444;
    --navy-lighter: #2a3454;
    --accent-blue: #4A90E2;
    --accent-green: #52C41A;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --bg-light: #f8f9fa;
    --bg-gradient: #f0f2f5;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-subtle: 0 1px 3px rgba(0,0,0,0.06);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.nav-brand:hover {
    color: var(--navy);
    text-decoration: none;
}

.nav-logo {
    height: 2.8rem;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button.primary {
    background: var(--accent-green);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-button.primary:hover {
    background: #46a817;
}

/* Hero Section */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 140px 0 60px;
    text-align: center;
}

.hero-headline {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--navy);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Intro Section */
.product-intro {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}

.product-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.product-intro .section-intro {
    max-width: 800px;
    margin: 0 auto;
}

/* Transformation Grid - New Design */
.problems-solutions {
    background: var(--bg-light);
    padding: 0 0 100px 0;
}

.problems-header {
    position: relative;
    padding: 80px 0;
    margin-bottom: 3rem;
    background-image: url('updated_landshot.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.problems-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.problems-header h2,
.problems-header .section-intro {
    position: relative;
    z-index: 1;
    color: white;
}

.problems-header h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.transformation-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.transformation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.transformation-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.challenge-side, .solution-side {
    padding: 2.5rem;
}

.challenge-side {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-right: 1px solid #e0e0e0;
}

.solution-side {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.challenge-side h3, .solution-side h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.challenge-side h3 {
    color: var(--text-light);
}

.solution-side h3 {
    color: var(--accent-green);
}

.challenge-side h4, .solution-side h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.challenge-side p, .solution-side p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Alternative Layout Options - Comment/Uncomment to switch */

/* Option 2: Arrow Design */
/*
.transformation-item::after {
    content: '→';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--accent-blue);
    background: var(--white);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow);
}
*/

/* Option 3: Card-based Design */
/*
.transformation-item {
    display: flex;
    gap: 2rem;
}

.challenge-side, .solution-side {
    flex: 1;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
*/

/* Vision Section */
.vision {
    text-align: center;
    padding: 100px 0;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.vision-text-content {
    flex: 1;
    text-align: left;
}

.vision-demo {
    flex: 0 0 auto;
    max-width: 550px;
}

.demo-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.vision-text {
    font-size: 1.25rem;
    margin: 0 0 2rem;
    color: var(--text-secondary);
    text-align: left;
}

@media (max-width: 968px) {
    .vision-content {
        flex-direction: column;
        text-align: center;
    }
    
    .vision-text-content {
        text-align: center;
    }
    
    .vision-text,
    .mission {
        text-align: center;
    }
    
    .vision-demo {
        max-width: 500px;
        width: 100%;
    }
}

.mission {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Team Section */
.team {
    background: var(--bg-light);
    padding: 100px 0 60px;
}

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

.team-member {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin: 0 auto 1.5rem;
    display: block;
}

.team-photo-shaq {
    object-position: center 60%;
}

.team-member h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.role {
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.linkedin {
    display: inline-block;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.linkedin:hover {
    color: #0077b5;
}

/* Backed By Section */
.backed-by {
    background: var(--bg-light);
    padding: 40px 0 80px;
    text-align: center;
}

.backed-by h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.backer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.backer-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--navy);
    font-size: 1.1rem;
}

.faq-item summary:hover {
    color: var(--accent-blue);
}

.faq-item p {
    margin-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0;
}

.contact h2 {
    color: var(--white);
}

.contact-text {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255,255,255,0.15);
}

.form-group select option {
    background: var(--navy);
}

/* Footer */
.footer {
    background: var(--navy-light);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-tagline {
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.linkedin-link svg {
    flex-shrink: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .transformation-item {
        grid-template-columns: 1fr;
        cursor: pointer;
        position: relative;
    }
    
    .challenge-side {
        border-right: none;
        border-bottom: none;
        background: var(--white);
        position: relative;
        padding-right: 3rem;
        cursor: pointer;
    }
    
    .challenge-side::after {
        content: '+';
        position: absolute;
        right: 1.5rem;
        top: 2.5rem;
        font-size: 1.5rem;
        color: var(--accent-blue);
        font-weight: 300;
        transition: transform 0.3s ease;
        pointer-events: none;
    }
    
    .transformation-item.active .challenge-side::after {
        content: '−';
    }
    
    .solution-side {
        display: none;
        border-top: 1px solid #e0e0e0;
        background: #f8fafb;
    }
    
    .transformation-item.active .solution-side {
        display: block;
    }
    
    .transformation-grid {
        gap: 1rem;
    }
    
    .transformation-item:hover {
        transform: none;
    }
    
    .challenge-side h4, .solution-side h4 {
        font-size: 1.25rem;
    }
    
    .logos-grid {
        gap: 3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-tagline {
        max-width: none;
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 120px 0 80px;
    background: var(--white);
}

.privacy-policy h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--navy);
    text-align: left;
}

.policy-content p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-primary);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--accent-blue);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.modal-icon.error {
    background: #dc3545;
}

.modal-content h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.modal-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-close {
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}