@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #202124;
}

.connect-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand i {
    color: #4285f4;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.add-user {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid #fff;
    color: #555;
    cursor: pointer;
}

.hero {
    display: flex;
    align-items: center;
    padding: 80px 10%;
    gap: 50px;
    overflow: hidden;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #202124;
}

.highlight {
    color: #4285f4;
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: #fce8e6; /* Red tint */
    z-index: -1;
    transform: rotate(-2deg);
}

.hero p {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-collab {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-collab:hover {
    transform: scale(1.05);
    background: #1765cc;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

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

.cursor {
    position: absolute;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
}

.cursor::before {
    content: '➤';
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 1.2rem;
    transform: rotate(-90deg);
}

.cursor-1 {
    top: 20%;
    left: 30%;
    background: #4285f4;
    color: #4285f4; /* Text color same as bg for arrow, label has white text */
}
.cursor-1::before { color: #4285f4; }
.cursor-1 { color: white; animation: float1 5s infinite; }

.cursor-2 {
    top: 60%;
    right: 20%;
    background: #ea4335;
}
.cursor-2::before { color: #ea4335; }
.cursor-2 { color: white; animation: float2 6s infinite; }

@keyframes float1 { 0%, 100% { top: 20%; left: 30%; } 50% { top: 25%; left: 35%; } }
@keyframes float2 { 0%, 100% { top: 60%; right: 20%; } 50% { top: 55%; right: 25%; } }

.chat-bubble {
    position: absolute;
    padding: 10px 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    color: #333;
    animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.bubble-1 { top: 10%; left: 10%; border-bottom-left-radius: 0; }
.bubble-2 { bottom: 20%; right: 10%; border-bottom-right-radius: 0; background: #e8f0fe; color: #1a73e8; }

.features {
    padding: 50px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background: #fff;
}

.feature-card {
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.2s;
    cursor: pointer;
    border: 1px solid #f1f3f4;
}

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

.feature-card i {
    font-size: 2rem;
    margin-bottom: 20px;
}

.blue i { color: #4285f4; }
.blue { background: #f8fbff; }

.red i { color: #ea4335; }
.red { background: #fef8f8; }

.green i { color: #34a853; }
.green { background: #f6fbf7; }

.feature-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #202124;
}

.feature-card p {
    margin: 0;
    color: #5f6368;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 40px;
    color: #9aa0a6;
    font-size: 0.9rem;
    background: #fff;
    border-top: 1px solid #f1f3f4;
}
